linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Performance regressions in "boot_time" tests in Linux 5.8 Kernel
@ 2020-10-09 13:15 Rahul Gopakumar
  2020-10-10  6:11 ` bhe
  0 siblings, 1 reply; 21+ messages in thread
From: Rahul Gopakumar @ 2020-10-09 13:15 UTC (permalink / raw)
  To: bhe, linux-mm, linux-kernel
  Cc: akpm, natechancellor, ndesaulniers, clang-built-linux, rostedt,
	Rajender M, Yiu Cho Lau, Peter Jonasson, Venkatesh Rajaram

As part of VMware's performance regression testing for Linux Kernel
upstream releases, we identified boot time increase when comparing
Linux 5.8 kernel against Linux 5.7 kernel. Increase in boot time is
noticeable on VM with a **large amount of memory**.
 
In our test cases, it's noticeable with memory 1TB and more, whereas
there was no major difference noticed in testcases with <1TB.
 
On bisecting between 5.7 and 5.8, we found the following commit from 
“Baoquan He” to be the cause of boot time increase in big VM test cases.
 
-------------------------------------
 
commit 73a6e474cb376921a311786652782155eac2fdf0
Author: Baoquan He <bhe@redhat.com>
Date: Wed Jun 3 15:57:55 2020 -0700
 
mm: memmap_init: iterate over memblock regions rather that check each PFN
 
When called during boot the memmap_init_zone() function checks if each PFN
is valid and actually belongs to the node being initialized using
early_pfn_valid() and early_pfn_in_nid().
 
Each such check may cost up to O(log(n)) where n is the number of memory
banks, so for large amount of memory overall time spent in early_pfn*()
becomes substantial.
 
-------------------------------------
 
For boot time test, we used RHEL 8.1 as the guest OS.
VM config is 84 vcpu and 1TB vRAM.
 
Here are the actual performance numbers.
 
5.7 GA - 18.17 secs
Baoquan's commit - 21.6 secs (-16% increase in time)
 
From dmesg logs, we can see significant time delay around memmap.
 
Refer below logs.
 
Good commit
 
[0.033176] Normal zone: 1445888 pages used for memmap
[0.033176] Normal zone: 89391104 pages, LIFO batch:63
[0.035851] ACPI: PM-Timer IO Port: 0x448
 
Problem commit
 
[0.026874] Normal zone: 1445888 pages used for memmap
[0.026875] Normal zone: 89391104 pages, LIFO batch:63
[2.028450] ACPI: PM-Timer IO Port: 0x448
 
We did some analysis, and it looks like with the problem commit it's
not deferring the memory initialization to a later stage and it's 
initializing the huge chunk of memory in serial - during the boot-up
time.  Whereas with the good commit, it was able to defer the
initialization of the memory when it could be done in parallel.


Rahul Gopakumar
Performance Engineering
VMware, Inc.

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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-10-09 13:15 Performance regressions in "boot_time" tests in Linux 5.8 Kernel Rahul Gopakumar
@ 2020-10-10  6:11 ` bhe
  2020-10-12 17:21   ` Rahul Gopakumar
  0 siblings, 1 reply; 21+ messages in thread
From: bhe @ 2020-10-10  6:11 UTC (permalink / raw)
  To: Rahul Gopakumar
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

On 10/09/20 at 01:15pm, Rahul Gopakumar wrote:
> As part of VMware's performance regression testing for Linux Kernel
> upstream releases, we identified boot time increase when comparing
> Linux 5.8 kernel against Linux 5.7 kernel. Increase in boot time is
> noticeable on VM with a **large amount of memory**.
>  
> In our test cases, it's noticeable with memory 1TB and more, whereas
> there was no major difference noticed in testcases with <1TB.
>  
> On bisecting between 5.7 and 5.8, we found the following commit from 
> “Baoquan He” to be the cause of boot time increase in big VM test cases.
>  
> -------------------------------------
>  
> commit 73a6e474cb376921a311786652782155eac2fdf0
> Author: Baoquan He <bhe@redhat.com>
> Date: Wed Jun 3 15:57:55 2020 -0700
>  
> mm: memmap_init: iterate over memblock regions rather that check each PFN
>  
> When called during boot the memmap_init_zone() function checks if each PFN
> is valid and actually belongs to the node being initialized using
> early_pfn_valid() and early_pfn_in_nid().
>  
> Each such check may cost up to O(log(n)) where n is the number of memory
> banks, so for large amount of memory overall time spent in early_pfn*()
> becomes substantial.
>  
> -------------------------------------
>  
> For boot time test, we used RHEL 8.1 as the guest OS.
> VM config is 84 vcpu and 1TB vRAM.
>  
> Here are the actual performance numbers.
>  
> 5.7 GA - 18.17 secs
> Baoquan's commit - 21.6 secs (-16% increase in time)
>  
> From dmesg logs, we can see significant time delay around memmap.
>  
> Refer below logs.
>  
> Good commit
>  
> [0.033176] Normal zone: 1445888 pages used for memmap
> [0.033176] Normal zone: 89391104 pages, LIFO batch:63
> [0.035851] ACPI: PM-Timer IO Port: 0x448
>  
> Problem commit
>  
> [0.026874] Normal zone: 1445888 pages used for memmap
> [0.026875] Normal zone: 89391104 pages, LIFO batch:63
> [2.028450] ACPI: PM-Timer IO Port: 0x448

Could you add memblock=debug to kernel cmdline and paste the boot logs of
system w and w/o the commit?

>  
> We did some analysis, and it looks like with the problem commit it's
> not deferring the memory initialization to a later stage and it's 
> initializing the huge chunk of memory in serial - during the boot-up
> time.  Whereas with the good commit, it was able to defer the
> initialization of the memory when it could be done in parallel.
> 
> 
> Rahul Gopakumar
> Performance Engineering
> VMware, Inc.
> 


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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-10-10  6:11 ` bhe
@ 2020-10-12 17:21   ` Rahul Gopakumar
  2020-10-13  5:08     ` bhe
  2020-10-13 13:17     ` bhe
  0 siblings, 2 replies; 21+ messages in thread
From: Rahul Gopakumar @ 2020-10-12 17:21 UTC (permalink / raw)
  To: bhe
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

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

Hi Baoquan,

Attached collected dmesg logs for with and without
commit after adding memblock=debug to kernel cmdline.

________________________________________
From: bhe@redhat.com <bhe@redhat.com>
Sent: 10 October 2020 11:41 AM
To: Rahul Gopakumar
Cc: linux-mm@kvack.org; linux-kernel@vger.kernel.org; akpm@linux-foundation.org; natechancellor@gmail.com; ndesaulniers@google.com; clang-built-linux@googlegroups.com; rostedt@goodmis.org; Rajender M; Yiu Cho Lau; Peter Jonasson; Venkatesh Rajaram
Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel

On 10/09/20 at 01:15pm, Rahul Gopakumar wrote:
> As part of VMware's performance regression testing for Linux Kernel
> upstream releases, we identified boot time increase when comparing
> Linux 5.8 kernel against Linux 5.7 kernel. Increase in boot time is
> noticeable on VM with a **large amount of memory**.
>
> In our test cases, it's noticeable with memory 1TB and more, whereas
> there was no major difference noticed in testcases with <1TB.
>
> On bisecting between 5.7 and 5.8, we found the following commit from
> “Baoquan He” to be the cause of boot time increase in big VM test cases.
>
> -------------------------------------
>
> commit 73a6e474cb376921a311786652782155eac2fdf0
> Author: Baoquan He <bhe@redhat.com>
> Date: Wed Jun 3 15:57:55 2020 -0700
>
> mm: memmap_init: iterate over memblock regions rather that check each PFN
>
> When called during boot the memmap_init_zone() function checks if each PFN
> is valid and actually belongs to the node being initialized using
> early_pfn_valid() and early_pfn_in_nid().
>
> Each such check may cost up to O(log(n)) where n is the number of memory
> banks, so for large amount of memory overall time spent in early_pfn*()
> becomes substantial.
>
> -------------------------------------
>
> For boot time test, we used RHEL 8.1 as the guest OS.
> VM config is 84 vcpu and 1TB vRAM.
>
> Here are the actual performance numbers.
>
> 5.7 GA - 18.17 secs
> Baoquan's commit - 21.6 secs (-16% increase in time)
>
> From dmesg logs, we can see significant time delay around memmap.
>
> Refer below logs.
>
> Good commit
>
> [0.033176] Normal zone: 1445888 pages used for memmap
> [0.033176] Normal zone: 89391104 pages, LIFO batch:63
> [0.035851] ACPI: PM-Timer IO Port: 0x448
>
> Problem commit
>
> [0.026874] Normal zone: 1445888 pages used for memmap
> [0.026875] Normal zone: 89391104 pages, LIFO batch:63
> [2.028450] ACPI: PM-Timer IO Port: 0x448

Could you add memblock=debug to kernel cmdline and paste the boot logs of
system w and w/o the commit?

>
> We did some analysis, and it looks like with the problem commit it's
> not deferring the memory initialization to a later stage and it's
> initializing the huge chunk of memory in serial - during the boot-up
> time.  Whereas with the good commit, it was able to defer the
> initialization of the memory when it could be done in parallel.
>
>
> Rahul Gopakumar
> Performance Engineering
> VMware, Inc.
>


[-- Attachment #2: with_commit_dmesg.log --]
[-- Type: application/octet-stream, Size: 194474 bytes --]

[    0.000000] Linux version 5.7.0 (root@w1-hs1-mwenig-dhcp-215.eng.vmware.com) (gcc version 8.3.1 20190507 (Red Hat 8.3.1-4) (GCC), GNU ld version 2.30-58.el8) #1 SMP Thu Jul 23 10:33:14 EDT 2020
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.7.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet memblock=debug
[    0.000000] Disabled fast string operations
[    0.000000] ------------[ cut here ]------------
[    0.000000] XSAVE consistency problem, dumping leaves
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/fpu/xstate.c:646 fpu__init_system_xstate+0x3d0/0x7e5
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0 #1
[    0.000000] RIP: 0010:fpu__init_system_xstate+0x3d0/0x7e5
[    0.000000] Code: 85 78 fd ff ff 44 3b 2d b6 f4 21 00 74 2c 80 3d 58 3d bf ff 00 75 15 48 c7 c7 78 0d f0 88 c6 05 48 3d bf ff 01 e8 4b af 6e fe <0f> 0b 83 3d 07 e3 a3 ff 00 74 05 e8 c1 97 64 fe 48 8b 35 99 19 c2
[    0.000000] RSP: 0000:ffffffff89203e30 EFLAGS: 00010086 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: 0000000000000a88 RCX: 0000000000000029
[    0.000000] RDX: 0000000000000009 RSI: ffffffff89a759e0 RDI: ffffffff89a7358c
[    0.000000] RBP: 000000000000000a R08: 657661656c20676e R09: 73657661656c2067
[    0.000000] R10: 656c626f72702079 R11: 69706d7564202c6d R12: 0000000000000008
[    0.000000] R13: 0000000000000988 R14: 0000000000000a88 R15: 0000000000000001
[    0.000000] FS:  0000000000000000(0000) GS:ffffffff897ab000(0000) knlGS:0000000000000000
[    0.000000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: ffff88800e0b0000 CR3: 0000007c7c240000 CR4: 00000000000406a0
[    0.000000] Call Trace:
[    0.000000]  ? 0xffffffff87e00000
[    0.000000]  ? fpu__init_system+0x1b1/0x1dd
[    0.000000]  ? 0xffffffff87e00000
[    0.000000]  ? early_cpu_init+0x31c/0x341
[    0.000000]  ? setup_arch+0xca/0xd0b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64+0xb6/0xc0
[    0.000000] random: get_random_bytes called from print_oops_end_marker+0x26/0x40 with crng_init=0
[    0.000000] ---[ end trace d4f763db5889c21d ]---
[    0.000000] CPUID[0d, 00]: eax=000002e7 ebx=00000a88 ecx=00000a88 edx=00000000
[    0.000000] CPUID[0d, 01]: eax=0000000f ebx=00000a88 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 02]: eax=00000100 ebx=00000240 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 03]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 04]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 05]: eax=00000040 ebx=00000440 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 06]: eax=00000200 ebx=00000480 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 07]: eax=00000400 ebx=00000680 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 08]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 09]: eax=00000008 ebx=00000a80 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0d]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0e]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0f]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 10]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 11]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 12]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 13]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2696 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000ef23fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] memblock_reserve: [0x000000000e0a0018-0x000000000e0a0767] efi_memblock_x86_reserve_range+0x15b/0x184
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] memblock_reserve: [0x000000000e0a6018-0x000000000e0ae057] setup_arch+0x3df/0xd0b
[    0.000000] memblock_reserve: [0x000000000e0a3018-0x000000000e0a5057] setup_arch+0x3df/0xd0b
[    0.000000] memblock_reserve: [0x000000000e0a1018-0x000000000e0a2857] setup_arch+0x3df/0xd0b
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000e0a1017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a1018-0x000000000e0a2857] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a2858-0x000000000e0a3017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a3018-0x000000000e0a5057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a5058-0x000000000e0a6017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a6018-0x000000000e0ae057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0ae058-0x000000000ef23fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] efi: EFI v2.31 by VMware, Inc.
[    0.000000] efi: SMBIOS=0xef42000 ACPI 2.0=0xff66000 MEMATTR=0xe564698 
[    0.000000] memblock_reserve: [0x000000000e564698-0x000000000e564b57] efi_memattr_init+0x75/0x8f
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.000000] vmware: hypercall mode: 0x02
[    0.000000] Hypervisor detected: VMware
[    0.000000] vmware: TSC freq read from hypervisor : 2095.078 MHz
[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[    0.000000] vmware: using clock offset of 7393925175 ns
[    0.000012] tsc: Detected 2095.078 MHz processor
[    0.004708] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.004709] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.004713] last_pfn = 0x10340000 max_arch_pfn = 0x400000000
[    0.004746] MTRR default type: uncachable
[    0.004747] MTRR fixed ranges enabled:
[    0.004748]   00000-9FFFF write-back
[    0.004748]   A0000-FFFFF uncachable
[    0.004749] MTRR variable ranges enabled:
[    0.004749]   0 base 000000000000 mask 1E0000000000 write-back
[    0.004750]   1 base 0000C0000000 mask 1FFFC0000000 uncachable
[    0.004750]   2 disabled
[    0.004751]   3 disabled
[    0.004751]   4 disabled
[    0.004751]   5 disabled
[    0.004751]   6 disabled
[    0.004752]   7 disabled
[    0.004762] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.004780] total RAM covered: 2096128M
[    0.004833]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004834]  gran_size: 64K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004834]  gran_size: 64K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004835]  gran_size: 64K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004835]  gran_size: 64K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004836]  gran_size: 64K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004836]  gran_size: 64K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004837]  gran_size: 64K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004837]  gran_size: 64K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004838]  gran_size: 64K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004838]  gran_size: 64K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004839]  gran_size: 64K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004839]  gran_size: 64K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004840]  gran_size: 64K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004840]  gran_size: 64K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004841]  gran_size: 64K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004841]  gran_size: 128K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004842]  gran_size: 128K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004842]  gran_size: 128K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004843]  gran_size: 128K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004843]  gran_size: 128K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004844]  gran_size: 128K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004844]  gran_size: 128K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004845]  gran_size: 128K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004845]  gran_size: 128K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004846]  gran_size: 128K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004846]  gran_size: 128K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004847]  gran_size: 128K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004847]  gran_size: 128K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004848]  gran_size: 128K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004848]  gran_size: 128K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004849]  gran_size: 256K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004849]  gran_size: 256K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004850]  gran_size: 256K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004850]  gran_size: 256K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004851]  gran_size: 256K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004851]  gran_size: 256K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004852]  gran_size: 256K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004852]  gran_size: 256K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004853]  gran_size: 256K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004853]  gran_size: 256K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004854]  gran_size: 256K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004854]  gran_size: 256K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004855]  gran_size: 256K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004855]  gran_size: 256K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004856]  gran_size: 512K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004856]  gran_size: 512K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004857]  gran_size: 512K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004857]  gran_size: 512K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004858]  gran_size: 512K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004858]  gran_size: 512K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004859]  gran_size: 512K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004859]  gran_size: 512K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004860]  gran_size: 512K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004860]  gran_size: 512K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004861]  gran_size: 512K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004861]  gran_size: 512K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004862]  gran_size: 512K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004862]  gran_size: 1M 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004863]  gran_size: 1M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004863]  gran_size: 1M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004864]  gran_size: 1M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004864]  gran_size: 1M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004865]  gran_size: 1M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004865]  gran_size: 1M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004866]  gran_size: 1M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004866]  gran_size: 1M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004867]  gran_size: 1M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004867]  gran_size: 1M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004868]  gran_size: 1M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004868]  gran_size: 2M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004869]  gran_size: 2M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004869]  gran_size: 2M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004870]  gran_size: 2M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004870]  gran_size: 2M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004871]  gran_size: 2M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004871]  gran_size: 2M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004872]  gran_size: 2M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004872]  gran_size: 2M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004873]  gran_size: 2M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004873]  gran_size: 2M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004874]  gran_size: 4M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004874]  gran_size: 4M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004874]  gran_size: 4M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004875]  gran_size: 4M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004875]  gran_size: 4M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004876]  gran_size: 4M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004876]  gran_size: 4M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004877]  gran_size: 4M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004877]  gran_size: 4M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004878]  gran_size: 4M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004878]  gran_size: 8M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004879]  gran_size: 8M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004879]  gran_size: 8M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004880]  gran_size: 8M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004880]  gran_size: 8M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004881]  gran_size: 8M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004881]  gran_size: 8M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004882]  gran_size: 8M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004882]  gran_size: 8M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004883]  gran_size: 16M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004883]  gran_size: 16M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004884]  gran_size: 16M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004884]  gran_size: 16M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004885]  gran_size: 16M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004885]  gran_size: 16M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004886]  gran_size: 16M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004886]  gran_size: 16M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004887]  gran_size: 32M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004887]  gran_size: 32M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004888]  gran_size: 32M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004888]  gran_size: 32M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004889]  gran_size: 32M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004889]  gran_size: 32M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004890]  gran_size: 32M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004890]  gran_size: 64M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004891]  gran_size: 64M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004891]  gran_size: 64M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004892]  gran_size: 64M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004892]  gran_size: 64M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004893]  gran_size: 64M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004893]  gran_size: 128M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004894]  gran_size: 128M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004894]  gran_size: 128M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004895]  gran_size: 128M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004895]  gran_size: 128M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004896]  gran_size: 256M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004896]  gran_size: 256M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004897]  gran_size: 256M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004897]  gran_size: 256M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004898]  gran_size: 512M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004898]  gran_size: 512M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004899]  gran_size: 512M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004899]  gran_size: 1G 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004900]  gran_size: 1G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004900]  gran_size: 2G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1537G
[    0.004901] mtrr_cleanup: can not find optimal value
[    0.004901] please specify mtrr_gran_size/mtrr_chunk_size
[    0.004911] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.004915] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
[    0.010748] memblock_reserve: [0x0000007c7ca00000-0x0000007c7ca0efff] setup_arch+0x624/0xd0b
[    0.010751] memblock_add: [0x0000000000001000-0x000000000009ffff] e820__memblock_setup+0x65/0x8b
[    0.010752] memblock_add: [0x0000000000100000-0x000000000e0a1017] e820__memblock_setup+0x65/0x8b
[    0.010753] memblock_add: [0x000000000e0a1018-0x000000000e0a2857] e820__memblock_setup+0x65/0x8b
[    0.010754] memblock_add: [0x000000000e0a2858-0x000000000e0a3017] e820__memblock_setup+0x65/0x8b
[    0.010755] memblock_add: [0x000000000e0a3018-0x000000000e0a5057] e820__memblock_setup+0x65/0x8b
[    0.010755] memblock_add: [0x000000000e0a5058-0x000000000e0a6017] e820__memblock_setup+0x65/0x8b
[    0.010756] memblock_add: [0x000000000e0a6018-0x000000000e0ae057] e820__memblock_setup+0x65/0x8b
[    0.010757] memblock_add: [0x000000000e0ae058-0x000000000ef23fff] e820__memblock_setup+0x65/0x8b
[    0.010758] memblock_add: [0x000000000ef2d000-0x000000000ef3bfff] e820__memblock_setup+0x65/0x8b
[    0.010759] memblock_add: [0x000000000ef48000-0x000000000ef60fff] e820__memblock_setup+0x65/0x8b
[    0.010760] memblock_add: [0x000000000ef66000-0x000000000fee6fff] e820__memblock_setup+0x65/0x8b
[    0.010761] memblock_add: [0x000000000ff77000-0x00000000bfffffff] e820__memblock_setup+0x65/0x8b
[    0.010762] memblock_add: [0x0000000100000000-0x000000fcffffffff] e820__memblock_setup+0x65/0x8b
[    0.010763] memblock_add: [0x0000010000000000-0x000001033fffffff] e820__memblock_setup+0x65/0x8b
[    0.010763] MEMBLOCK configuration:
[    0.010764]  memory size = 0x000000ffffef5000 reserved size = 0x000000000698d4d0
[    0.010764]  memory.cnt  = 0x8
[    0.010765]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes flags: 0x0
[    0.010765]  memory[0x1]	[0x0000000000100000-0x000000000ef23fff], 0x000000000ee24000 bytes flags: 0x0
[    0.010766]  memory[0x2]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes flags: 0x0
[    0.010766]  memory[0x3]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes flags: 0x0
[    0.010767]  memory[0x4]	[0x000000000ef66000-0x000000000fee6fff], 0x0000000000f81000 bytes flags: 0x0
[    0.010767]  memory[0x5]	[0x000000000ff77000-0x00000000bfffffff], 0x00000000b0089000 bytes flags: 0x0
[    0.010768]  memory[0x6]	[0x0000000100000000-0x000000fcffffffff], 0x000000fc00000000 bytes flags: 0x0
[    0.010768]  memory[0x7]	[0x0000010000000000-0x000001033fffffff], 0x0000000340000000 bytes flags: 0x0
[    0.010769]  reserved.cnt  = 0x8
[    0.010769]  reserved[0x0]	[0x0000000000000000-0x0000000000000fff], 0x0000000000001000 bytes flags: 0x0
[    0.010770]  reserved[0x1]	[0x000000000663b000-0x000000000adabfff], 0x0000000004771000 bytes flags: 0x0
[    0.010770]  reserved[0x2]	[0x000000000e0a0018-0x000000000e0a0767], 0x0000000000000750 bytes flags: 0x0
[    0.010771]  reserved[0x3]	[0x000000000e0a1018-0x000000000e0a2857], 0x0000000000001840 bytes flags: 0x0
[    0.010771]  reserved[0x4]	[0x000000000e0a3018-0x000000000e0a5057], 0x0000000000002040 bytes flags: 0x0
[    0.010772]  reserved[0x5]	[0x000000000e0a6018-0x000000000e0ae057], 0x0000000000008040 bytes flags: 0x0
[    0.010772]  reserved[0x6]	[0x000000000e564698-0x000000000e564b57], 0x00000000000004c0 bytes flags: 0x0
[    0.010773]  reserved[0x7]	[0x0000007c7a800000-0x0000007c7ca0efff], 0x000000000220f000 bytes flags: 0x0
[    0.010774] memblock_reserve: [0x000000000009f000-0x00000000000fffff] setup_arch+0x648/0xd0b
[    0.010776] memblock_reserve: [0x000000000df93000-0x000000000df93fff] efi_reserve_boot_services+0x85/0xd0
[    0.010777] memblock_reserve: [0x000000000e0b1000-0x000000000e0b1fff] efi_reserve_boot_services+0x85/0xd0
[    0.010778] memblock_reserve: [0x000000000e74a000-0x000000000e8dffff] efi_reserve_boot_services+0x85/0xd0
[    0.010779] memblock_reserve: [0x000000000e8e0000-0x000000000eee1fff] efi_reserve_boot_services+0x85/0xd0
[    0.010780] memblock_reserve: [0x000000000eee2000-0x000000000ef23fff] efi_reserve_boot_services+0x85/0xd0
[    0.010780] memblock_reserve: [0x000000000ef2d000-0x000000000ef3bfff] efi_reserve_boot_services+0x85/0xd0
[    0.010781] memblock_reserve: [0x000000000ef48000-0x000000000ef60fff] efi_reserve_boot_services+0x85/0xd0
[    0.010782] memblock_reserve: [0x000000000ef66000-0x000000000ef8ffff] efi_reserve_boot_services+0x85/0xd0
[    0.010783] memblock_reserve: [0x000000000ef90000-0x000000000fdf6fff] efi_reserve_boot_services+0x85/0xd0
[    0.010784] memblock_reserve: [0x000000000fdf7000-0x000000000fee6fff] efi_reserve_boot_services+0x85/0xd0
[    0.010785] memblock_reserve: [0x000000000ff77000-0x000000000ffbefff] efi_reserve_boot_services+0x85/0xd0
[    0.010786] memblock_reserve: [0x000000000ffbf000-0x000000000fffffff] efi_reserve_boot_services+0x85/0xd0
[    0.010788] memblock_reserve: [0x0000000000099000-0x000000000009efff] reserve_real_mode+0x6f/0x88
[    0.010790] memblock_reserve: [0x0000000000000000-0x00000000000fffff] crash_reserve_low_1M+0x2c/0x39
[    0.010791] kexec: Reserving the low 1M of memory for crashkernel
[    0.010808] memblock_reserve: [0x0000000000000000-0x000000000000ffff] setup_arch+0x688/0xd0b
[    0.010813] Using GB pages for direct mapping
[    0.011216] memblock_reserve: [0x000001033ffff000-0x000001033fffffff] alloc_low_pages+0x163/0x180
[    0.011863] Secure boot disabled
[    0.011863] RAMDISK: [mem 0x0663b000-0x0adabfff]
[    0.011876] ACPI: Early table checksum verification disabled
[    0.011878] ACPI: RSDP 0x000000000FF66000 000024 (v02 VMWARE)
[    0.011880] ACPI: XSDT 0x000000000FF66064 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.011884] ACPI: SRAT 0x000000000FF660C0 000660 (v03 VMWARE EFISRAT  06040001 VMW  000007CE)
[    0.011886] ACPI: FACP 0x000000000FF7252C 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.011889] ACPI: DSDT 0x000000000FF66720 00BE0C (v01 PTLTD  Custom   00000000 INTL 20130823)
[    0.011891] ACPI: FACS 0x000000000FF76000 000040
[    0.011892] ACPI: FACS 0x000000000FF76000 000040
[    0.011893] ACPI: APIC 0x000000000FF72694 0004DA (v03 VMWARE EFIAPIC  06040001 VMW  000007CE)
[    0.011895] ACPI: MCFG 0x000000000FF72B6E 00003C (v01 VMWARE EFIMCFG  06040001 VMW  000007CE)
[    0.011896] ACPI: HPET 0x000000000FF72BAA 000038 (v01 VMWARE VMW HPET 00000000 VMW  00000000)
[    0.011898] ACPI: WAET 0x000000000FF72BE2 000028 (v01 VMWARE VMW WAET 06040001 VMW  00000001)
[    0.011899] ACPI: WSMT 0x000000000FF72C0A 000028 (v01 VMWARE VMW WSMT 06040001 VMW  00000001)
[    0.011904] ACPI: Local APIC address 0xfee00000
[    0.011937] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.011937] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.011938] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.011939] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.011939] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.011940] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.011941] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.011941] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.011942] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.011943] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.011943] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.011944] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.011945] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.011945] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.011946] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.011947] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[    0.011947] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.011948] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.011949] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.011949] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.011950] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.011951] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.011951] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[    0.011952] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[    0.011953] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[    0.011953] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.011954] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.011955] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.011955] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.011956] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.011957] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[    0.011957] SRAT: PXM 1 -> APIC 0x3e -> Node 1
[    0.011958] SRAT: PXM 1 -> APIC 0x40 -> Node 1
[    0.011959] SRAT: PXM 1 -> APIC 0x42 -> Node 1
[    0.011959] SRAT: PXM 1 -> APIC 0x44 -> Node 1
[    0.011960] SRAT: PXM 1 -> APIC 0x46 -> Node 1
[    0.011961] SRAT: PXM 1 -> APIC 0x48 -> Node 1
[    0.011961] SRAT: PXM 1 -> APIC 0x4a -> Node 1
[    0.011962] SRAT: PXM 1 -> APIC 0x4c -> Node 1
[    0.011963] SRAT: PXM 1 -> APIC 0x4e -> Node 1
[    0.011963] SRAT: PXM 1 -> APIC 0x50 -> Node 1
[    0.011964] SRAT: PXM 1 -> APIC 0x52 -> Node 1
[    0.011965] SRAT: PXM 1 -> APIC 0x54 -> Node 1
[    0.011965] SRAT: PXM 1 -> APIC 0x56 -> Node 1
[    0.011966] SRAT: PXM 1 -> APIC 0x58 -> Node 1
[    0.011967] SRAT: PXM 1 -> APIC 0x5a -> Node 1
[    0.011967] SRAT: PXM 1 -> APIC 0x5c -> Node 1
[    0.011968] SRAT: PXM 1 -> APIC 0x5e -> Node 1
[    0.011969] SRAT: PXM 1 -> APIC 0x60 -> Node 1
[    0.011969] SRAT: PXM 1 -> APIC 0x62 -> Node 1
[    0.011970] SRAT: PXM 1 -> APIC 0x64 -> Node 1
[    0.011970] SRAT: PXM 1 -> APIC 0x66 -> Node 1
[    0.011971] SRAT: PXM 1 -> APIC 0x68 -> Node 1
[    0.011972] SRAT: PXM 1 -> APIC 0x6a -> Node 1
[    0.011972] SRAT: PXM 1 -> APIC 0x6c -> Node 1
[    0.011973] SRAT: PXM 1 -> APIC 0x6e -> Node 1
[    0.011974] SRAT: PXM 2 -> APIC 0x70 -> Node 2
[    0.011975] SRAT: PXM 2 -> APIC 0x72 -> Node 2
[    0.011975] SRAT: PXM 2 -> APIC 0x74 -> Node 2
[    0.011976] SRAT: PXM 2 -> APIC 0x76 -> Node 2
[    0.011977] SRAT: PXM 2 -> APIC 0x78 -> Node 2
[    0.011977] SRAT: PXM 2 -> APIC 0x7a -> Node 2
[    0.011978] SRAT: PXM 2 -> APIC 0x7c -> Node 2
[    0.011978] SRAT: PXM 2 -> APIC 0x7e -> Node 2
[    0.011979] SRAT: PXM 2 -> APIC 0x80 -> Node 2
[    0.011980] SRAT: PXM 2 -> APIC 0x82 -> Node 2
[    0.011980] SRAT: PXM 2 -> APIC 0x84 -> Node 2
[    0.011981] SRAT: PXM 2 -> APIC 0x86 -> Node 2
[    0.011982] SRAT: PXM 2 -> APIC 0x88 -> Node 2
[    0.011982] SRAT: PXM 2 -> APIC 0x8a -> Node 2
[    0.011983] SRAT: PXM 2 -> APIC 0x8c -> Node 2
[    0.011984] SRAT: PXM 2 -> APIC 0x8e -> Node 2
[    0.011984] SRAT: PXM 2 -> APIC 0x90 -> Node 2
[    0.011985] SRAT: PXM 2 -> APIC 0x92 -> Node 2
[    0.011986] SRAT: PXM 2 -> APIC 0x94 -> Node 2
[    0.011986] SRAT: PXM 2 -> APIC 0x96 -> Node 2
[    0.011987] SRAT: PXM 2 -> APIC 0x98 -> Node 2
[    0.011988] SRAT: PXM 2 -> APIC 0x9a -> Node 2
[    0.011988] SRAT: PXM 2 -> APIC 0x9c -> Node 2
[    0.011989] SRAT: PXM 2 -> APIC 0x9e -> Node 2
[    0.011990] SRAT: PXM 2 -> APIC 0xa0 -> Node 2
[    0.011990] SRAT: PXM 2 -> APIC 0xa2 -> Node 2
[    0.011991] SRAT: PXM 2 -> APIC 0xa4 -> Node 2
[    0.011992] SRAT: PXM 2 -> APIC 0xa6 -> Node 2
[    0.011994] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.011996] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[    0.011997] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x55ffffffff]
[    0.011998] ACPI: SRAT: Node 1 PXM 1 [mem 0x5600000000-0xaaffffffff]
[    0.011999] ACPI: SRAT: Node 2 PXM 2 [mem 0xab00000000-0xfcffffffff]
[    0.012000] ACPI: SRAT: Node 2 PXM 2 [mem 0x10000000000-0x1033fffffff]
[    0.012002] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xbfffffff] -> [mem 0x00000000-0xbfffffff]
[    0.012003] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x55ffffffff] -> [mem 0x00000000-0x55ffffffff]
[    0.012005] NUMA: Node 2 [mem 0xab00000000-0xfcffffffff] + [mem 0x10000000000-0x1033fffffff] -> [mem 0xab00000000-0x1033fffffff]
[    0.012020] memblock_reserve: [0x00000055fffd6000-0x00000055ffffffff] memblock_alloc_range_nid+0xad/0x11b
[    0.012021] NODE_DATA(0) allocated [mem 0x55fffd6000-0x55ffffffff]
[    0.012387] memblock_reserve: [0x000000aafffd6000-0x000000aaffffffff] memblock_alloc_range_nid+0xad/0x11b
[    0.012388] NODE_DATA(1) allocated [mem 0xaafffd6000-0xaaffffffff]
[    0.013038] memblock_reserve: [0x000001033ffd5000-0x000001033fffefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013038] NODE_DATA(2) allocated [mem 0x1033ffd5000-0x1033fffefff]
[    0.013046] MEMBLOCK configuration:
[    0.013047]  memory size = 0x000000ffffef5000 reserved size = 0x00000000083194d0
[    0.013047]  memory.cnt  = 0xa
[    0.013048]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes on node 0 flags: 0x0
[    0.013049]  memory[0x1]	[0x0000000000100000-0x000000000ef23fff], 0x000000000ee24000 bytes on node 0 flags: 0x0
[    0.013049]  memory[0x2]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes on node 0 flags: 0x0
[    0.013050]  memory[0x3]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes on node 0 flags: 0x0
[    0.013050]  memory[0x4]	[0x000000000ef66000-0x000000000fee6fff], 0x0000000000f81000 bytes on node 0 flags: 0x0
[    0.013051]  memory[0x5]	[0x000000000ff77000-0x00000000bfffffff], 0x00000000b0089000 bytes on node 0 flags: 0x0
[    0.013051]  memory[0x6]	[0x0000000100000000-0x00000055ffffffff], 0x0000005500000000 bytes on node 0 flags: 0x0
[    0.013052]  memory[0x7]	[0x0000005600000000-0x000000aaffffffff], 0x0000005500000000 bytes on node 1 flags: 0x0
[    0.013052]  memory[0x8]	[0x000000ab00000000-0x000000fcffffffff], 0x0000005200000000 bytes on node 2 flags: 0x0
[    0.013053]  memory[0x9]	[0x0000010000000000-0x000001033fffffff], 0x0000000340000000 bytes on node 2 flags: 0x0
[    0.013053]  reserved.cnt  = 0x13
[    0.013054]  reserved[0x0]	[0x0000000000000000-0x00000000000fffff], 0x0000000000100000 bytes on node 0 flags: 0x0
[    0.013055]  reserved[0x1]	[0x000000000663b000-0x000000000adabfff], 0x0000000004771000 bytes on node 0 flags: 0x0
[    0.013055]  reserved[0x2]	[0x000000000df93000-0x000000000df93fff], 0x0000000000001000 bytes on node 0 flags: 0x0
[    0.013056]  reserved[0x3]	[0x000000000e0a0018-0x000000000e0a0767], 0x0000000000000750 bytes on node 0 flags: 0x0
[    0.013056]  reserved[0x4]	[0x000000000e0a1018-0x000000000e0a2857], 0x0000000000001840 bytes on node 0 flags: 0x0
[    0.013057]  reserved[0x5]	[0x000000000e0a3018-0x000000000e0a5057], 0x0000000000002040 bytes on node 0 flags: 0x0
[    0.013057]  reserved[0x6]	[0x000000000e0a6018-0x000000000e0ae057], 0x0000000000008040 bytes on node 0 flags: 0x0
[    0.013058]  reserved[0x7]	[0x000000000e0b1000-0x000000000e0b1fff], 0x0000000000001000 bytes on node 0 flags: 0x0
[    0.013058]  reserved[0x8]	[0x000000000e564698-0x000000000e564b57], 0x00000000000004c0 bytes on node 0 flags: 0x0
[    0.013059]  reserved[0x9]	[0x000000000e74a000-0x000000000ef23fff], 0x00000000007da000 bytes on node 0 flags: 0x0
[    0.013059]  reserved[0xa]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes on node 0 flags: 0x0
[    0.013060]  reserved[0xb]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes on node 0 flags: 0x0
[    0.013060]  reserved[0xc]	[0x000000000ef66000-0x000000000fee6fff], 0x0000000000f81000 bytes on node 0 flags: 0x0
[    0.013061]  reserved[0xd]	[0x000000000ff77000-0x000000000fffffff], 0x0000000000089000 bytes on node 0 flags: 0x0
[    0.013061]  reserved[0xe]	[0x00000055fffd6000-0x00000055ffffffff], 0x000000000002a000 bytes flags: 0x0
[    0.013062]  reserved[0xf]	[0x0000007c7a800000-0x0000007c7ca0efff], 0x000000000220f000 bytes on node 1 flags: 0x0
[    0.013062]  reserved[0x10]	[0x000000aafffd6000-0x000000aaffffffff], 0x000000000002a000 bytes flags: 0x0
[    0.013063]  reserved[0x11]	[0x000001033ffd5000-0x000001033fffefff], 0x000000000002a000 bytes flags: 0x0
[    0.013063]  reserved[0x12]	[0x000001033ffff000-0x000001033fffffff], 0x0000000000001000 bytes on node 2 flags: 0x0
[    0.013164] crashkernel: memory value expected
[    0.013167] memblock_alloc_try_nid: 16384 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 memory_present+0x56/0x11d
[    0.013168] memblock_reserve: [0x000001033ffd1000-0x000001033ffd4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013171] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013172] memblock_reserve: [0x00000055fffd5000-0x00000055fffd5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013176] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013176] memblock_reserve: [0x00000055fffd4000-0x00000055fffd4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013180] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013180] memblock_reserve: [0x00000055fffd3000-0x00000055fffd3fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013184] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013185] memblock_reserve: [0x00000055fffd2000-0x00000055fffd2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013190] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013190] memblock_reserve: [0x00000055fffd1000-0x00000055fffd1fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013196] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013196] memblock_reserve: [0x00000055fffd0000-0x00000055fffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013202] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013203] memblock_reserve: [0x00000055fffcf000-0x00000055fffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013209] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013210] memblock_reserve: [0x00000055fffce000-0x00000055fffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013217] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013218] memblock_reserve: [0x00000055fffcd000-0x00000055fffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013225] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013226] memblock_reserve: [0x00000055fffcc000-0x00000055fffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013234] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013235] memblock_reserve: [0x00000055fffcb000-0x00000055fffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013243] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013244] memblock_reserve: [0x000000aafffd5000-0x000000aafffd5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013254] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013254] memblock_reserve: [0x000000aafffd4000-0x000000aafffd4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013264] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013264] memblock_reserve: [0x000000aafffd3000-0x000000aafffd3fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013275] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013275] memblock_reserve: [0x000000aafffd2000-0x000000aafffd2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013287] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013287] memblock_reserve: [0x000000aafffd1000-0x000000aafffd1fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013299] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013300] memblock_reserve: [0x000000aafffd0000-0x000000aafffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013312] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013313] memblock_reserve: [0x000000aafffcf000-0x000000aafffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013325] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013326] memblock_reserve: [0x000000aafffce000-0x000000aafffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013339] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013340] memblock_reserve: [0x000000aafffcd000-0x000000aafffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013354] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013355] memblock_reserve: [0x000000aafffcc000-0x000000aafffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013370] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013370] memblock_reserve: [0x000000aafffcb000-0x000000aafffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013386] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013387] memblock_reserve: [0x000001033ffd0000-0x000001033ffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013402] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013403] memblock_reserve: [0x000001033ffcf000-0x000001033ffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013419] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013420] memblock_reserve: [0x000001033ffce000-0x000001033ffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013437] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013438] memblock_reserve: [0x000001033ffcd000-0x000001033ffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013455] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013456] memblock_reserve: [0x000001033ffcc000-0x000001033ffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013474] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013475] memblock_reserve: [0x000001033ffcb000-0x000001033ffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013494] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013494] memblock_reserve: [0x000001033ffca000-0x000001033ffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.013514] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013514] memblock_reserve: [0x000001033ffc9000-0x000001033ffc9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013534] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013535] memblock_reserve: [0x000001033ffc8000-0x000001033ffc8fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013555] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013556] memblock_reserve: [0x000001033ffc7000-0x000001033ffc7fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013570] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013570] memblock_reserve: [0x000001033ffc6000-0x000001033ffc6fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013590] memblock_alloc_try_nid: 109760 bytes align=0x40 nid=0 from=0x00000055f8000000 max_addr=0x0000005600000000 sparse_init_nid+0x8f/0x401
[    0.013591] memblock_reserve: [0x00000055fffb0340-0x00000055fffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.013596] memblock_alloc_exact_nid_raw: 5754585088 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x401
[    0.013597] memblock_reserve: [0x00000054a8e00000-0x00000055ffdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013600] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013600] memblock_reserve: [0x00000055fffaf000-0x00000055fffaffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013601] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013602] memblock_reserve: [0x00000055fffae000-0x00000055fffaefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013624] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013625] memblock_reserve: [0x00000055fffad000-0x00000055fffadfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013648] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013649] memblock_reserve: [0x00000055fffac000-0x00000055fffacfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013671] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013672] memblock_reserve: [0x00000055fffab000-0x00000055fffabfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013694] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013695] memblock_reserve: [0x00000055fffaa000-0x00000055fffaafff] memblock_alloc_range_nid+0xad/0x11b
[    0.013717] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013718] memblock_reserve: [0x00000055fffa9000-0x00000055fffa9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013737] memblock_alloc_try_nid: 108800 bytes align=0x40 nid=1 from=0x000000aaf8000000 max_addr=0x000000ab00000000 sparse_init_nid+0x8f/0x401
[    0.013738] memblock_reserve: [0x000000aafffb0700-0x000000aafffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.013742] memblock_alloc_exact_nid_raw: 5704253440 bytes align=0x200000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x401
[    0.013743] memblock_reserve: [0x000000a9abe00000-0x000000aaffdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013758] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013759] memblock_reserve: [0x000000aafffaf000-0x000000aafffaffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013782] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013783] memblock_reserve: [0x000000aafffae000-0x000000aafffaefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013806] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013806] memblock_reserve: [0x000000aafffad000-0x000000aafffadfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013828] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013829] memblock_reserve: [0x000000aafffac000-0x000000aafffacfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013851] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013851] memblock_reserve: [0x000000aafffab000-0x000000aafffabfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013877] memblock_alloc_try_nid: 109120 bytes align=0x40 nid=2 from=0x0000010338000000 max_addr=0x0000010340000000 sparse_init_nid+0x8f/0x401
[    0.013877] memblock_reserve: [0x000001033ffab5c0-0x000001033ffc5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013883] memblock_alloc_exact_nid_raw: 5721030656 bytes align=0x200000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x401
[    0.013883] memblock_reserve: [0x00000101eae00000-0x000001033fdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013891] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013892] memblock_reserve: [0x000001033ffaa000-0x000001033ffaafff] memblock_alloc_range_nid+0xad/0x11b
[    0.013914] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013915] memblock_reserve: [0x000001033ffa9000-0x000001033ffa9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013938] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013939] memblock_reserve: [0x000001033ffa8000-0x000001033ffa8fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013961] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013962] memblock_reserve: [0x000001033ffa7000-0x000001033ffa7fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013984] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013985] memblock_reserve: [0x000001033ffa6000-0x000001033ffa6fff] memblock_alloc_range_nid+0xad/0x11b
[    0.014004] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.014004] memblock_reserve: [0x000001033ffa5000-0x000001033ffa5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.014012] Zone ranges:
[    0.014012]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.014013]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.014013]   Normal   [mem 0x0000000100000000-0x000001033fffffff]
[    0.014014]   Device   empty
[    0.014014] Movable zone start for each node
[    0.014016] Early memory node ranges
[    0.014017]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.014017]   node   0: [mem 0x0000000000100000-0x000000000ef23fff]
[    0.014018]   node   0: [mem 0x000000000ef2d000-0x000000000ef3bfff]
[    0.014018]   node   0: [mem 0x000000000ef48000-0x000000000ef60fff]
[    0.014019]   node   0: [mem 0x000000000ef66000-0x000000000fee6fff]
[    0.014019]   node   0: [mem 0x000000000ff77000-0x00000000bfffffff]
[    0.014020]   node   0: [mem 0x0000000100000000-0x00000055ffffffff]
[    0.014033]   node   1: [mem 0x0000005600000000-0x000000aaffffffff]
[    0.014048]   node   2: [mem 0x000000ab00000000-0x000000fcffffffff]
[    0.014062]   node   2: [mem 0x0000010000000000-0x000001033fffffff]
[    0.014798] Zeroed struct page in unavailable ranges: 267 pages
[    0.014799] Initmem setup node 0 [mem 0x0000000000001000-0x00000055ffffffff]
[    0.014800] On node 0 totalpages: 89915125
[    0.014801]   DMA zone: 64 pages used for memmap
[    0.014801]   DMA zone: 159 pages reserved
[    0.014801]   DMA zone: 3999 pages, LIFO batch:0
[    0.014825]   DMA32 zone: 12222 pages used for memmap
[    0.014825]   DMA32 zone: 782166 pages, LIFO batch:63
[    0.026124]   Normal zone: 1392640 pages used for memmap
[    0.026126]   Normal zone: 89128960 pages, LIFO batch:63
[    0.026640] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.026642] On node 1 totalpages: 89128960
[    0.026643]   Normal zone: 1392640 pages used for memmap
[    0.026643]   Normal zone: 89128960 pages, LIFO batch:63
[    0.027419] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.027421] On node 2 totalpages: 89391104
[    0.027422]   Normal zone: 1445888 pages used for memmap
[    0.027422]   Normal zone: 89391104 pages, LIFO batch:63
[    2.005629] ACPI: PM-Timer IO Port: 0x448
[    2.005633] ACPI: Local APIC address 0xfee00000
[    2.005653] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    2.005653] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    2.005653] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    2.005654] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    2.005654] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    2.005654] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    2.005655] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    2.005655] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    2.005656] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    2.005656] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    2.005656] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    2.005657] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    2.005657] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    2.005658] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    2.005658] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    2.005658] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    2.005659] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    2.005659] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    2.005659] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    2.005660] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    2.005660] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    2.005660] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    2.005661] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    2.005661] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    2.005661] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    2.005662] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    2.005662] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    2.005662] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    2.005663] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    2.005663] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    2.005663] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    2.005663] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    2.005664] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    2.005664] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    2.005664] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    2.005665] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    2.005665] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    2.005665] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    2.005666] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    2.005666] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    2.005666] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    2.005667] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    2.005667] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    2.005667] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    2.005668] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    2.005668] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    2.005668] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    2.005669] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    2.005669] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    2.005669] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    2.005670] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    2.005670] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    2.005670] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    2.005671] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    2.005671] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    2.005671] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    2.005672] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    2.005672] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    2.005672] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    2.005673] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    2.005673] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[    2.005673] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    2.005674] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[    2.005674] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[    2.005675] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[    2.005675] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[    2.005676] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[    2.005676] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[    2.005677] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[    2.005677] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[    2.005677] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[    2.005678] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[    2.005678] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[    2.005678] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[    2.005679] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[    2.005679] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[    2.005679] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[    2.005680] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[    2.005680] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[    2.005680] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[    2.005681] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[    2.005681] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[    2.005681] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[    2.005682] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[    2.005712] IOAPIC[0]: apic_id 84, version 32, address 0xfec00000, GSI 0-23
[    2.005714] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    2.005716] ACPI: IRQ0 used by override.
[    2.005717] ACPI: IRQ9 used by override.
[    2.005719] Using ACPI (MADT) for SMP configuration information
[    2.005720] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[    2.005729] memblock_alloc_try_nid: 73 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 acpi_parse_hpet+0xca/0x132
[    2.005733] memblock_reserve: [0x000001033ffab540-0x000001033ffab588] memblock_alloc_range_nid+0xad/0x11b
[    2.005738] smpboot: Allowing 84 CPUs, 0 hotplug CPUs
[    2.005745] memblock_alloc_try_nid: 75 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 io_apic_init_mappings+0x37/0x1c2
[    2.005746] memblock_reserve: [0x000001033ffab4c0-0x000001033ffab50a] memblock_alloc_range_nid+0xad/0x11b
[    2.005753] memblock_alloc_try_nid: 1536 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 e820__reserve_resources+0x2a/0x198
[    2.005754] memblock_reserve: [0x000001033ffa4a00-0x000001033ffa4fff] memblock_alloc_range_nid+0xad/0x11b
[    2.005764] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005766] memblock_reserve: [0x000001033ffab440-0x000001033ffab4a7] memblock_alloc_range_nid+0xad/0x11b
[    2.005769] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005771] memblock_reserve: [0x000001033ffab3c0-0x000001033ffab427] memblock_alloc_range_nid+0xad/0x11b
[    2.005773] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005775] memblock_reserve: [0x000001033ffab340-0x000001033ffab3a7] memblock_alloc_range_nid+0xad/0x11b
[    2.005778] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005779] memblock_reserve: [0x000001033ffab2c0-0x000001033ffab327] memblock_alloc_range_nid+0xad/0x11b
[    2.005782] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005784] memblock_reserve: [0x000001033ffab240-0x000001033ffab2a7] memblock_alloc_range_nid+0xad/0x11b
[    2.005786] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005788] memblock_reserve: [0x000001033ffab1c0-0x000001033ffab227] memblock_alloc_range_nid+0xad/0x11b
[    2.005791] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005792] memblock_reserve: [0x000001033ffab140-0x000001033ffab1a7] memblock_alloc_range_nid+0xad/0x11b
[    2.005795] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005797] memblock_reserve: [0x000001033ffab0c0-0x000001033ffab127] memblock_alloc_range_nid+0xad/0x11b
[    2.005799] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005801] memblock_reserve: [0x000001033ffab040-0x000001033ffab0a7] memblock_alloc_range_nid+0xad/0x11b
[    2.005804] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005806] memblock_reserve: [0x000001033ffa4980-0x000001033ffa49e7] memblock_alloc_range_nid+0xad/0x11b
[    2.005808] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005810] memblock_reserve: [0x000001033ffa4900-0x000001033ffa4967] memblock_alloc_range_nid+0xad/0x11b
[    2.005813] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005815] memblock_reserve: [0x000001033ffa4880-0x000001033ffa48e7] memblock_alloc_range_nid+0xad/0x11b
[    2.005817] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005819] memblock_reserve: [0x000001033ffa4800-0x000001033ffa4867] memblock_alloc_range_nid+0xad/0x11b
[    2.005822] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005824] memblock_reserve: [0x000001033ffa4780-0x000001033ffa47e7] memblock_alloc_range_nid+0xad/0x11b
[    2.005827] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005829] memblock_reserve: [0x000001033ffa4700-0x000001033ffa4767] memblock_alloc_range_nid+0xad/0x11b
[    2.005831] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005834] memblock_reserve: [0x000001033ffa4680-0x000001033ffa46e7] memblock_alloc_range_nid+0xad/0x11b
[    2.005836] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005838] memblock_reserve: [0x000001033ffa4600-0x000001033ffa4667] memblock_alloc_range_nid+0xad/0x11b
[    2.005841] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    2.005843] memblock_reserve: [0x000001033ffa4580-0x000001033ffa45e7] memblock_alloc_range_nid+0xad/0x11b
[    2.005849] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    2.005851] memblock_reserve: [0x000001033ffab000-0x000001033ffab01f] memblock_alloc_range_nid+0xad/0x11b
[    2.005852] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    2.005854] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    2.005857] memblock_reserve: [0x000001033ffa4540-0x000001033ffa455f] memblock_alloc_range_nid+0xad/0x11b
[    2.005858] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    2.005859] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    2.005861] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    2.005864] memblock_reserve: [0x000001033ffa4500-0x000001033ffa451f] memblock_alloc_range_nid+0xad/0x11b
[    2.005865] PM: hibernation: Registered nosave memory: [mem 0x0e0a1000-0x0e0a1fff]
[    2.005866] PM: hibernation: Registered nosave memory: [mem 0x0e0a2000-0x0e0a2fff]
[    2.005867] PM: hibernation: Registered nosave memory: [mem 0x0e0a3000-0x0e0a3fff]
[    2.005869] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    2.005872] memblock_reserve: [0x000001033ffa44c0-0x000001033ffa44df] memblock_alloc_range_nid+0xad/0x11b
[    2.005873] PM: hibernation: Registered nosave memory: [mem 0x0e0a5000-0x0e0a5fff]
[    2.005874] PM: hibernation: Registered nosave memory: [mem 0x0e0a6000-0x0e0a6fff]
[    2.005876] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    2.005878] memblock_reserve: [0x000001033ffa4480-0x000001033ffa449f] memblock_alloc_range_nid+0xad/0x11b
[    2.005880] PM: hibernation: Registered nosave memory: [mem 0x0e0ae000-0x0e0aefff]
[    2.005882] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    2.005884] memblock_reserve: [0x000001033ffa4440-0x000001033ffa445f] memblock_alloc_range_nid+0xad/0x11b
[    2.005886] PM: hibernation: Registered nosave memory: [mem 0x0ef24000-0x0ef2cfff]
[    2.005888] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    2.005890] memblock_reserve: [0x000001033ffa4400-0x000001033ffa441f] memblock_alloc_range_nid+0xad/0x11b
[    2.005891] PM: hibernation: Registered nosave memory: [mem 0x0ef3c000-0x0ef41fff]
[    2.005892] PM: hibernation: Registered nosave memory: [mem 0x0ef42000-0x0ef47fff]
[    2.005894] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    2.005897] memblock_reserve: [0x000001033ffa43c0-0x000001033ffa43df] memblock_alloc_range_nid+0xad/0x11b
[    2.005898] PM: hibernation: Registered nosave memory: [mem 0x0ef61000-0x0ef65fff]
[    2.005900] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    2.005903] memblock_reserve: [0x000001033ffa4380-0x000001033ffa439f] memblock_alloc_range_nid+0xad/0x11b
[    2.005904] PM: hibernation: Registered nosave memory: [mem 0x0fee7000-0x0ff56fff]
[    2.005905] PM: hibernation: Registered nosave memory: [mem 0x0ff57000-0x0ff72fff]
[    2.005906] PM: hibernation: Registered nosave memory: [mem 0x0ff73000-0x0ff76fff]
[    2.005908] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    2.005915] memblock_reserve: [0x000001033ffa4340-0x000001033ffa435f] memblock_alloc_range_nid+0xad/0x11b
[    2.005916] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xffbfffff]
[    2.005916] PM: hibernation: Registered nosave memory: [mem 0xffc00000-0xffc29fff]
[    2.005917] PM: hibernation: Registered nosave memory: [mem 0xffc2a000-0xffffffff]
[    2.005918] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    2.005919] memblock_reserve: [0x000001033ffa4300-0x000001033ffa431f] memblock_alloc_range_nid+0xad/0x11b
[    2.005920] PM: hibernation: Registered nosave memory: [mem 0xfd00000000-0xffffffffff]
[    2.005922] [mem 0xc0000000-0xffbfffff] available for PCI devices
[    2.005924] Booting paravirtualized kernel on VMware hypervisor
[    2.005927] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    2.009195] memblock_alloc_try_nid: 134 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xfd/0x57a
[    2.009200] memblock_reserve: [0x000001033ffa4240-0x000001033ffa42c5] memblock_alloc_range_nid+0xad/0x11b
[    2.009202] memblock_alloc_try_nid: 134 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0x111/0x57a
[    2.009203] memblock_reserve: [0x000001033ffa4180-0x000001033ffa4205] memblock_alloc_range_nid+0xad/0x11b
[    2.009206] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:84 nr_cpu_ids:84 nr_node_ids:3
[    2.009259] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_alloc_info+0x52/0x84
[    2.009261] memblock_reserve: [0x000001033ffa3000-0x000001033ffa3fff] memblock_alloc_range_nid+0xad/0x11b
[    2.009265] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_embed_first_chunk+0x72/0x30d
[    2.009266] memblock_reserve: [0x000001033ffa2000-0x000001033ffa2fff] memblock_alloc_range_nid+0xad/0x11b
[    2.009273] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    2.009274] memblock_reserve: [0x00000054a8600000-0x00000054a8dfffff] memblock_alloc_range_nid+0xad/0x11b
[    2.011002] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    2.011003] memblock_reserve: [0x000000a9ab600000-0x000000a9abdfffff] memblock_alloc_range_nid+0xad/0x11b
[    2.013632] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    2.013633] memblock_reserve: [0x00000101ea600000-0x00000101eadfffff] memblock_alloc_range_nid+0xad/0x11b
[    2.016283] memblock_free: [0x00000054a8638000-0x00000054a863ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016306] memblock_free: [0x00000054a8678000-0x00000054a867ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016328] memblock_free: [0x00000054a86b8000-0x00000054a86bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016351] memblock_free: [0x00000054a86f8000-0x00000054a86fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016372] memblock_free: [0x00000054a8738000-0x00000054a873ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016395] memblock_free: [0x00000054a8778000-0x00000054a877ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016415] memblock_free: [0x00000054a87b8000-0x00000054a87bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016437] memblock_free: [0x00000054a87f8000-0x00000054a87fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016462] memblock_free: [0x00000054a8838000-0x00000054a883ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016488] memblock_free: [0x00000054a8878000-0x00000054a887ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016514] memblock_free: [0x00000054a88b8000-0x00000054a88bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016539] memblock_free: [0x00000054a88f8000-0x00000054a88fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016564] memblock_free: [0x00000054a8938000-0x00000054a893ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016588] memblock_free: [0x00000054a8978000-0x00000054a897ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016613] memblock_free: [0x00000054a89b8000-0x00000054a89bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016638] memblock_free: [0x00000054a89f8000-0x00000054a89fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016661] memblock_free: [0x00000054a8a38000-0x00000054a8a3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016684] memblock_free: [0x00000054a8a78000-0x00000054a8a7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016706] memblock_free: [0x00000054a8ab8000-0x00000054a8abffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016728] memblock_free: [0x00000054a8af8000-0x00000054a8afffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016752] memblock_free: [0x00000054a8b38000-0x00000054a8b3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016775] memblock_free: [0x00000054a8b78000-0x00000054a8b7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016799] memblock_free: [0x00000054a8bb8000-0x00000054a8bbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016822] memblock_free: [0x00000054a8bf8000-0x00000054a8bfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016839] memblock_free: [0x00000054a8c38000-0x00000054a8c3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016855] memblock_free: [0x00000054a8c78000-0x00000054a8c7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016872] memblock_free: [0x00000054a8cb8000-0x00000054a8cbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016889] memblock_free: [0x00000054a8cf8000-0x00000054a8cfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016891] memblock_free: [0x00000054a8d00000-0x00000054a8d3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.016892] memblock_free: [0x00000054a8d40000-0x00000054a8d7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.016893] memblock_free: [0x00000054a8d80000-0x00000054a8dbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.016895] memblock_free: [0x00000054a8dc0000-0x00000054a8dfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.016926] memblock_free: [0x000000a9ab638000-0x000000a9ab63ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016957] memblock_free: [0x000000a9ab678000-0x000000a9ab67ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.016987] memblock_free: [0x000000a9ab6b8000-0x000000a9ab6bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017017] memblock_free: [0x000000a9ab6f8000-0x000000a9ab6fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017049] memblock_free: [0x000000a9ab738000-0x000000a9ab73ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017080] memblock_free: [0x000000a9ab778000-0x000000a9ab77ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017112] memblock_free: [0x000000a9ab7b8000-0x000000a9ab7bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017144] memblock_free: [0x000000a9ab7f8000-0x000000a9ab7fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017169] memblock_free: [0x000000a9ab838000-0x000000a9ab83ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017193] memblock_free: [0x000000a9ab878000-0x000000a9ab87ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017218] memblock_free: [0x000000a9ab8b8000-0x000000a9ab8bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017243] memblock_free: [0x000000a9ab8f8000-0x000000a9ab8fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017269] memblock_free: [0x000000a9ab938000-0x000000a9ab93ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017295] memblock_free: [0x000000a9ab978000-0x000000a9ab97ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017320] memblock_free: [0x000000a9ab9b8000-0x000000a9ab9bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017356] memblock_free: [0x000000a9ab9f8000-0x000000a9ab9fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017372] memblock_free: [0x000000a9aba38000-0x000000a9aba3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017388] memblock_free: [0x000000a9aba78000-0x000000a9aba7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017404] memblock_free: [0x000000a9abab8000-0x000000a9ababffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017418] memblock_free: [0x000000a9abaf8000-0x000000a9abafffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017432] memblock_free: [0x000000a9abb38000-0x000000a9abb3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017445] memblock_free: [0x000000a9abb78000-0x000000a9abb7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017458] memblock_free: [0x000000a9abbb8000-0x000000a9abbbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017470] memblock_free: [0x000000a9abbf8000-0x000000a9abbfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017488] memblock_free: [0x000000a9abc38000-0x000000a9abc3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017507] memblock_free: [0x000000a9abc78000-0x000000a9abc7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017527] memblock_free: [0x000000a9abcb8000-0x000000a9abcbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017547] memblock_free: [0x000000a9abcf8000-0x000000a9abcfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017548] memblock_free: [0x000000a9abd00000-0x000000a9abd3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.017550] memblock_free: [0x000000a9abd40000-0x000000a9abd7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.017551] memblock_free: [0x000000a9abd80000-0x000000a9abdbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.017552] memblock_free: [0x000000a9abdc0000-0x000000a9abdfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.017565] memblock_free: [0x00000101ea638000-0x00000101ea63ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017577] memblock_free: [0x00000101ea678000-0x00000101ea67ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017590] memblock_free: [0x00000101ea6b8000-0x00000101ea6bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017601] memblock_free: [0x00000101ea6f8000-0x00000101ea6fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017617] memblock_free: [0x00000101ea738000-0x00000101ea73ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017631] memblock_free: [0x00000101ea778000-0x00000101ea77ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017646] memblock_free: [0x00000101ea7b8000-0x00000101ea7bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017661] memblock_free: [0x00000101ea7f8000-0x00000101ea7fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017671] memblock_free: [0x00000101ea838000-0x00000101ea83ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017681] memblock_free: [0x00000101ea878000-0x00000101ea87ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017691] memblock_free: [0x00000101ea8b8000-0x00000101ea8bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017701] memblock_free: [0x00000101ea8f8000-0x00000101ea8fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017711] memblock_free: [0x00000101ea938000-0x00000101ea93ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017722] memblock_free: [0x00000101ea978000-0x00000101ea97ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017725] memblock: reserved is doubled to 256 at [0x000001033ffa0000-0x000001033ffa17ff]
[    2.017732] memblock_reserve: [0x000001033ffa0000-0x000001033ffa1fff] memblock_double_array+0x236/0x26f
[    2.017743] memblock_free: [0x00000101ea9b8000-0x00000101ea9bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017754] memblock_free: [0x00000101ea9f8000-0x00000101ea9fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017763] memblock_free: [0x00000101eaa38000-0x00000101eaa3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017772] memblock_free: [0x00000101eaa78000-0x00000101eaa7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017781] memblock_free: [0x00000101eaab8000-0x00000101eaabffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017790] memblock_free: [0x00000101eaaf8000-0x00000101eaafffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017800] memblock_free: [0x00000101eab38000-0x00000101eab3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017809] memblock_free: [0x00000101eab78000-0x00000101eab7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017819] memblock_free: [0x00000101eabb8000-0x00000101eabbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017828] memblock_free: [0x00000101eabf8000-0x00000101eabfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017838] memblock_free: [0x00000101eac38000-0x00000101eac3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017848] memblock_free: [0x00000101eac78000-0x00000101eac7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017858] memblock_free: [0x00000101eacb8000-0x00000101eacbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017867] memblock_free: [0x00000101eacf8000-0x00000101eacfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    2.017869] memblock_free: [0x00000101ead00000-0x00000101ead3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.017870] memblock_free: [0x00000101ead40000-0x00000101ead7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.017872] memblock_free: [0x00000101ead80000-0x00000101eadbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.017873] memblock_free: [0x00000101eadc0000-0x00000101eadfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    2.017874] percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u262144
[    2.017877] memblock_alloc_try_nid: 24 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x2f4/0x71b
[    2.017879] memblock_reserve: [0x000001033ffa4140-0x000001033ffa4157] memblock_alloc_range_nid+0xad/0x11b
[    2.017881] memblock_alloc_try_nid: 24 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x327/0x71b
[    2.017882] memblock_reserve: [0x000001033ffa4100-0x000001033ffa4117] memblock_alloc_range_nid+0xad/0x11b
[    2.017884] memblock_alloc_try_nid: 336 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x348/0x71b
[    2.017885] memblock_reserve: [0x000001033ff9fe80-0x000001033ff9ffcf] memblock_alloc_range_nid+0xad/0x11b
[    2.017887] memblock_alloc_try_nid: 672 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x368/0x71b
[    2.017888] memblock_reserve: [0x000001033ff9fbc0-0x000001033ff9fe5f] memblock_alloc_range_nid+0xad/0x11b
[    2.017891] pcpu-alloc: s192512 r8192 d28672 u262144 alloc=1*2097152
[    2.017892] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    2.017895] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
[    2.017897] pcpu-alloc: [1] 28 29 30 31 32 33 34 35 [1] 36 37 38 39 40 41 42 43 
[    2.017899] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 [1] 52 53 54 55 -- -- -- -- 
[    2.017901] pcpu-alloc: [2] 56 57 58 59 60 61 62 63 [2] 64 65 66 67 68 69 70 71 
[    2.017903] pcpu-alloc: [2] 72 73 74 75 76 77 78 79 [2] 80 81 82 83 -- -- -- -- 
[    2.017906] memblock_alloc_try_nid: 288 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x641/0x71b
[    2.017907] memblock_reserve: [0x000001033ff9fa80-0x000001033ff9fb9f] memblock_alloc_range_nid+0xad/0x11b
[    2.017909] memblock_alloc_try_nid: 121 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x74/0x21c
[    2.017910] memblock_reserve: [0x000001033ffa4080-0x000001033ffa40f8] memblock_alloc_range_nid+0xad/0x11b
[    2.017912] memblock_alloc_try_nid: 256 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xc3/0x21c
[    2.017913] memblock_reserve: [0x000001033ff9f980-0x000001033ff9fa7f] memblock_alloc_range_nid+0xad/0x11b
[    2.017915] memblock_alloc_try_nid: 264 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x100/0x21c
[    2.017917] memblock_reserve: [0x000001033ff9f840-0x000001033ff9f947] memblock_alloc_range_nid+0xad/0x11b
[    2.017918] memblock_alloc_try_nid: 64 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x11e/0x21c
[    2.017919] memblock_reserve: [0x000001033ffa4040-0x000001033ffa407f] memblock_alloc_range_nid+0xad/0x11b
[    2.017921] memblock_alloc_try_nid: 121 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x74/0x21c
[    2.017922] memblock_reserve: [0x000001033ff9f7c0-0x000001033ff9f838] memblock_alloc_range_nid+0xad/0x11b
[    2.017924] memblock_alloc_try_nid: 896 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xc3/0x21c
[    2.017925] memblock_reserve: [0x000001033ff9f440-0x000001033ff9f7bf] memblock_alloc_range_nid+0xad/0x11b
[    2.017928] memblock_alloc_try_nid: 904 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x100/0x21c
[    2.017929] memblock_reserve: [0x000001033ff9f080-0x000001033ff9f407] memblock_alloc_range_nid+0xad/0x11b
[    2.017931] memblock_alloc_try_nid: 224 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x11e/0x21c
[    2.017932] memblock_reserve: [0x000001033ff9ef80-0x000001033ff9f05f] memblock_alloc_range_nid+0xad/0x11b
[    2.017936] memblock_free: [0x000001033ffa3000-0x000001033ffa3fff] pcpu_embed_first_chunk+0x2c7/0x30d
[    2.017937] memblock_free: [0x000001033ffa2000-0x000001033ffa2fff] pcpu_embed_first_chunk+0x2fc/0x30d
[    2.017945] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    2.017946] memblock_reserve: [0x000001033ffa4000-0x000001033ffa400f] memblock_alloc_range_nid+0xad/0x11b
[    2.017948] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    2.017949] memblock_reserve: [0x000001033ffa3fc0-0x000001033ffa3fcf] memblock_alloc_range_nid+0xad/0x11b
[    2.017951] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    2.017952] memblock_reserve: [0x000001033ffa3f80-0x000001033ffa3f8f] memblock_alloc_range_nid+0xad/0x11b
[    2.017954] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    2.017956] memblock_reserve: [0x000001033ffa3f40-0x000001033ffa3f4f] memblock_alloc_range_nid+0xad/0x11b
[    2.017957] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    2.017959] memblock_reserve: [0x000001033ffa3f00-0x000001033ffa3f0f] memblock_alloc_range_nid+0xad/0x11b
[    2.017960] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    2.017961] memblock_reserve: [0x000001033ffa3ec0-0x000001033ffa3ecf] memblock_alloc_range_nid+0xad/0x11b
[    2.017963] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    2.017964] memblock_reserve: [0x000001033ffa3e80-0x000001033ffa3e8f] memblock_alloc_range_nid+0xad/0x11b
[    2.017978] Built 3 zonelists, mobility grouping on.  Total pages: 264191576
[    2.017979] Policy zone: Normal
[    2.017981] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.7.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet memblock=debug
[    2.018112] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    2.018114] memblock_reserve: [0x000001033ffa2000-0x000001033ffa2fff] memblock_alloc_range_nid+0xad/0x11b
[    2.018117] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    2.018119] memblock_reserve: [0x000001033ff9d000-0x000001033ff9dfff] memblock_alloc_range_nid+0xad/0x11b
[    2.018122] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    2.018123] memblock_reserve: [0x000001033ff9c000-0x000001033ff9cfff] memblock_alloc_range_nid+0xad/0x11b
[    2.018207] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    2.018208] memblock_reserve: [0x000001033ff9b000-0x000001033ff9bfff] memblock_alloc_range_nid+0xad/0x11b
[    2.018296] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    2.018298] memblock_reserve: [0x000001033ff9a000-0x000001033ff9afff] memblock_alloc_range_nid+0xad/0x11b
[    2.018391] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    2.018393] memblock_reserve: [0x000001033ff99000-0x000001033ff99fff] memblock_alloc_range_nid+0xad/0x11b
[    2.018494] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    2.018495] memblock_reserve: [0x000001033ff98000-0x000001033ff98fff] memblock_alloc_range_nid+0xad/0x11b
[    2.018602] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    2.018604] memblock_reserve: [0x000001033ff97000-0x000001033ff97fff] memblock_alloc_range_nid+0xad/0x11b
[    2.018715] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    2.018716] memblock_reserve: [0x000001033ff96000-0x000001033ff96fff] memblock_alloc_range_nid+0xad/0x11b
[    2.018836] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    2.018837] memblock_reserve: [0x000001033ff95000-0x000001033ff95fff] memblock_alloc_range_nid+0xad/0x11b
[    2.018987] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    2.018988] memblock_reserve: [0x000001033ff94000-0x000001033ff94fff] memblock_alloc_range_nid+0xad/0x11b
[    2.019124] mem auto-init: stack:off, heap alloc:off, heap free:off
[    2.019130] memblock_alloc_try_nid: 67108864 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x00000000ffffffff swiotlb_init+0x4b/0xa8
[    2.019133] memblock_reserve: [0x00000000bc000000-0x00000000bfffffff] memblock_alloc_range_nid+0xad/0x11b
[    2.030816] memblock_alloc_try_nid: 131072 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0x6e/0x13b
[    2.030818] memblock_reserve: [0x000001033ff74000-0x000001033ff93fff] memblock_alloc_range_nid+0xad/0x11b
[    2.030856] memblock_alloc_try_nid: 262144 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0xa5/0x13b
[    2.030857] memblock_reserve: [0x000001033ff34000-0x000001033ff73fff] memblock_alloc_range_nid+0xad/0x11b
[    3.245623] Memory: 347306780K/1073740756K available (12292K kernel code, 2140K rwdata, 4456K rodata, 2332K init, 6164K bss, 16996436K reserved, 0K cma-reserved)
[    3.247964] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=84, Nodes=3
[    3.248012] Kernel/User page tables isolation: enabled
[    3.248061] ftrace: allocating 38058 entries in 149 pages
[    3.261058] ftrace: allocated 149 pages with 4 groups
[    3.262036] rcu: Hierarchical RCU implementation.
[    3.262037] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=84.
[    3.262039] 	Rude variant of Tasks RCU enabled.
[    3.262040] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    3.262040] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=84
[    3.264523] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    3.265033] Console: colour dummy device 80x25
[    3.265084] printk: console [tty0] enabled
[    3.265220] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    3.265224] ACPI: Core revision 20200430
[    3.269883] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    3.269972] APIC: Switch to symmetric I/O mode setup
[    3.271457] x2apic enabled
[    3.273163] Switched APIC routing to physical x2apic.
[    3.275150] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    3.275196] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e3306b9ada, max_idle_ns: 440795224413 ns
[    3.275200] Calibrating delay loop (skipped) preset value.. 4190.15 BogoMIPS (lpj=2095078)
[    3.275203] pid_max: default: 86016 minimum: 672
[    3.275447] __memblock_free_late: [0x000000000ffbf000-0x000000000fffffff] efi_free_boot_services+0x15c/0x24c
[    3.275464] __memblock_free_late: [0x000000000ff77000-0x000000000ffbefff] efi_free_boot_services+0x15c/0x24c
[    3.275493] __memblock_free_late: [0x000000000fdf7000-0x000000000fee6fff] efi_free_boot_services+0x15c/0x24c
[    3.275570] __memblock_free_late: [0x000000000ef90000-0x000000000fdf6fff] efi_free_boot_services+0x15c/0x24c
[    3.276425] __memblock_free_late: [0x000000000ef66000-0x000000000ef8ffff] efi_free_boot_services+0x15c/0x24c
[    3.276438] __memblock_free_late: [0x000000000ef48000-0x000000000ef60fff] efi_free_boot_services+0x15c/0x24c
[    3.276444] __memblock_free_late: [0x000000000ef2d000-0x000000000ef3bfff] efi_free_boot_services+0x15c/0x24c
[    3.276454] __memblock_free_late: [0x000000000eee2000-0x000000000ef23fff] efi_free_boot_services+0x15c/0x24c
[    3.276508] __memblock_free_late: [0x000000000e8e0000-0x000000000eee1fff] efi_free_boot_services+0x15c/0x24c
[    3.276756] __memblock_free_late: [0x000000000e74a000-0x000000000e8dffff] efi_free_boot_services+0x15c/0x24c
[    3.276804] __memblock_free_late: [0x000000000e0b1000-0x000000000e0b1fff] efi_free_boot_services+0x15c/0x24c
[    3.276806] __memblock_free_late: [0x000000000df93000-0x000000000df93fff] efi_free_boot_services+0x15c/0x24c
[    3.277223] LSM: Security Framework initializing
[    3.277259] Yama: becoming mindful.
[    3.277288] SELinux:  Initializing.
[    3.373151] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes, vmalloc)
[    3.421444] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc)
[    3.422559] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.424831] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.426277] Disabled fast string operations
[    3.426442] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    3.426442] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    3.426452] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    3.426453] Spectre V2 : Mitigation: Full generic retpoline
[    3.426454] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    3.426454] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    3.426456] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    3.426457] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    3.426462] MDS: Mitigation: Clear CPU buffers
[    3.426839] Freeing SMP alternatives memory: 32K
[    3.428189] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8176 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x4)
[    3.428197] Performance Events: Skylake events, core PMU driver.
[    3.428197] core: CPUID marked event: 'cpu cycles' unavailable
[    3.428197] core: CPUID marked event: 'instructions' unavailable
[    3.428197] core: CPUID marked event: 'bus cycles' unavailable
[    3.428197] core: CPUID marked event: 'cache references' unavailable
[    3.428197] core: CPUID marked event: 'cache misses' unavailable
[    3.428197] core: CPUID marked event: 'branch instructions' unavailable
[    3.428197] core: CPUID marked event: 'branch misses' unavailable
[    3.428197] ... version:                1
[    3.428197] ... bit width:              48
[    3.428197] ... generic registers:      4
[    3.428197] ... value mask:             0000ffffffffffff
[    3.428197] ... max period:             000000007fffffff
[    3.428197] ... fixed-purpose events:   0
[    3.428197] ... event mask:             000000000000000f
[    3.428197] rcu: Hierarchical SRCU implementation.
[    3.428205] NMI watchdog: Perf NMI watchdog permanently disabled
[    3.430022] smp: Bringing up secondary CPUs ...
[    3.430113] x86: Booting SMP configuration:
[    3.430114] .... node  #0, CPUs:        #1
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 1 Converting physical 2 to logical package 1
[    0.010333] smpboot: CPU 1 Converting physical 0 to logical die 1
[    3.431678]   #2
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 2 Converting physical 4 to logical package 2
[    0.010333] smpboot: CPU 2 Converting physical 0 to logical die 2
[    3.432280]   #3
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 3 Converting physical 6 to logical package 3
[    0.010333] smpboot: CPU 3 Converting physical 0 to logical die 3
[    3.433233]   #4
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 4 Converting physical 8 to logical package 4
[    0.010333] smpboot: CPU 4 Converting physical 0 to logical die 4
[    3.434058]   #5
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 5 Converting physical 10 to logical package 5
[    0.010333] smpboot: CPU 5 Converting physical 0 to logical die 5
[    3.434856]   #6
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 6 Converting physical 12 to logical package 6
[    0.010333] smpboot: CPU 6 Converting physical 0 to logical die 6
[    3.435270]   #7
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 7 Converting physical 14 to logical package 7
[    0.010333] smpboot: CPU 7 Converting physical 0 to logical die 7
[    3.436213]   #8
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 8 Converting physical 16 to logical package 8
[    0.010333] smpboot: CPU 8 Converting physical 0 to logical die 8
[    3.437052]   #9
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 9 Converting physical 18 to logical package 9
[    0.010333] smpboot: CPU 9 Converting physical 0 to logical die 9
[    3.437872]  #10
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 10 Converting physical 20 to logical package 10
[    0.010333] smpboot: CPU 10 Converting physical 0 to logical die 10
[    3.438587]  #11
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 11 Converting physical 22 to logical package 11
[    0.010333] smpboot: CPU 11 Converting physical 0 to logical die 11
[    3.439506]  #12
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 12 Converting physical 24 to logical package 12
[    0.010333] smpboot: CPU 12 Converting physical 0 to logical die 12
[    3.440644]  #13
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 13 Converting physical 26 to logical package 13
[    0.010333] smpboot: CPU 13 Converting physical 0 to logical die 13
[    3.441272]  #14
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 14 Converting physical 28 to logical package 14
[    0.010333] smpboot: CPU 14 Converting physical 0 to logical die 14
[    3.442278]  #15
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 15 Converting physical 30 to logical package 15
[    0.010333] smpboot: CPU 15 Converting physical 0 to logical die 15
[    3.442939]  #16
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 16 Converting physical 32 to logical package 16
[    0.010333] smpboot: CPU 16 Converting physical 0 to logical die 16
[    3.443815]  #17
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 17 Converting physical 34 to logical package 17
[    0.010333] smpboot: CPU 17 Converting physical 0 to logical die 17
[    3.444268]  #18
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 18 Converting physical 36 to logical package 18
[    0.010333] smpboot: CPU 18 Converting physical 0 to logical die 18
[    3.444911]  #19
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 19 Converting physical 38 to logical package 19
[    0.010333] smpboot: CPU 19 Converting physical 0 to logical die 19
[    3.445778]  #20
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 20 Converting physical 40 to logical package 20
[    0.010333] smpboot: CPU 20 Converting physical 0 to logical die 20
[    3.446425]  #21
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 21 Converting physical 42 to logical package 21
[    0.010333] smpboot: CPU 21 Converting physical 0 to logical die 21
[    3.447260]  #22
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 22 Converting physical 44 to logical package 22
[    0.010333] smpboot: CPU 22 Converting physical 0 to logical die 22
[    3.447880]  #23
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 23 Converting physical 46 to logical package 23
[    0.010333] smpboot: CPU 23 Converting physical 0 to logical die 23
[    3.448665]  #24
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 24 Converting physical 48 to logical package 24
[    0.010333] smpboot: CPU 24 Converting physical 0 to logical die 24
[    3.449645]  #25
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 25 Converting physical 50 to logical package 25
[    0.010333] smpboot: CPU 25 Converting physical 0 to logical die 25
[    3.450274]  #26
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 26 Converting physical 52 to logical package 26
[    0.010333] smpboot: CPU 26 Converting physical 0 to logical die 26
[    3.450903]  #27
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 27 Converting physical 54 to logical package 27
[    0.010333] smpboot: CPU 27 Converting physical 0 to logical die 27
[    3.451776] .... node  #1, CPUs:   #28
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 28 Converting physical 56 to logical package 28
[    0.010333] smpboot: CPU 28 Converting physical 0 to logical die 28
[    3.452503]  #29
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 29 Converting physical 58 to logical package 29
[    0.010333] smpboot: CPU 29 Converting physical 0 to logical die 29
[    3.453292]  #30
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 30 Converting physical 60 to logical package 30
[    0.010333] smpboot: CPU 30 Converting physical 0 to logical die 30
[    3.454304]  #31
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 31 Converting physical 62 to logical package 31
[    0.010333] smpboot: CPU 31 Converting physical 0 to logical die 31
[    3.455250]  #32
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 32 Converting physical 64 to logical package 32
[    0.010333] smpboot: CPU 32 Converting physical 0 to logical die 32
[    3.455794]  #33
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 33 Converting physical 66 to logical package 33
[    0.010333] smpboot: CPU 33 Converting physical 0 to logical die 33
[    3.456532]  #34
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 34 Converting physical 68 to logical package 34
[    0.010333] smpboot: CPU 34 Converting physical 0 to logical die 34
[    3.457296]  #35
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 35 Converting physical 70 to logical package 35
[    0.010333] smpboot: CPU 35 Converting physical 0 to logical die 35
[    3.457842]  #36
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 36 Converting physical 72 to logical package 36
[    0.010333] smpboot: CPU 36 Converting physical 0 to logical die 36
[    3.458642]  #37
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 37 Converting physical 74 to logical package 37
[    0.010333] smpboot: CPU 37 Converting physical 0 to logical die 37
[    3.459292]  #38
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 38 Converting physical 76 to logical package 38
[    0.010333] smpboot: CPU 38 Converting physical 0 to logical die 38
[    3.460238]  #39
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 39 Converting physical 78 to logical package 39
[    0.010333] smpboot: CPU 39 Converting physical 0 to logical die 39
[    3.460823]  #40
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 40 Converting physical 80 to logical package 40
[    0.010333] smpboot: CPU 40 Converting physical 0 to logical die 40
[    3.461471]  #41
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 41 Converting physical 82 to logical package 41
[    0.010333] smpboot: CPU 41 Converting physical 0 to logical die 41
[    3.462279]  #42
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 42 Converting physical 84 to logical package 42
[    0.010333] smpboot: CPU 42 Converting physical 0 to logical die 42
[    3.462884]  #43
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 43 Converting physical 86 to logical package 43
[    0.010333] smpboot: CPU 43 Converting physical 0 to logical die 43
[    3.463696]  #44
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 44 Converting physical 88 to logical package 44
[    0.010333] smpboot: CPU 44 Converting physical 0 to logical die 44
[    3.464284]  #45
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 45 Converting physical 90 to logical package 45
[    0.010333] smpboot: CPU 45 Converting physical 0 to logical die 45
[    3.464890]  #46
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 46 Converting physical 92 to logical package 46
[    0.010333] smpboot: CPU 46 Converting physical 0 to logical die 46
[    3.465687]  #47
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 47 Converting physical 94 to logical package 47
[    0.010333] smpboot: CPU 47 Converting physical 0 to logical die 47
[    3.466420]  #48
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 48 Converting physical 96 to logical package 48
[    0.010333] smpboot: CPU 48 Converting physical 0 to logical die 48
[    3.467280]  #49
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 49 Converting physical 98 to logical package 49
[    0.010333] smpboot: CPU 49 Converting physical 0 to logical die 49
[    3.467917]  #50
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 50 Converting physical 100 to logical package 50
[    0.010333] smpboot: CPU 50 Converting physical 0 to logical die 50
[    3.468791]  #51
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 51 Converting physical 102 to logical package 51
[    0.010333] smpboot: CPU 51 Converting physical 0 to logical die 51
[    3.469947]  #52
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 52 Converting physical 104 to logical package 52
[    0.010333] smpboot: CPU 52 Converting physical 0 to logical die 52
[    3.470693]  #53
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 53 Converting physical 106 to logical package 53
[    0.010333] smpboot: CPU 53 Converting physical 0 to logical die 53
[    3.471279]  #54
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 54 Converting physical 108 to logical package 54
[    0.010333] smpboot: CPU 54 Converting physical 0 to logical die 54
[    3.471868]  #55
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 55 Converting physical 110 to logical package 55
[    0.010333] smpboot: CPU 55 Converting physical 0 to logical die 55
[    3.472775] .... node  #2, CPUs:   #56
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 56 Converting physical 112 to logical package 56
[    0.010333] smpboot: CPU 56 Converting physical 0 to logical die 56
[    3.473511]  #57
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 57 Converting physical 114 to logical package 57
[    0.010333] smpboot: CPU 57 Converting physical 0 to logical die 57
[    3.474486]  #58
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 58 Converting physical 116 to logical package 58
[    0.010333] smpboot: CPU 58 Converting physical 0 to logical die 58
[    3.475297]  #59
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 59 Converting physical 118 to logical package 59
[    0.010333] smpboot: CPU 59 Converting physical 0 to logical die 59
[    3.475841]  #60
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 60 Converting physical 120 to logical package 60
[    0.010333] smpboot: CPU 60 Converting physical 0 to logical die 60
[    3.476720]  #61
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 61 Converting physical 122 to logical package 61
[    0.010333] smpboot: CPU 61 Converting physical 0 to logical die 61
[    3.477478]  #62
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 62 Converting physical 124 to logical package 62
[    0.010333] smpboot: CPU 62 Converting physical 0 to logical die 62
[    3.478295]  #63
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 63 Converting physical 126 to logical package 63
[    0.010333] smpboot: CPU 63 Converting physical 0 to logical die 63
[    3.479242]  #64
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 64 Converting physical 128 to logical package 64
[    0.010333] smpboot: CPU 64 Converting physical 0 to logical die 64
[    3.479843]  #65
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 65 Converting physical 130 to logical package 65
[    0.010333] smpboot: CPU 65 Converting physical 0 to logical die 65
[    3.480278]  #66
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 66 Converting physical 132 to logical package 66
[    0.010333] smpboot: CPU 66 Converting physical 0 to logical die 66
[    3.480888]  #67
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 67 Converting physical 134 to logical package 67
[    0.010333] smpboot: CPU 67 Converting physical 0 to logical die 67
[    3.481762]  #68
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 68 Converting physical 136 to logical package 68
[    0.010333] smpboot: CPU 68 Converting physical 0 to logical die 68
[    3.482408]  #69
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 69 Converting physical 138 to logical package 69
[    0.010333] smpboot: CPU 69 Converting physical 0 to logical die 69
[    3.483284]  #70
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 70 Converting physical 140 to logical package 70
[    0.010333] smpboot: CPU 70 Converting physical 0 to logical die 70
[    3.483866]  #71
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 71 Converting physical 142 to logical package 71
[    0.010333] smpboot: CPU 71 Converting physical 0 to logical die 71
[    3.484687]  #72
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 72 Converting physical 144 to logical package 72
[    0.010333] smpboot: CPU 72 Converting physical 0 to logical die 72
[    3.485280]  #73
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 73 Converting physical 146 to logical package 73
[    0.010333] smpboot: CPU 73 Converting physical 0 to logical die 73
[    3.486290]  #74
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 74 Converting physical 148 to logical package 74
[    0.010333] smpboot: CPU 74 Converting physical 0 to logical die 74
[    3.486927]  #75
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 75 Converting physical 150 to logical package 75
[    0.010333] smpboot: CPU 75 Converting physical 0 to logical die 75
[    3.487739]  #76
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 76 Converting physical 152 to logical package 76
[    0.010333] smpboot: CPU 76 Converting physical 0 to logical die 76
[    3.488900]  #77
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 77 Converting physical 154 to logical package 77
[    0.010333] smpboot: CPU 77 Converting physical 0 to logical die 77
[    3.489810]  #78
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 78 Converting physical 156 to logical package 78
[    0.010333] smpboot: CPU 78 Converting physical 0 to logical die 78
[    3.490451]  #79
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 79 Converting physical 158 to logical package 79
[    0.010333] smpboot: CPU 79 Converting physical 0 to logical die 79
[    3.491281]  #80
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 80 Converting physical 160 to logical package 80
[    0.010333] smpboot: CPU 80 Converting physical 0 to logical die 80
[    3.492211]  #81
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 81 Converting physical 162 to logical package 81
[    0.010333] smpboot: CPU 81 Converting physical 0 to logical die 81
[    3.492838]  #82
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 82 Converting physical 164 to logical package 82
[    0.010333] smpboot: CPU 82 Converting physical 0 to logical die 82
[    3.493651]  #83
[    0.010333] Disabled fast string operations
[    0.010333] smpboot: CPU 83 Converting physical 166 to logical package 83
[    0.010333] smpboot: CPU 83 Converting physical 0 to logical die 83
[    3.494534] smp: Brought up 3 nodes, 84 CPUs
[    3.494547] smpboot: Max logical packages: 84
[    3.494550] smpboot: Total of 84 processors activated (351973.10 BogoMIPS)
[    3.540214] node 2 initialised, 1976596 pages in 42ms
[    5.354269] node 0 initialised, 87656841 pages in 1856ms
[    5.354268] node 1 initialised, 87660412 pages in 1856ms
[    5.354866] __memblock_free_late: [0x000001033ffa0000-0x000001033ffa1fff] memblock_discard+0x55/0xa6
[    5.396653] devtmpfs: initialized
[    5.396653] x86/mm: Memory block size: 1024MB
[    5.437239] PM: Registering ACPI NVS region [mem 0x00000000-0x00000fff] (4096 bytes)
[    5.437239] PM: Registering ACPI NVS region [mem 0x0ef42000-0x0ef47fff] (24576 bytes)
[    5.437239] PM: Registering ACPI NVS region [mem 0x0ff73000-0x0ff76fff] (16384 bytes)
[    5.438243] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    5.438257] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    5.440206] pinctrl core: initialized pinctrl subsystem
[    5.440206] thermal_sys: Registered thermal governor 'fair_share'
[    5.440206] thermal_sys: Registered thermal governor 'bang_bang'
[    5.440206] thermal_sys: Registered thermal governor 'step_wise'
[    5.440206] thermal_sys: Registered thermal governor 'user_space'
[    5.441206] NET: Registered protocol family 16
[    5.441206] audit: initializing netlink subsys (disabled)
[    5.441228] audit: type=2000 audit(1602521326.167:1): state=initialized audit_enabled=0 res=1
[    5.441370] cpuidle: using governor menu
[    5.441370] ACPI: bus type PCI registered
[    5.441370] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    5.442095] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    5.442098] PCI: not using MMCONFIG
[    5.442099] PCI: Using configuration type 1 for base access
[    5.480231] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    5.480231] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    5.510655] cryptd: max_cpu_qlen set to 1000
[    5.526225] ACPI: Added _OSI(Module Device)
[    5.526225] ACPI: Added _OSI(Processor Device)
[    5.526225] ACPI: Added _OSI(3.0 _SCP Extensions)
[    5.526225] ACPI: Added _OSI(Processor Aggregator Device)
[    5.526225] ACPI: Added _OSI(Linux-Dell-Video)
[    5.526226] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    5.526227] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    5.529935] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    5.530858] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    5.530863] ACPI: BIOS _OSI(Darwin) query ignored
[    5.541385] ACPI: Interpreter enabled
[    5.541399] ACPI: (supports S0 S1 S4 S5)
[    5.541401] ACPI: Using IOAPIC for interrupt routing
[    5.541421] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    5.542008] PCI: MMCONFIG at [mem 0xe0000000-0xe7ffffff] reserved in ACPI motherboard resources
[    5.542013] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    5.542125] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    5.542497] ACPI: Enabled 4 GPEs in block 00 to 0F
[    5.559450] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    5.559456] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    5.559594] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[    5.559720] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    5.560371] PCI host bridge to bus 0000:00
[    5.560373] pci_bus 0000:00: Unknown NUMA node; performance will be reduced
[    5.560375] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    5.560376] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    5.560377] pci_bus 0000:00: root bus resource [mem 0xfef00000-0xffdfffff window]
[    5.560378] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfedfffff window]
[    5.560379] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfed3ffff window]
[    5.560380] pci_bus 0000:00: root bus resource [mem 0xfa300000-0xfebfffff window]
[    5.560380] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfa2fffff pref window]
[    5.560381] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xefffffff window]
[    5.560382] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    5.560382] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    5.560383] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    5.560384] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    5.560385] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    5.560385] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    5.560386] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    5.560387] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    5.560388] pci_bus 0000:00: root bus resource [bus 00-7f]
[    5.560427] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    5.561006] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    5.561489] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    5.562110] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    5.563197] pci 0000:00:07.1: reg 0x20: [io  0x2050-0x205f]
[    5.563197] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    5.563197] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    5.563197] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    5.563197] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    5.563197] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    5.563197] pci 0000:00:07.3: quirk: [io  0x0440-0x047f] claimed by PIIX4 ACPI
[    5.563197] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    5.563197] pci 0000:00:07.7: reg 0x10: [io  0x2000-0x203f]
[    5.563197] pci 0000:00:07.7: reg 0x14: [mem 0xffbf0000-0xffbf1fff 64bit]
[    5.563197] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    5.565197] pci 0000:00:0f.0: reg 0x10: [io  0x2040-0x204f]
[    5.566201] pci 0000:00:0f.0: reg 0x14: [mem 0xf0000000-0xf7ffffff pref]
[    5.568201] pci 0000:00:0f.0: reg 0x18: [mem 0xfb800000-0xfbffffff]
[    5.574201] pci 0000:00:0f.0: reg 0x30: [mem 0xffff8000-0xffffffff pref]
[    5.574234] pci 0000:00:0f.0: BAR 1: assigned to efifb
[    5.574623] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    5.575197] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    5.575197] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    5.575197] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    5.575197] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    5.575197] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    5.578229] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    5.578555] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    5.579293] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    5.579621] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    5.580356] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    5.580683] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    5.581420] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    5.581753] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    5.582493] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    5.582824] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    5.583566] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    5.583903] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    5.584649] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    5.584982] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    5.585725] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    5.586068] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    5.586806] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    5.587135] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    5.587878] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    5.588209] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    5.588958] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    5.589288] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    5.590031] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    5.590351] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    5.591093] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    5.591425] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    5.592175] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    5.592502] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    5.593239] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    5.593569] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    5.594310] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    5.594646] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    5.595389] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    5.595715] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    5.596470] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    5.596795] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    5.597540] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    5.597870] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    5.598605] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    5.598938] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    5.599677] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    5.600006] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    5.600749] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    5.601094] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    5.601833] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    5.602161] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    5.602902] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    5.603232] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    5.603973] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    5.604311] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    5.605056] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    5.605383] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    5.606125] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    5.606446] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    5.607188] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    5.607511] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    5.608246] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    5.608576] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    5.609328] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    5.609705] pci_bus 0000:01: extended config space not accessible
[    5.609749] pci 0000:00:01.0: PCI bridge to [bus 01]
[    5.609927] pci_bus 0000:02: extended config space not accessible
[    5.610126] acpiphp: Slot [32] registered
[    5.610135] acpiphp: Slot [33] registered
[    5.610142] acpiphp: Slot [34] registered
[    5.610152] acpiphp: Slot [35] registered
[    5.610159] acpiphp: Slot [36] registered
[    5.610167] acpiphp: Slot [37] registered
[    5.610180] acpiphp: Slot [38] registered
[    5.610191] acpiphp: Slot [39] registered
[    5.610200] acpiphp: Slot [40] registered
[    5.610212] acpiphp: Slot [41] registered
[    5.610227] acpiphp: Slot [42] registered
[    5.610235] acpiphp: Slot [43] registered
[    5.610242] acpiphp: Slot [44] registered
[    5.610250] acpiphp: Slot [45] registered
[    5.610258] acpiphp: Slot [46] registered
[    5.610267] acpiphp: Slot [47] registered
[    5.610275] acpiphp: Slot [48] registered
[    5.610283] acpiphp: Slot [49] registered
[    5.610291] acpiphp: Slot [50] registered
[    5.610299] acpiphp: Slot [51] registered
[    5.610307] acpiphp: Slot [52] registered
[    5.610314] acpiphp: Slot [53] registered
[    5.610323] acpiphp: Slot [54] registered
[    5.610331] acpiphp: Slot [55] registered
[    5.610338] acpiphp: Slot [56] registered
[    5.610346] acpiphp: Slot [57] registered
[    5.610354] acpiphp: Slot [58] registered
[    5.610361] acpiphp: Slot [59] registered
[    5.610370] acpiphp: Slot [60] registered
[    5.610378] acpiphp: Slot [61] registered
[    5.610386] acpiphp: Slot [62] registered
[    5.610394] acpiphp: Slot [63] registered
[    5.610428] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    5.610446] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    5.610463] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    5.610495] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    5.610496] pci 0000:00:11.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    5.610497] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    5.610498] pci 0000:00:11.0:   bridge window [mem 0xfef00000-0xffdfffff window] (subtractive decode)
[    5.610499] pci 0000:00:11.0:   bridge window [mem 0xfed45000-0xfedfffff window] (subtractive decode)
[    5.610499] pci 0000:00:11.0:   bridge window [mem 0xfec10000-0xfed3ffff window] (subtractive decode)
[    5.610500] pci 0000:00:11.0:   bridge window [mem 0xfa300000-0xfebfffff window] (subtractive decode)
[    5.610501] pci 0000:00:11.0:   bridge window [mem 0xf0000000-0xfa2fffff pref window] (subtractive decode)
[    5.610502] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xefffffff window] (subtractive decode)
[    5.610502] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    5.610503] pci 0000:00:11.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    5.610504] pci 0000:00:11.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    5.610505] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    5.610505] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    5.610506] pci 0000:00:11.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    5.610507] pci 0000:00:11.0:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    5.610507] pci 0000:00:11.0:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    5.610811] pci 0000:03:00.0: [15ad:07c0] type 00 class 0x010700
[    5.613200] pci 0000:03:00.0: reg 0x10: [io  0x4000-0x4007]
[    5.614197] pci 0000:03:00.0: reg 0x14: [mem 0xfea10000-0xfea17fff 64bit]
[    5.615197] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    5.615197] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    5.615197] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    5.615197] pci 0000:00:15.0: PCI bridge to [bus 03]
[    5.615197] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    5.615197] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    5.615197] pci 0000:00:15.1: PCI bridge to [bus 04]
[    5.615197] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    5.615197] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    5.615197] pci 0000:00:15.2: PCI bridge to [bus 05]
[    5.615197] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    5.615197] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    5.615197] pci 0000:00:15.3: PCI bridge to [bus 06]
[    5.615197] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    5.615197] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    5.615197] pci 0000:00:15.4: PCI bridge to [bus 07]
[    5.615197] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    5.615197] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    5.615197] pci 0000:00:15.5: PCI bridge to [bus 08]
[    5.615197] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    5.615197] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    5.615197] pci 0000:00:15.6: PCI bridge to [bus 09]
[    5.615197] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    5.615197] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    5.615197] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    5.615197] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    5.615197] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    5.615197] pci 0000:0b:00.0: [15ad:07b0] type 00 class 0x020000
[    5.615197] pci 0000:0b:00.0: reg 0x10: [mem 0xfe213000-0xfe213fff]
[    5.615197] pci 0000:0b:00.0: reg 0x14: [mem 0xfe212000-0xfe212fff]
[    5.615197] pci 0000:0b:00.0: reg 0x18: [mem 0xfe210000-0xfe211fff]
[    5.615197] pci 0000:0b:00.0: reg 0x1c: [io  0x3000-0x300f]
[    5.615197] pci 0000:0b:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    5.615197] pci 0000:0b:00.0: supports D1 D2
[    5.615197] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.615197] pci 0000:0b:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    5.615197] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    5.615197] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    5.615197] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    5.615197] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    5.615197] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    5.615197] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    5.615197] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    5.615197] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    5.615197] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    5.615197] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    5.615197] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    5.615197] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    5.615197] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    5.615197] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    5.615197] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    5.615197] pci 0000:00:16.5: PCI bridge to [bus 10]
[    5.615197] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    5.615197] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    5.615197] pci 0000:00:16.6: PCI bridge to [bus 11]
[    5.615197] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    5.615197] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    5.615197] pci 0000:00:16.7: PCI bridge to [bus 12]
[    5.615197] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    5.615197] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    5.615197] pci 0000:00:17.0: PCI bridge to [bus 13]
[    5.615197] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    5.615197] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    5.615197] pci 0000:00:17.1: PCI bridge to [bus 14]
[    5.615197] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    5.615197] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    5.615197] pci 0000:00:17.2: PCI bridge to [bus 15]
[    5.615197] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    5.615197] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    5.615197] pci 0000:00:17.3: PCI bridge to [bus 16]
[    5.615197] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    5.615197] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    5.615197] pci 0000:00:17.4: PCI bridge to [bus 17]
[    5.615197] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    5.615197] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    5.615197] pci 0000:00:17.5: PCI bridge to [bus 18]
[    5.615197] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    5.615197] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    5.615197] pci 0000:00:17.6: PCI bridge to [bus 19]
[    5.615197] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    5.615197] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    5.615197] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    5.615197] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    5.615197] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    5.615197] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    5.615197] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    5.615197] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    5.615197] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    5.615197] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    5.615197] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    5.615197] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    5.615197] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    5.615197] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    5.615197] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    5.615197] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    5.615197] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    5.618225] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    5.618258] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    5.618290] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    5.618519] pci 0000:00:18.5: PCI bridge to [bus 20]
[    5.618551] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    5.618583] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    5.618812] pci 0000:00:18.6: PCI bridge to [bus 21]
[    5.618844] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    5.618877] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    5.619108] pci 0000:00:18.7: PCI bridge to [bus 22]
[    5.619141] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    5.619173] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    5.619197] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    5.619197] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    5.619197] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    5.619197] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    5.636397] iommu: Default domain type: Passthrough 
[    5.636397] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[    5.636397] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    5.636397] pci 0000:00:0f.0: vgaarb: bridge control possible
[    5.636397] vgaarb: loaded
[    5.636406] SCSI subsystem initialized
[    5.636436] ACPI: bus type USB registered
[    5.636453] usbcore: registered new interface driver usbfs
[    5.636459] usbcore: registered new interface driver hub
[    5.637565] usbcore: registered new device driver usb
[    5.637589] pps_core: LinuxPPS API ver. 1 registered
[    5.637590] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    5.637592] PTP clock support registered
[    5.638911] EDAC MC: Ver: 3.0.0
[    5.639924] Registered efivars operations
[    5.639924] PCI: Using ACPI for IRQ routing
[    5.642752] PCI: pci_cache_line_size set to 64 bytes
[    5.643441] e820: reserve RAM buffer [mem 0x0e0a1018-0x0fffffff]
[    5.643443] e820: reserve RAM buffer [mem 0x0e0a3018-0x0fffffff]
[    5.643444] e820: reserve RAM buffer [mem 0x0e0a6018-0x0fffffff]
[    5.643445] e820: reserve RAM buffer [mem 0x0ef24000-0x0fffffff]
[    5.643446] e820: reserve RAM buffer [mem 0x0ef3c000-0x0fffffff]
[    5.643447] e820: reserve RAM buffer [mem 0x0ef61000-0x0fffffff]
[    5.643448] e820: reserve RAM buffer [mem 0x0fee7000-0x0fffffff]
[    5.643629] NetLabel: Initializing
[    5.643629] NetLabel:  domain hash size = 128
[    5.643629] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    5.643644] NetLabel:  unlabeled traffic allowed by default
[    5.643670] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    5.643670] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    5.646257] clocksource: Switched to clocksource tsc-early
[    5.664246] VFS: Disk quotas dquot_6.6.0
[    5.664379] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    5.664574] pnp: PnP ACPI init
[    5.664717] system 00:00: [io  0x0440-0x047f] has been reserved
[    5.664718] system 00:00: [io  0x5658-0x5659] has been reserved
[    5.664719] system 00:00: [io  0x5670] has been reserved
[    5.664720] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    5.664725] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    5.664748] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    5.664762] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    5.664774] pnp 00:03: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
[    5.664913] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    5.664916] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    5.665988] system 00:05: [io  0x0400-0x041f] has been reserved
[    5.665989] system 00:05: [mem 0xe0000000-0xe7ffffff] has been reserved
[    5.665990] system 00:05: [mem 0xffc00000-0xffdfffff] could not be reserved
[    5.665992] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    5.666666] pnp: PnP ACPI: found 6 devices
[    5.673769] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    5.673792] pci 0000:00:0f.0: can't claim BAR 6 [mem 0xffff8000-0xffffffff pref]: no compatible bridge window
[    5.673794] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    5.673795] pci 0000:0b:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    5.673801] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    5.673803] pci 0000:00:15.1: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    5.673804] pci 0000:00:15.2: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    5.673805] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    5.673806] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    5.673807] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    5.673807] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    5.673809] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    5.673810] pci 0000:00:16.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    5.673811] pci 0000:00:16.1: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    5.673812] pci 0000:00:16.2: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    5.673813] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    5.673814] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    5.673815] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    5.673815] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    5.673816] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    5.673817] pci 0000:00:17.0: bridge window [io  0x1000-0x0fff] to [bus 13] add_size 1000
[    5.673819] pci 0000:00:17.1: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    5.673820] pci 0000:00:17.2: bridge window [io  0x1000-0x0fff] to [bus 15] add_size 1000
[    5.673821] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    5.673822] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    5.673822] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    5.673823] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    5.673824] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    5.673825] pci 0000:00:18.0: bridge window [io  0x1000-0x0fff] to [bus 1b] add_size 1000
[    5.673825] pci 0000:00:18.1: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
[    5.673826] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    5.673827] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    5.673827] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    5.673828] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    5.673829] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    5.673829] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    5.673851] pci 0000:00:15.0: BAR 15: assigned [mem 0xfef00000-0xff0fffff 64bit pref]
[    5.673855] pci 0000:00:16.0: BAR 15: assigned [mem 0xff100000-0xff2fffff 64bit pref]
[    5.673856] pci 0000:00:0f.0: BAR 6: assigned [mem 0xff300000-0xff307fff pref]
[    5.673857] pci 0000:00:15.1: BAR 13: assigned [io  0x6000-0x6fff]
[    5.673858] pci 0000:00:15.2: BAR 13: assigned [io  0x7000-0x7fff]
[    5.673859] pci 0000:00:15.3: BAR 13: assigned [io  0x8000-0x8fff]
[    5.673859] pci 0000:00:15.4: BAR 13: assigned [io  0x9000-0x9fff]
[    5.673860] pci 0000:00:15.5: BAR 13: assigned [io  0xa000-0xafff]
[    5.673861] pci 0000:00:15.6: BAR 13: assigned [io  0xb000-0xbfff]
[    5.673862] pci 0000:00:15.7: BAR 13: assigned [io  0xc000-0xcfff]
[    5.673862] pci 0000:00:16.1: BAR 13: assigned [io  0xd000-0xdfff]
[    5.673863] pci 0000:00:16.2: BAR 13: assigned [io  0xe000-0xefff]
[    5.673864] pci 0000:00:16.3: BAR 13: assigned [io  0xf000-0xffff]
[    5.673866] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    5.673867] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    5.673868] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    5.673869] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    5.673870] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    5.673870] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    5.673872] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    5.673872] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    5.673873] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    5.673874] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    5.673875] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    5.673875] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    5.673877] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    5.673877] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    5.673878] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    5.673879] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    5.673880] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    5.673880] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    5.673882] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    5.673882] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    5.673883] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    5.673884] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    5.673885] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    5.673885] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    5.673887] pci 0000:00:18.0: BAR 13: no space for [io  size 0x1000]
[    5.673887] pci 0000:00:18.0: BAR 13: failed to assign [io  size 0x1000]
[    5.673888] pci 0000:00:18.1: BAR 13: no space for [io  size 0x1000]
[    5.673889] pci 0000:00:18.1: BAR 13: failed to assign [io  size 0x1000]
[    5.673890] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    5.673891] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    5.673892] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    5.673892] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    5.673893] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    5.673894] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    5.673895] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    5.673896] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    5.673897] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    5.673897] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    5.673898] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    5.673899] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    5.673902] pci 0000:00:18.7: BAR 13: assigned [io  0x6000-0x6fff]
[    5.673903] pci 0000:00:18.6: BAR 13: assigned [io  0x7000-0x7fff]
[    5.673903] pci 0000:00:18.5: BAR 13: assigned [io  0x8000-0x8fff]
[    5.673904] pci 0000:00:18.4: BAR 13: assigned [io  0x9000-0x9fff]
[    5.673905] pci 0000:00:18.3: BAR 13: assigned [io  0xa000-0xafff]
[    5.673906] pci 0000:00:18.2: BAR 13: assigned [io  0xb000-0xbfff]
[    5.673906] pci 0000:00:18.1: BAR 13: assigned [io  0xc000-0xcfff]
[    5.673907] pci 0000:00:18.0: BAR 13: assigned [io  0xd000-0xdfff]
[    5.673908] pci 0000:00:17.7: BAR 13: assigned [io  0xe000-0xefff]
[    5.673909] pci 0000:00:17.6: BAR 13: assigned [io  0xf000-0xffff]
[    5.673910] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    5.673911] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    5.673912] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    5.673912] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    5.673913] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    5.673914] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    5.673915] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    5.673916] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    5.673917] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    5.673917] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    5.673919] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    5.673919] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    5.673920] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    5.673921] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    5.673922] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    5.673922] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    5.673924] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    5.673924] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    5.673925] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    5.673926] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    5.673927] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    5.673927] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    5.673929] pci 0000:00:16.2: BAR 13: no space for [io  size 0x1000]
[    5.673929] pci 0000:00:16.2: BAR 13: failed to assign [io  size 0x1000]
[    5.673930] pci 0000:00:16.1: BAR 13: no space for [io  size 0x1000]
[    5.673931] pci 0000:00:16.1: BAR 13: failed to assign [io  size 0x1000]
[    5.673932] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    5.673933] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    5.673934] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    5.673934] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    5.673935] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    5.673936] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    5.673937] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    5.673938] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    5.673939] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    5.673939] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
[    5.673940] pci 0000:00:15.2: BAR 13: no space for [io  size 0x1000]
[    5.673941] pci 0000:00:15.2: BAR 13: failed to assign [io  size 0x1000]
[    5.673942] pci 0000:00:15.1: BAR 13: no space for [io  size 0x1000]
[    5.673943] pci 0000:00:15.1: BAR 13: failed to assign [io  size 0x1000]
[    5.673944] pci 0000:00:01.0: PCI bridge to [bus 01]
[    5.674005] pci 0000:00:11.0: PCI bridge to [bus 02]
[    5.674012] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    5.674031] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    5.674043] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    5.674068] pci 0000:03:00.0: BAR 6: assigned [mem 0xfea00000-0xfea0ffff pref]
[    5.674068] pci 0000:00:15.0: PCI bridge to [bus 03]
[    5.674075] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    5.674093] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    5.674105] pci 0000:00:15.0:   bridge window [mem 0xfef00000-0xff0fffff 64bit pref]
[    5.674129] pci 0000:00:15.1: PCI bridge to [bus 04]
[    5.674147] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    5.674159] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    5.674183] pci 0000:00:15.2: PCI bridge to [bus 05]
[    5.674204] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    5.674217] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    5.674241] pci 0000:00:15.3: PCI bridge to [bus 06]
[    5.674259] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    5.674271] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    5.674295] pci 0000:00:15.4: PCI bridge to [bus 07]
[    5.674313] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    5.674325] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    5.674349] pci 0000:00:15.5: PCI bridge to [bus 08]
[    5.674367] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    5.674379] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    5.674403] pci 0000:00:15.6: PCI bridge to [bus 09]
[    5.674421] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    5.674433] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    5.674457] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    5.674475] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    5.674487] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    5.674512] pci 0000:0b:00.0: BAR 6: assigned [mem 0xfe200000-0xfe20ffff pref]
[    5.674513] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    5.674519] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    5.674537] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    5.674549] pci 0000:00:16.0:   bridge window [mem 0xff100000-0xff2fffff 64bit pref]
[    5.674573] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    5.674591] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    5.674603] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    5.674627] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    5.674645] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    5.674657] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    5.674681] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    5.674699] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    5.674711] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    5.674735] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    5.674753] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    5.674765] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    5.674789] pci 0000:00:16.5: PCI bridge to [bus 10]
[    5.674807] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    5.674819] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    5.674843] pci 0000:00:16.6: PCI bridge to [bus 11]
[    5.674861] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    5.674873] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    5.674897] pci 0000:00:16.7: PCI bridge to [bus 12]
[    5.674915] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    5.674927] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    5.674951] pci 0000:00:17.0: PCI bridge to [bus 13]
[    5.674969] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    5.674981] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    5.675005] pci 0000:00:17.1: PCI bridge to [bus 14]
[    5.675023] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    5.675035] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    5.675059] pci 0000:00:17.2: PCI bridge to [bus 15]
[    5.675077] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    5.675089] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    5.675113] pci 0000:00:17.3: PCI bridge to [bus 16]
[    5.675131] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    5.675143] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    5.675167] pci 0000:00:17.4: PCI bridge to [bus 17]
[    5.675185] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    5.675197] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    5.675224] pci 0000:00:17.5: PCI bridge to [bus 18]
[    5.675242] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    5.675254] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    5.675278] pci 0000:00:17.6: PCI bridge to [bus 19]
[    5.675284] pci 0000:00:17.6:   bridge window [io  0xf000-0xffff]
[    5.675302] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    5.675314] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    5.675338] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    5.675345] pci 0000:00:17.7:   bridge window [io  0xe000-0xefff]
[    5.675363] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    5.675375] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    5.675399] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    5.675405] pci 0000:00:18.0:   bridge window [io  0xd000-0xdfff]
[    5.675423] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    5.675435] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    5.675459] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    5.675466] pci 0000:00:18.1:   bridge window [io  0xc000-0xcfff]
[    5.675484] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    5.675496] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    5.675520] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    5.675526] pci 0000:00:18.2:   bridge window [io  0xb000-0xbfff]
[    5.675544] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    5.675557] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    5.675580] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    5.675587] pci 0000:00:18.3:   bridge window [io  0xa000-0xafff]
[    5.675605] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    5.675617] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    5.675641] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    5.675647] pci 0000:00:18.4:   bridge window [io  0x9000-0x9fff]
[    5.675665] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    5.675677] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    5.675701] pci 0000:00:18.5: PCI bridge to [bus 20]
[    5.675708] pci 0000:00:18.5:   bridge window [io  0x8000-0x8fff]
[    5.675726] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    5.675738] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    5.675761] pci 0000:00:18.6: PCI bridge to [bus 21]
[    5.675768] pci 0000:00:18.6:   bridge window [io  0x7000-0x7fff]
[    5.675786] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    5.675798] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    5.675822] pci 0000:00:18.7: PCI bridge to [bus 22]
[    5.675828] pci 0000:00:18.7:   bridge window [io  0x6000-0x6fff]
[    5.675846] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    5.675858] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    5.675883] pci_bus 0000:00: resource 4 [io  0x0d00-0xffff window]
[    5.675884] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    5.675884] pci_bus 0000:00: resource 6 [mem 0xfef00000-0xffdfffff window]
[    5.675885] pci_bus 0000:00: resource 7 [mem 0xfed45000-0xfedfffff window]
[    5.675885] pci_bus 0000:00: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    5.675886] pci_bus 0000:00: resource 9 [mem 0xfa300000-0xfebfffff window]
[    5.675886] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    5.675887] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xefffffff window]
[    5.675887] pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
[    5.675888] pci_bus 0000:00: resource 13 [mem 0x000c4000-0x000c7fff window]
[    5.675889] pci_bus 0000:00: resource 14 [mem 0x000c8000-0x000cbfff window]
[    5.675889] pci_bus 0000:00: resource 15 [mem 0x000d4000-0x000d7fff window]
[    5.675890] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000dbfff window]
[    5.675890] pci_bus 0000:00: resource 17 [mem 0x000e4000-0x000e7fff window]
[    5.675891] pci_bus 0000:00: resource 18 [mem 0x000e8000-0x000ebfff window]
[    5.675891] pci_bus 0000:00: resource 19 [mem 0x000ec000-0x000effff window]
[    5.675892] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    5.675893] pci_bus 0000:02: resource 1 [mem 0xfc000000-0xfc9fffff]
[    5.675893] pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf84fffff 64bit pref]
[    5.675894] pci_bus 0000:02: resource 4 [io  0x0d00-0xffff window]
[    5.675894] pci_bus 0000:02: resource 5 [io  0x0000-0x0cf7 window]
[    5.675895] pci_bus 0000:02: resource 6 [mem 0xfef00000-0xffdfffff window]
[    5.675895] pci_bus 0000:02: resource 7 [mem 0xfed45000-0xfedfffff window]
[    5.675896] pci_bus 0000:02: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    5.675896] pci_bus 0000:02: resource 9 [mem 0xfa300000-0xfebfffff window]
[    5.675897] pci_bus 0000:02: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    5.675897] pci_bus 0000:02: resource 11 [mem 0xc0000000-0xefffffff window]
[    5.675898] pci_bus 0000:02: resource 12 [mem 0x000a0000-0x000bffff window]
[    5.675898] pci_bus 0000:02: resource 13 [mem 0x000c4000-0x000c7fff window]
[    5.675899] pci_bus 0000:02: resource 14 [mem 0x000c8000-0x000cbfff window]
[    5.675899] pci_bus 0000:02: resource 15 [mem 0x000d4000-0x000d7fff window]
[    5.675900] pci_bus 0000:02: resource 16 [mem 0x000d8000-0x000dbfff window]
[    5.675901] pci_bus 0000:02: resource 17 [mem 0x000e4000-0x000e7fff window]
[    5.675901] pci_bus 0000:02: resource 18 [mem 0x000e8000-0x000ebfff window]
[    5.675902] pci_bus 0000:02: resource 19 [mem 0x000ec000-0x000effff window]
[    5.675902] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    5.675903] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    5.675903] pci_bus 0000:03: resource 2 [mem 0xfef00000-0xff0fffff 64bit pref]
[    5.675904] pci_bus 0000:04: resource 1 [mem 0xfe900000-0xfe9fffff]
[    5.675904] pci_bus 0000:04: resource 2 [mem 0xfa200000-0xfa2fffff 64bit pref]
[    5.675905] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]
[    5.675905] pci_bus 0000:05: resource 2 [mem 0xfa100000-0xfa1fffff 64bit pref]
[    5.675906] pci_bus 0000:06: resource 1 [mem 0xfe700000-0xfe7fffff]
[    5.675906] pci_bus 0000:06: resource 2 [mem 0xfa000000-0xfa0fffff 64bit pref]
[    5.675907] pci_bus 0000:07: resource 1 [mem 0xfe600000-0xfe6fffff]
[    5.675908] pci_bus 0000:07: resource 2 [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    5.675908] pci_bus 0000:08: resource 1 [mem 0xfe500000-0xfe5fffff]
[    5.675909] pci_bus 0000:08: resource 2 [mem 0xf9e00000-0xf9efffff 64bit pref]
[    5.675909] pci_bus 0000:09: resource 1 [mem 0xfe400000-0xfe4fffff]
[    5.675910] pci_bus 0000:09: resource 2 [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    5.675910] pci_bus 0000:0a: resource 1 [mem 0xfe300000-0xfe3fffff]
[    5.675911] pci_bus 0000:0a: resource 2 [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    5.675911] pci_bus 0000:0b: resource 0 [io  0x3000-0x3fff]
[    5.675912] pci_bus 0000:0b: resource 1 [mem 0xfe200000-0xfe2fffff]
[    5.675912] pci_bus 0000:0b: resource 2 [mem 0xff100000-0xff2fffff 64bit pref]
[    5.675913] pci_bus 0000:0c: resource 1 [mem 0xfe100000-0xfe1fffff]
[    5.675913] pci_bus 0000:0c: resource 2 [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    5.675914] pci_bus 0000:0d: resource 1 [mem 0xfe000000-0xfe0fffff]
[    5.675914] pci_bus 0000:0d: resource 2 [mem 0xf9a00000-0xf9afffff 64bit pref]
[    5.675915] pci_bus 0000:0e: resource 1 [mem 0xfdf00000-0xfdffffff]
[    5.675915] pci_bus 0000:0e: resource 2 [mem 0xf9900000-0xf99fffff 64bit pref]
[    5.675916] pci_bus 0000:0f: resource 1 [mem 0xfde00000-0xfdefffff]
[    5.675916] pci_bus 0000:0f: resource 2 [mem 0xf9800000-0xf98fffff 64bit pref]
[    5.675917] pci_bus 0000:10: resource 1 [mem 0xfdd00000-0xfddfffff]
[    5.675917] pci_bus 0000:10: resource 2 [mem 0xf9700000-0xf97fffff 64bit pref]
[    5.675918] pci_bus 0000:11: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    5.675918] pci_bus 0000:11: resource 2 [mem 0xf9600000-0xf96fffff 64bit pref]
[    5.675919] pci_bus 0000:12: resource 1 [mem 0xfdb00000-0xfdbfffff]
[    5.675919] pci_bus 0000:12: resource 2 [mem 0xf9500000-0xf95fffff 64bit pref]
[    5.675920] pci_bus 0000:13: resource 1 [mem 0xfda00000-0xfdafffff]
[    5.675921] pci_bus 0000:13: resource 2 [mem 0xf9400000-0xf94fffff 64bit pref]
[    5.675921] pci_bus 0000:14: resource 1 [mem 0xfd900000-0xfd9fffff]
[    5.675922] pci_bus 0000:14: resource 2 [mem 0xf9300000-0xf93fffff 64bit pref]
[    5.675922] pci_bus 0000:15: resource 1 [mem 0xfd800000-0xfd8fffff]
[    5.675923] pci_bus 0000:15: resource 2 [mem 0xf9200000-0xf92fffff 64bit pref]
[    5.675923] pci_bus 0000:16: resource 1 [mem 0xfd700000-0xfd7fffff]
[    5.675924] pci_bus 0000:16: resource 2 [mem 0xf9100000-0xf91fffff 64bit pref]
[    5.675924] pci_bus 0000:17: resource 1 [mem 0xfd600000-0xfd6fffff]
[    5.675925] pci_bus 0000:17: resource 2 [mem 0xf9000000-0xf90fffff 64bit pref]
[    5.675925] pci_bus 0000:18: resource 1 [mem 0xfd500000-0xfd5fffff]
[    5.675926] pci_bus 0000:18: resource 2 [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    5.675926] pci_bus 0000:19: resource 0 [io  0xf000-0xffff]
[    5.675927] pci_bus 0000:19: resource 1 [mem 0xfd400000-0xfd4fffff]
[    5.675927] pci_bus 0000:19: resource 2 [mem 0xf8e00000-0xf8efffff 64bit pref]
[    5.675928] pci_bus 0000:1a: resource 0 [io  0xe000-0xefff]
[    5.675929] pci_bus 0000:1a: resource 1 [mem 0xfd300000-0xfd3fffff]
[    5.675929] pci_bus 0000:1a: resource 2 [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    5.675930] pci_bus 0000:1b: resource 0 [io  0xd000-0xdfff]
[    5.675930] pci_bus 0000:1b: resource 1 [mem 0xfd200000-0xfd2fffff]
[    5.675931] pci_bus 0000:1b: resource 2 [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    5.675932] pci_bus 0000:1c: resource 0 [io  0xc000-0xcfff]
[    5.675932] pci_bus 0000:1c: resource 1 [mem 0xfd100000-0xfd1fffff]
[    5.675933] pci_bus 0000:1c: resource 2 [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    5.675933] pci_bus 0000:1d: resource 0 [io  0xb000-0xbfff]
[    5.675934] pci_bus 0000:1d: resource 1 [mem 0xfd000000-0xfd0fffff]
[    5.675934] pci_bus 0000:1d: resource 2 [mem 0xf8a00000-0xf8afffff 64bit pref]
[    5.675935] pci_bus 0000:1e: resource 0 [io  0xa000-0xafff]
[    5.675935] pci_bus 0000:1e: resource 1 [mem 0xfcf00000-0xfcffffff]
[    5.675936] pci_bus 0000:1e: resource 2 [mem 0xf8900000-0xf89fffff 64bit pref]
[    5.675936] pci_bus 0000:1f: resource 0 [io  0x9000-0x9fff]
[    5.675937] pci_bus 0000:1f: resource 1 [mem 0xfce00000-0xfcefffff]
[    5.675937] pci_bus 0000:1f: resource 2 [mem 0xf8800000-0xf88fffff 64bit pref]
[    5.675938] pci_bus 0000:20: resource 0 [io  0x8000-0x8fff]
[    5.675938] pci_bus 0000:20: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    5.675939] pci_bus 0000:20: resource 2 [mem 0xf8700000-0xf87fffff 64bit pref]
[    5.675939] pci_bus 0000:21: resource 0 [io  0x7000-0x7fff]
[    5.675940] pci_bus 0000:21: resource 1 [mem 0xfcc00000-0xfccfffff]
[    5.675940] pci_bus 0000:21: resource 2 [mem 0xf8600000-0xf86fffff 64bit pref]
[    5.675941] pci_bus 0000:22: resource 0 [io  0x6000-0x6fff]
[    5.675941] pci_bus 0000:22: resource 1 [mem 0xfcb00000-0xfcbfffff]
[    5.675942] pci_bus 0000:22: resource 2 [mem 0xf8500000-0xf85fffff 64bit pref]
[    5.676240] NET: Registered protocol family 2
[    5.676589] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    5.676915] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    5.677844] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    5.678060] TCP: Hash tables configured (established 524288 bind 65536)
[    5.678285] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    5.678822] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    5.680400] NET: Registered protocol family 1
[    5.680407] NET: Registered protocol family 44
[    5.680421] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    5.680493] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    5.680729] PCI: CLS 32 bytes, default 64
[    5.680765] Trying to unpack rootfs image as initramfs...
[    6.602590] Freeing initrd memory: 73156K
[    6.602618] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.602619] software IO TLB: mapped [mem 0xbc000000-0xc0000000] (64MB)
[    6.644708] Initialise system trusted keyrings
[    6.644715] Key type blacklist registered
[    6.644836] workingset: timestamp_bits=36 max_order=28 bucket_order=0
[    6.645810] zbud: loaded
[    6.649905] integrity: Platform Keyring initialized
[    6.657742] NET: Registered protocol family 38
[    6.657745] Key type asymmetric registered
[    6.657746] Asymmetric key parser 'x509' registered
[    6.657754] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    6.658357] io scheduler mq-deadline registered
[    6.658359] io scheduler kyber registered
[    6.658409] io scheduler bfq registered
[    6.664931] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    6.665383] pcieport 0000:00:15.0: PME: Signaling with IRQ 24
[    6.665446] pcieport 0000:00:15.0: pciehp: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.666052] pcieport 0000:00:15.1: PME: Signaling with IRQ 25
[    6.666105] pcieport 0000:00:15.1: pciehp: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.666693] pcieport 0000:00:15.2: PME: Signaling with IRQ 26
[    6.666746] pcieport 0000:00:15.2: pciehp: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.667324] pcieport 0000:00:15.3: PME: Signaling with IRQ 27
[    6.667377] pcieport 0000:00:15.3: pciehp: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.667947] pcieport 0000:00:15.4: PME: Signaling with IRQ 28
[    6.668000] pcieport 0000:00:15.4: pciehp: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.668576] pcieport 0000:00:15.5: PME: Signaling with IRQ 29
[    6.668628] pcieport 0000:00:15.5: pciehp: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.669194] pcieport 0000:00:15.6: PME: Signaling with IRQ 30
[    6.669252] pcieport 0000:00:15.6: pciehp: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.669831] pcieport 0000:00:15.7: PME: Signaling with IRQ 31
[    6.669884] pcieport 0000:00:15.7: pciehp: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.670465] pcieport 0000:00:16.0: PME: Signaling with IRQ 32
[    6.670523] pcieport 0000:00:16.0: pciehp: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.671077] pcieport 0000:00:16.1: PME: Signaling with IRQ 33
[    6.671131] pcieport 0000:00:16.1: pciehp: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.671712] pcieport 0000:00:16.2: PME: Signaling with IRQ 34
[    6.671764] pcieport 0000:00:16.2: pciehp: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.672340] pcieport 0000:00:16.3: PME: Signaling with IRQ 35
[    6.672395] pcieport 0000:00:16.3: pciehp: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.672962] pcieport 0000:00:16.4: PME: Signaling with IRQ 36
[    6.673014] pcieport 0000:00:16.4: pciehp: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.673593] pcieport 0000:00:16.5: PME: Signaling with IRQ 37
[    6.673645] pcieport 0000:00:16.5: pciehp: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.674224] pcieport 0000:00:16.6: PME: Signaling with IRQ 38
[    6.674276] pcieport 0000:00:16.6: pciehp: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.674846] pcieport 0000:00:16.7: PME: Signaling with IRQ 39
[    6.674899] pcieport 0000:00:16.7: pciehp: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.675492] pcieport 0000:00:17.0: PME: Signaling with IRQ 40
[    6.675546] pcieport 0000:00:17.0: pciehp: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.676109] pcieport 0000:00:17.1: PME: Signaling with IRQ 41
[    6.676162] pcieport 0000:00:17.1: pciehp: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.676736] pcieport 0000:00:17.2: PME: Signaling with IRQ 42
[    6.676790] pcieport 0000:00:17.2: pciehp: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.677366] pcieport 0000:00:17.3: PME: Signaling with IRQ 43
[    6.677418] pcieport 0000:00:17.3: pciehp: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.677983] pcieport 0000:00:17.4: PME: Signaling with IRQ 44
[    6.678035] pcieport 0000:00:17.4: pciehp: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.678617] pcieport 0000:00:17.5: PME: Signaling with IRQ 45
[    6.678670] pcieport 0000:00:17.5: pciehp: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.679249] pcieport 0000:00:17.6: PME: Signaling with IRQ 46
[    6.679301] pcieport 0000:00:17.6: pciehp: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.680230] pcieport 0000:00:17.7: PME: Signaling with IRQ 47
[    6.680284] pcieport 0000:00:17.7: pciehp: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.680860] pcieport 0000:00:18.0: PME: Signaling with IRQ 48
[    6.680913] pcieport 0000:00:18.0: pciehp: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.681497] pcieport 0000:00:18.1: PME: Signaling with IRQ 49
[    6.681550] pcieport 0000:00:18.1: pciehp: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.682115] pcieport 0000:00:18.2: PME: Signaling with IRQ 50
[    6.682167] pcieport 0000:00:18.2: pciehp: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.682746] pcieport 0000:00:18.3: PME: Signaling with IRQ 51
[    6.682799] pcieport 0000:00:18.3: pciehp: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.683379] pcieport 0000:00:18.4: PME: Signaling with IRQ 52
[    6.683431] pcieport 0000:00:18.4: pciehp: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.684000] pcieport 0000:00:18.5: PME: Signaling with IRQ 53
[    6.684054] pcieport 0000:00:18.5: pciehp: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.684634] pcieport 0000:00:18.6: PME: Signaling with IRQ 54
[    6.684686] pcieport 0000:00:18.6: pciehp: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.685264] pcieport 0000:00:18.7: PME: Signaling with IRQ 55
[    6.685317] pcieport 0000:00:18.7: pciehp: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.685671] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    6.685703] efifb: probing for efifb
[    6.686017] efifb: framebuffer at 0xf0000000, using 3072k, total 3072k
[    6.686018] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    6.686019] efifb: scrolling: redraw
[    6.686020] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    6.686133] Console: switching to colour frame buffer device 128x48
[    6.689096] fb0: EFI VGA frame buffer device
[    6.689108] intel_idle: Please enable MWAIT in BIOS SETUP
[    6.689416] ACPI: AC Adapter [ACAD] (on-line)
[    6.689501] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    6.689555] ACPI: Power Button [PWRF]
[    6.699668] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    6.700554] Non-volatile memory driver v1.3
[    6.712146] rdac: device handler registered
[    6.712277] hp_sw: device handler registered
[    6.712278] emc: device handler registered
[    6.712751] alua: device handler registered
[    6.712841] libphy: Fixed MDIO Bus: probed
[    6.712916] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    6.712918] ehci-pci: EHCI PCI platform driver
[    6.712928] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    6.712930] ohci-pci: OHCI PCI platform driver
[    6.712939] uhci_hcd: USB Universal Host Controller Interface driver
[    6.712981] usbcore: registered new interface driver usbserial_generic
[    6.712984] usbserial: USB Serial support registered for generic
[    6.713028] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    6.715263] serio: i8042 KBD port at 0x60,0x64 irq 1
[    6.715267] serio: i8042 AUX port at 0x60,0x64 irq 12
[    6.715511] mousedev: PS/2 mouse device common for all mice
[    6.736452] rtc_cmos 00:01: registered as rtc0
[    6.736763] rtc_cmos 00:01: setting system clock to 2020-10-12T16:48:47 UTC (1602521327)
[    6.736806] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    6.736849] intel_pstate: CPU model not supported
[    6.736898] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    6.737489] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    6.737910] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    6.738259] EFI Variables Facility v0.08 2004-May-17
[    6.742765] hid: raw HID events driver (C) Jiri Kosina
[    6.742802] usbcore: registered new interface driver usbhid
[    6.742803] usbhid: USB HID core driver
[    6.743308] drop_monitor: Initializing network drop monitor service
[    6.743399] Initializing XFRM netlink socket
[    6.743639] NET: Registered protocol family 10
[    6.744474] Segment Routing with IPv6
[    6.744489] NET: Registered protocol family 17
[    6.744534] mpls_gso: MPLS GSO support
[    6.751531] IPI shorthand broadcast: enabled
[    6.751547] AVX2 version of gcm_enc/dec engaged.
[    6.751547] AES CTR mode by8 optimization enabled
[    6.766519] sched_clock: Marking stable (6757183018, 9333736)->(6952936287, -186419533)
[    6.767390] registered taskstats version 1
[    6.767412] Loading compiled-in X.509 certificates
[    6.794678] Loaded X.509 cert 'Build time autogenerated kernel key: dd19947c60546c816b7d1540c4ea4eeb7441e59d'
[    6.794757] zswap: loaded using pool lzo/zbud
[    6.801986] Key type big_key registered
[    6.804209] Key type encrypted registered
[    6.804535] integrity: Loading X.509 certificate: UEFI:db
[    6.804600] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    6.804601] integrity: Loading X.509 certificate: UEFI:db
[    6.804766] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    6.804766] integrity: Loading X.509 certificate: UEFI:db
[    6.804783] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    6.804784] integrity: Loading X.509 certificate: UEFI:db
[    6.804797] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    6.804976] integrity: Loading X.509 certificate: UEFI:MokListRT
[    6.805149] integrity: Loaded X.509 cert 'Red Hat Secure Boot (CA key 1): 4016841644ce3a810408050766e8f8a29c65f85c'
[    6.805506] ima: No TPM chip found, activating TPM-bypass!
[    6.805509] ima: Allocated hash algorithm: sha1
[    6.805515] ima: No architecture policies found
[    6.805543] evm: Initialising EVM extended attributes:
[    6.805544] evm: security.selinux
[    6.805544] evm: security.ima
[    6.805545] evm: security.capability
[    6.805545] evm: HMAC attrs: 0x1
[    6.812409] Freeing unused decrypted memory: 2040K
[    6.813674] Freeing unused kernel image (initmem) memory: 2332K
[    6.821223] Write protecting the kernel read-only data: 20480k
[    6.822918] Freeing unused kernel image (text/rodata gap) memory: 2040K
[    6.824232] Freeing unused kernel image (rodata/data gap) memory: 1688K
[    6.824403] Run /init as init process
[    6.824404]   with arguments:
[    6.824405]     /init
[    6.824405]     rhgb
[    6.824406]   with environment:
[    6.824407]     HOME=/
[    6.824407]     TERM=linux
[    6.824408]     BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.7.0
[    6.824408]     crashkernel=auto
[    6.846946] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    6.846974] systemd[1]: Detected virtualization vmware.
[    6.846977] systemd[1]: Detected architecture x86-64.
[    6.846979] systemd[1]: Running in initial RAM disk.
[    6.856310] systemd[1]: Set hostname to <localhost.localdomain>.
[    6.904652] random: systemd: uninitialized urandom read (16 bytes read)
[    6.904662] systemd[1]: Reached target Local File Systems.
[    6.904698] random: systemd: uninitialized urandom read (16 bytes read)
[    6.904770] systemd[1]: Listening on Journal Socket (/dev/log).
[    6.904778] random: systemd: uninitialized urandom read (16 bytes read)
[    6.904783] systemd[1]: Reached target Slices.
[    6.904793] systemd[1]: Reached target Timers.
[    6.904852] systemd[1]: Listening on udev Control Socket.
[    7.424421] VMware PVSCSI driver - version 1.0.7.0-k
[    7.425072] vmw_pvscsi: using 64bit dma
[    7.425264] vmw_pvscsi: max_id: 65
[    7.425265] vmw_pvscsi: setting ring_pages to 32
[    7.427092] vmw_pvscsi: enabling reqCallThreshold
[    7.429604] vmw_pvscsi: driver-based request coalescing enabled
[    7.429605] vmw_pvscsi: using MSI-X
[    7.429721] scsi host0: VMware PVSCSI storage adapter rev 2, req/cmp/msg rings: 32/32/1 pages, cmd_per_lun=254
[    7.430152] vmw_pvscsi 0000:03:00.0: VMware PVSCSI rev 2 host #0
[    7.430410] scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     2.0  PQ: 0 ANSI: 6
[    7.432602] VMware vmxnet3 virtual NIC driver - version 1.4.17.0-k-NAPI
[    7.432655] vmxnet3 0000:0b:00.0: # of Tx queues : 8, # of Rx queues : 8
[    7.432694] vmxnet3 0000:0b:00.0: enabling device (0000 -> 0003)
[    7.441243] vmxnet3 0000:0b:00.0 eth0: NIC Link is Up 10000 Mbps
[    7.517362] libata version 3.00 loaded.
[    7.525532] ata_piix 0000:00:07.1: version 2.13
[    7.526928] scsi host1: ata_piix
[    7.527179] scsi host2: ata_piix
[    7.527302] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x2050 irq 14
[    7.527304] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x2058 irq 15
[    7.657253] tsc: Refined TSC clocksource calibration: 2095.082 MHz
[    7.657352] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e330abbade, max_idle_ns: 440795251159 ns
[    7.682385] clocksource: Switched to clocksource tsc
[    7.706248] [drm] DMA map mode: Caching DMA mappings.
[    7.706453] [drm] Capabilities:
[    7.706453] [drm]   Rect copy.
[    7.706454] [drm]   Cursor.
[    7.706454] [drm]   Cursor bypass.
[    7.706454] [drm]   Cursor bypass 2.
[    7.706454] [drm]   8bit emulation.
[    7.706455] [drm]   Alpha cursor.
[    7.706455] [drm]   Extended Fifo.
[    7.706455] [drm]   Multimon.
[    7.706456] [drm]   Pitchlock.
[    7.706456] [drm]   Irq mask.
[    7.706456] [drm]   Display Topology.
[    7.706456] [drm]   GMR.
[    7.706457] [drm]   Traces.
[    7.706457] [drm]   GMR2.
[    7.706457] [drm]   Screen Object 2.
[    7.706457] [drm]   Command Buffers.
[    7.706458] [drm]   Command Buffers 2.
[    7.706458] [drm]   Guest Backed Resources.
[    7.706459] [drm]   DX Features.
[    7.706459] [drm]   HP Command Queue.
[    7.706459] [drm] Capabilities2:
[    7.706460] [drm]   Grow oTable.
[    7.706460] [drm]   IntraSurface copy.
[    7.706461] [drm] Max GMR ids is 64
[    7.706462] [drm] Max number of GMR pages is 65536
[    7.706462] [drm] Max dedicated hypervisor surface memory is 0 kiB
[    7.706463] [drm] Maximum display memory size is 8192 kiB
[    7.706463] [drm] VRAM at 0xf0000000 size is 8192 kiB
[    7.706464] [drm] MMIO at 0xfb800000 size is 256 kiB
[    7.706502] vmwgfx 0000:00:0f.0: BAR 1: can't reserve [mem 0xf0000000-0xf7ffffff pref]
[    7.706503] [drm] It appears like vesafb is loaded. Ignore above error if any.
[    7.706734] [TTM] Zone  kernel: Available graphics memory: 528425124 KiB
[    7.706735] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    7.706736] [TTM] Initializing pool allocator
[    7.706740] [TTM] Initializing DMA pool allocator
[    7.706797] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    7.706868] [drm] Screen Target Display device initialized
[    7.706900] [drm] width 1024
[    7.706905] [drm] height 768
[    7.706911] [drm] bpp 32
[    7.711141] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
[    7.712246] [drm] Using command buffers with DMA pool.
[    7.712253] [drm] Atomic: yes.
[    7.718576] checking generic (f0000000 300000) vs hw (f0000000 800000)
[    7.718577] fb0: switching to svgadrmfb from EFI VGA
[    7.718801] Console: switching to colour dummy device 80x25
[    7.719222] fbcon: svgadrmfb (fb0) is primary device
[    7.720316] Console: switching to colour frame buffer device 128x48
[    7.733234] [drm] Initialized vmwgfx 2.18.0 20200114 for 0000:00:0f.0 on minor 0
[    7.738406] vmxnet3 0000:0b:00.0 ens192: renamed from eth0
[    7.755496] sd 0:0:0:0: [sda] 41943040 512-byte logical blocks: (21.5 GB/20.0 GiB)
[    7.755537] sd 0:0:0:0: [sda] Write Protect is off
[    7.755538] sd 0:0:0:0: [sda] Mode Sense: 61 00 00 00
[    7.755570] sd 0:0:0:0: [sda] Cache data unavailable
[    7.755571] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    7.768372]  sda: sda1 sda2
[    7.769817] sd 0:0:0:0: [sda] Attached SCSI disk
[    7.893576] random: fast init done
[    7.999158] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    8.194943] random: crng init done
[    8.194945] random: 7 urandom warning(s) missed due to ratelimiting
[    8.316626] systemd-journald[736]: Received SIGTERM from PID 1 (systemd).
[    8.353271] printk: systemd: 22 output lines suppressed due to ratelimiting
[    8.460211] SELinux:  Runtime disable is deprecated, use selinux=0 on the kernel cmdline.
[    8.460295] SELinux:  Disabled at runtime.
[    8.497290] audit: type=1404 audit(1602521329.259:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1
[    8.539070] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    8.539089] systemd[1]: Detected virtualization vmware.
[    8.539093] systemd[1]: Detected architecture x86-64.
[    8.539788] systemd[1]: Set hostname to <localhost.localdomain>.
[    8.604986] systemd[1]: Configuration file /usr/lib/systemd/system/rc-local.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    8.687313] systemd[1]: Stopped Switch Root.
[    8.687514] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[    8.687549] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    8.687576] systemd[1]: Stopped Journal Service.
[    8.688204] systemd[1]: Starting Journal Service...
[    8.711907] EXT4-fs (sda2): re-mounted. Opts: (null)
[    8.922270] systemd-journald[4279]: Received request to flush runtime journal from PID 1
[    9.116462] piix4_smbus 0000:00:07.3: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
[    9.130035] vmw_vmci 0000:00:07.7: enabling device (0000 -> 0003)
[    9.132520] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x12000, irq 16
[    9.132598] vmw_vmci 0000:00:07.7: Using capabilities 0x1c
[    9.135519] Guest personality initialized and is active
[    9.137808] VMCI host device registered (name=vmci, major=10, minor=61)
[    9.137809] Initialized host personality
[    9.147391] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    9.160335] NET: Registered protocol family 40
[    9.198847] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    9.631121] vmxnet3 0000:0b:00.0 ens192: intr type 3, mode 0, 9 vectors allocated
[    9.632082] vmxnet3 0000:0b:00.0 ens192: NIC Link is Up 10000 Mbps

[-- Attachment #3: without_commit_dmesg.log --]
[-- Type: application/octet-stream, Size: 194466 bytes --]

[    0.000000] Linux version 5.7.0 (root@w1-hs1-mwenig-dhcp-215.eng.vmware.com) (gcc version 8.3.1 20190507 (Red Hat 8.3.1-4) (GCC), GNU ld version 2.30-58.el8) #1 SMP Thu Jul 23 08:11:10 EDT 2020
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.7.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet memblock=debug
[    0.000000] Disabled fast string operations
[    0.000000] ------------[ cut here ]------------
[    0.000000] XSAVE consistency problem, dumping leaves
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/fpu/xstate.c:646 fpu__init_system_xstate+0x3d0/0x7e5
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0 #1
[    0.000000] RIP: 0010:fpu__init_system_xstate+0x3d0/0x7e5
[    0.000000] Code: 85 78 fd ff ff 44 3b 2d b6 f4 21 00 74 2c 80 3d 58 3d bf ff 00 75 15 48 c7 c7 80 0d d0 82 c6 05 48 3d bf ff 01 e8 4b af 6e fe <0f> 0b 83 3d 07 e3 a3 ff 00 74 05 e8 c1 97 64 fe 48 8b 35 99 19 c2
[    0.000000] RSP: 0000:ffffffff83003e30 EFLAGS: 00010086 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: 0000000000000a88 RCX: 0000000000000029
[    0.000000] RDX: 0000000000000009 RSI: ffffffff838759e0 RDI: ffffffff8387358c
[    0.000000] RBP: 000000000000000a R08: 657661656c20676e R09: 73657661656c2067
[    0.000000] R10: 656c626f72702079 R11: 69706d7564202c6d R12: 0000000000000008
[    0.000000] R13: 0000000000000988 R14: 0000000000000a88 R15: 0000000000000001
[    0.000000] FS:  0000000000000000(0000) GS:ffffffff835ab000(0000) knlGS:0000000000000000
[    0.000000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: ffff88800e0b0000 CR3: 00000029b5840000 CR4: 00000000000406a0
[    0.000000] Call Trace:
[    0.000000]  ? 0xffffffff81c00000
[    0.000000]  ? fpu__init_system+0x1b1/0x1dd
[    0.000000]  ? 0xffffffff81c00000
[    0.000000]  ? early_cpu_init+0x31c/0x341
[    0.000000]  ? setup_arch+0xca/0xd0b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64+0xb6/0xc0
[    0.000000] random: get_random_bytes called from print_oops_end_marker+0x26/0x40 with crng_init=0
[    0.000000] ---[ end trace fc9f1898a7ff13bf ]---
[    0.000000] CPUID[0d, 00]: eax=000002e7 ebx=00000a88 ecx=00000a88 edx=00000000
[    0.000000] CPUID[0d, 01]: eax=0000000f ebx=00000a88 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 02]: eax=00000100 ebx=00000240 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 03]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 04]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 05]: eax=00000040 ebx=00000440 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 06]: eax=00000200 ebx=00000480 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 07]: eax=00000400 ebx=00000680 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 08]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 09]: eax=00000008 ebx=00000a80 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0d]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0e]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0f]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 10]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 11]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 12]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 13]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2696 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000ef23fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] memblock_reserve: [0x000000000e0a0018-0x000000000e0a0767] efi_memblock_x86_reserve_range+0x15b/0x184
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] memblock_reserve: [0x000000000e0a6018-0x000000000e0ae057] setup_arch+0x3df/0xd0b
[    0.000000] memblock_reserve: [0x000000000e0a3018-0x000000000e0a5057] setup_arch+0x3df/0xd0b
[    0.000000] memblock_reserve: [0x000000000e0a1018-0x000000000e0a2857] setup_arch+0x3df/0xd0b
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000e0a1017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a1018-0x000000000e0a2857] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a2858-0x000000000e0a3017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a3018-0x000000000e0a5057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a5058-0x000000000e0a6017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a6018-0x000000000e0ae057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0ae058-0x000000000ef23fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] efi: EFI v2.31 by VMware, Inc.
[    0.000000] efi: SMBIOS=0xef42000 ACPI 2.0=0xff66000 MEMATTR=0xe564698 
[    0.000000] memblock_reserve: [0x000000000e564698-0x000000000e564b57] efi_memattr_init+0x75/0x8f
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.000000] vmware: hypercall mode: 0x02
[    0.000000] Hypervisor detected: VMware
[    0.000000] vmware: TSC freq read from hypervisor : 2095.078 MHz
[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[    0.000000] vmware: using clock offset of 7393393348 ns
[    0.000010] tsc: Detected 2095.078 MHz processor
[    0.004814] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.004814] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.004819] last_pfn = 0x10340000 max_arch_pfn = 0x400000000
[    0.004854] MTRR default type: uncachable
[    0.004854] MTRR fixed ranges enabled:
[    0.004855]   00000-9FFFF write-back
[    0.004855]   A0000-FFFFF uncachable
[    0.004856] MTRR variable ranges enabled:
[    0.004857]   0 base 000000000000 mask 1E0000000000 write-back
[    0.004858]   1 base 0000C0000000 mask 1FFFC0000000 uncachable
[    0.004858]   2 disabled
[    0.004858]   3 disabled
[    0.004858]   4 disabled
[    0.004859]   5 disabled
[    0.004859]   6 disabled
[    0.004859]   7 disabled
[    0.004870] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.004889] total RAM covered: 2096128M
[    0.004945]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004946]  gran_size: 64K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004946]  gran_size: 64K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004947]  gran_size: 64K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004947]  gran_size: 64K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004948]  gran_size: 64K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004948]  gran_size: 64K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004949]  gran_size: 64K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004950]  gran_size: 64K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004950]  gran_size: 64K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004951]  gran_size: 64K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004951]  gran_size: 64K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004952]  gran_size: 64K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004952]  gran_size: 64K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004953]  gran_size: 64K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004953]  gran_size: 64K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004954]  gran_size: 128K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004954]  gran_size: 128K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004955]  gran_size: 128K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004955]  gran_size: 128K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004956]  gran_size: 128K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004956]  gran_size: 128K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004957]  gran_size: 128K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004958]  gran_size: 128K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004958]  gran_size: 128K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004959]  gran_size: 128K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004959]  gran_size: 128K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004960]  gran_size: 128K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004960]  gran_size: 128K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004961]  gran_size: 128K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004961]  gran_size: 128K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004962]  gran_size: 256K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004962]  gran_size: 256K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004963]  gran_size: 256K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004963]  gran_size: 256K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004964]  gran_size: 256K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004964]  gran_size: 256K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004965]  gran_size: 256K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004965]  gran_size: 256K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004966]  gran_size: 256K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004966]  gran_size: 256K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004967]  gran_size: 256K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004967]  gran_size: 256K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004968]  gran_size: 256K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004969]  gran_size: 256K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004969]  gran_size: 512K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.004970]  gran_size: 512K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004970]  gran_size: 512K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004971]  gran_size: 512K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004971]  gran_size: 512K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004972]  gran_size: 512K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004972]  gran_size: 512K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004973]  gran_size: 512K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004973]  gran_size: 512K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004974]  gran_size: 512K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004974]  gran_size: 512K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004975]  gran_size: 512K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004975]  gran_size: 512K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004976]  gran_size: 1M 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004976]  gran_size: 1M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004977]  gran_size: 1M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004978]  gran_size: 1M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004978]  gran_size: 1M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004979]  gran_size: 1M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004979]  gran_size: 1M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004980]  gran_size: 1M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004980]  gran_size: 1M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004981]  gran_size: 1M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004981]  gran_size: 1M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004982]  gran_size: 1M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004982]  gran_size: 2M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004983]  gran_size: 2M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004983]  gran_size: 2M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004984]  gran_size: 2M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004984]  gran_size: 2M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004985]  gran_size: 2M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004985]  gran_size: 2M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004986]  gran_size: 2M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004986]  gran_size: 2M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004987]  gran_size: 2M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004987]  gran_size: 2M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004988]  gran_size: 4M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004989]  gran_size: 4M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004989]  gran_size: 4M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004990]  gran_size: 4M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004990]  gran_size: 4M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004991]  gran_size: 4M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004991]  gran_size: 4M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004992]  gran_size: 4M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004992]  gran_size: 4M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004993]  gran_size: 4M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004993]  gran_size: 8M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004994]  gran_size: 8M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004994]  gran_size: 8M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004995]  gran_size: 8M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004995]  gran_size: 8M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004996]  gran_size: 8M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004996]  gran_size: 8M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004997]  gran_size: 8M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004997]  gran_size: 8M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.004998]  gran_size: 16M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004998]  gran_size: 16M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004999]  gran_size: 16M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.004999]  gran_size: 16M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005000]  gran_size: 16M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005000]  gran_size: 16M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005001]  gran_size: 16M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005002]  gran_size: 16M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005002]  gran_size: 32M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005003]  gran_size: 32M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005003]  gran_size: 32M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005004]  gran_size: 32M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005004]  gran_size: 32M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005005]  gran_size: 32M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005005]  gran_size: 32M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005006]  gran_size: 64M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005006]  gran_size: 64M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005007]  gran_size: 64M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005007]  gran_size: 64M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005008]  gran_size: 64M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005008]  gran_size: 64M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005009]  gran_size: 128M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005009]  gran_size: 128M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005010]  gran_size: 128M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005010]  gran_size: 128M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005011]  gran_size: 128M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005012]  gran_size: 256M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005012]  gran_size: 256M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005013]  gran_size: 256M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005013]  gran_size: 256M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005014]  gran_size: 512M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.005014]  gran_size: 512M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005015]  gran_size: 512M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005015]  gran_size: 1G 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005016]  gran_size: 1G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.005016]  gran_size: 2G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1537G
[    0.005017] mtrr_cleanup: can not find optimal value
[    0.005017] please specify mtrr_gran_size/mtrr_chunk_size
[    0.005028] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.005032] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
[    0.010936] memblock_reserve: [0x00000029b6000000-0x00000029b600efff] setup_arch+0x624/0xd0b
[    0.010939] memblock_add: [0x0000000000001000-0x000000000009ffff] e820__memblock_setup+0x65/0x8b
[    0.010940] memblock_add: [0x0000000000100000-0x000000000e0a1017] e820__memblock_setup+0x65/0x8b
[    0.010941] memblock_add: [0x000000000e0a1018-0x000000000e0a2857] e820__memblock_setup+0x65/0x8b
[    0.010942] memblock_add: [0x000000000e0a2858-0x000000000e0a3017] e820__memblock_setup+0x65/0x8b
[    0.010942] memblock_add: [0x000000000e0a3018-0x000000000e0a5057] e820__memblock_setup+0x65/0x8b
[    0.010943] memblock_add: [0x000000000e0a5058-0x000000000e0a6017] e820__memblock_setup+0x65/0x8b
[    0.010944] memblock_add: [0x000000000e0a6018-0x000000000e0ae057] e820__memblock_setup+0x65/0x8b
[    0.010945] memblock_add: [0x000000000e0ae058-0x000000000ef23fff] e820__memblock_setup+0x65/0x8b
[    0.010946] memblock_add: [0x000000000ef2d000-0x000000000ef3bfff] e820__memblock_setup+0x65/0x8b
[    0.010947] memblock_add: [0x000000000ef48000-0x000000000ef60fff] e820__memblock_setup+0x65/0x8b
[    0.010948] memblock_add: [0x000000000ef66000-0x000000000fee6fff] e820__memblock_setup+0x65/0x8b
[    0.010949] memblock_add: [0x000000000ff77000-0x00000000bfffffff] e820__memblock_setup+0x65/0x8b
[    0.010950] memblock_add: [0x0000000100000000-0x000000fcffffffff] e820__memblock_setup+0x65/0x8b
[    0.010951] memblock_add: [0x0000010000000000-0x000001033fffffff] e820__memblock_setup+0x65/0x8b
[    0.010951] MEMBLOCK configuration:
[    0.010952]  memory size = 0x000000ffffef5000 reserved size = 0x000000000698e4d0
[    0.010952]  memory.cnt  = 0x8
[    0.010953]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes flags: 0x0
[    0.010954]  memory[0x1]	[0x0000000000100000-0x000000000ef23fff], 0x000000000ee24000 bytes flags: 0x0
[    0.010954]  memory[0x2]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes flags: 0x0
[    0.010954]  memory[0x3]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes flags: 0x0
[    0.010955]  memory[0x4]	[0x000000000ef66000-0x000000000fee6fff], 0x0000000000f81000 bytes flags: 0x0
[    0.010955]  memory[0x5]	[0x000000000ff77000-0x00000000bfffffff], 0x00000000b0089000 bytes flags: 0x0
[    0.010956]  memory[0x6]	[0x0000000100000000-0x000000fcffffffff], 0x000000fc00000000 bytes flags: 0x0
[    0.010956]  memory[0x7]	[0x0000010000000000-0x000001033fffffff], 0x0000000340000000 bytes flags: 0x0
[    0.010957]  reserved.cnt  = 0x8
[    0.010957]  reserved[0x0]	[0x0000000000000000-0x0000000000000fff], 0x0000000000001000 bytes flags: 0x0
[    0.010958]  reserved[0x1]	[0x000000000663a000-0x000000000adabfff], 0x0000000004772000 bytes flags: 0x0
[    0.010958]  reserved[0x2]	[0x000000000e0a0018-0x000000000e0a0767], 0x0000000000000750 bytes flags: 0x0
[    0.010959]  reserved[0x3]	[0x000000000e0a1018-0x000000000e0a2857], 0x0000000000001840 bytes flags: 0x0
[    0.010959]  reserved[0x4]	[0x000000000e0a3018-0x000000000e0a5057], 0x0000000000002040 bytes flags: 0x0
[    0.010960]  reserved[0x5]	[0x000000000e0a6018-0x000000000e0ae057], 0x0000000000008040 bytes flags: 0x0
[    0.010960]  reserved[0x6]	[0x000000000e564698-0x000000000e564b57], 0x00000000000004c0 bytes flags: 0x0
[    0.010961]  reserved[0x7]	[0x00000029b3e00000-0x00000029b600efff], 0x000000000220f000 bytes flags: 0x0
[    0.010962] memblock_reserve: [0x000000000009f000-0x00000000000fffff] setup_arch+0x648/0xd0b
[    0.010963] memblock_reserve: [0x000000000df93000-0x000000000df93fff] efi_reserve_boot_services+0x85/0xd0
[    0.010964] memblock_reserve: [0x000000000e0b1000-0x000000000e0b1fff] efi_reserve_boot_services+0x85/0xd0
[    0.010966] memblock_reserve: [0x000000000e74a000-0x000000000e8dffff] efi_reserve_boot_services+0x85/0xd0
[    0.010966] memblock_reserve: [0x000000000e8e0000-0x000000000eee1fff] efi_reserve_boot_services+0x85/0xd0
[    0.010967] memblock_reserve: [0x000000000eee2000-0x000000000ef23fff] efi_reserve_boot_services+0x85/0xd0
[    0.010968] memblock_reserve: [0x000000000ef2d000-0x000000000ef3bfff] efi_reserve_boot_services+0x85/0xd0
[    0.010969] memblock_reserve: [0x000000000ef48000-0x000000000ef60fff] efi_reserve_boot_services+0x85/0xd0
[    0.010970] memblock_reserve: [0x000000000ef66000-0x000000000ef8ffff] efi_reserve_boot_services+0x85/0xd0
[    0.010971] memblock_reserve: [0x000000000ef90000-0x000000000fdf6fff] efi_reserve_boot_services+0x85/0xd0
[    0.010972] memblock_reserve: [0x000000000fdf7000-0x000000000fee6fff] efi_reserve_boot_services+0x85/0xd0
[    0.010973] memblock_reserve: [0x000000000ff77000-0x000000000ffbefff] efi_reserve_boot_services+0x85/0xd0
[    0.010974] memblock_reserve: [0x000000000ffbf000-0x000000000fffffff] efi_reserve_boot_services+0x85/0xd0
[    0.010976] memblock_reserve: [0x0000000000099000-0x000000000009efff] reserve_real_mode+0x6f/0x88
[    0.010977] memblock_reserve: [0x0000000000000000-0x00000000000fffff] crash_reserve_low_1M+0x2c/0x39
[    0.010978] kexec: Reserving the low 1M of memory for crashkernel
[    0.010994] memblock_reserve: [0x0000000000000000-0x000000000000ffff] setup_arch+0x688/0xd0b
[    0.010999] Using GB pages for direct mapping
[    0.011317] memblock_reserve: [0x000001033ffff000-0x000001033fffffff] alloc_low_pages+0x163/0x180
[    0.011957] Secure boot disabled
[    0.011957] RAMDISK: [mem 0x0663a000-0x0adabfff]
[    0.011969] ACPI: Early table checksum verification disabled
[    0.011971] ACPI: RSDP 0x000000000FF66000 000024 (v02 VMWARE)
[    0.011973] ACPI: XSDT 0x000000000FF66064 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.011976] ACPI: SRAT 0x000000000FF660C0 000660 (v03 VMWARE EFISRAT  06040001 VMW  000007CE)
[    0.011978] ACPI: FACP 0x000000000FF7252C 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.011981] ACPI: DSDT 0x000000000FF66720 00BE0C (v01 PTLTD  Custom   00000000 INTL 20130823)
[    0.011982] ACPI: FACS 0x000000000FF76000 000040
[    0.011984] ACPI: FACS 0x000000000FF76000 000040
[    0.011985] ACPI: APIC 0x000000000FF72694 0004DA (v03 VMWARE EFIAPIC  06040001 VMW  000007CE)
[    0.011987] ACPI: MCFG 0x000000000FF72B6E 00003C (v01 VMWARE EFIMCFG  06040001 VMW  000007CE)
[    0.011988] ACPI: HPET 0x000000000FF72BAA 000038 (v01 VMWARE VMW HPET 00000000 VMW  00000000)
[    0.011989] ACPI: WAET 0x000000000FF72BE2 000028 (v01 VMWARE VMW WAET 06040001 VMW  00000001)
[    0.011991] ACPI: WSMT 0x000000000FF72C0A 000028 (v01 VMWARE VMW WSMT 06040001 VMW  00000001)
[    0.011995] ACPI: Local APIC address 0xfee00000
[    0.012024] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.012025] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.012026] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.012026] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.012027] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.012028] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.012028] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.012029] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.012030] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.012030] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.012031] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.012032] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.012032] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.012033] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.012034] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.012034] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[    0.012035] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.012036] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.012036] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.012037] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.012037] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.012038] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.012039] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[    0.012040] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[    0.012040] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[    0.012041] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.012041] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.012042] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.012043] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.012044] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.012044] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[    0.012045] SRAT: PXM 1 -> APIC 0x3e -> Node 1
[    0.012046] SRAT: PXM 1 -> APIC 0x40 -> Node 1
[    0.012046] SRAT: PXM 1 -> APIC 0x42 -> Node 1
[    0.012047] SRAT: PXM 1 -> APIC 0x44 -> Node 1
[    0.012048] SRAT: PXM 1 -> APIC 0x46 -> Node 1
[    0.012048] SRAT: PXM 1 -> APIC 0x48 -> Node 1
[    0.012049] SRAT: PXM 1 -> APIC 0x4a -> Node 1
[    0.012050] SRAT: PXM 1 -> APIC 0x4c -> Node 1
[    0.012050] SRAT: PXM 1 -> APIC 0x4e -> Node 1
[    0.012051] SRAT: PXM 1 -> APIC 0x50 -> Node 1
[    0.012052] SRAT: PXM 1 -> APIC 0x52 -> Node 1
[    0.012052] SRAT: PXM 1 -> APIC 0x54 -> Node 1
[    0.012053] SRAT: PXM 1 -> APIC 0x56 -> Node 1
[    0.012053] SRAT: PXM 1 -> APIC 0x58 -> Node 1
[    0.012054] SRAT: PXM 1 -> APIC 0x5a -> Node 1
[    0.012055] SRAT: PXM 1 -> APIC 0x5c -> Node 1
[    0.012055] SRAT: PXM 1 -> APIC 0x5e -> Node 1
[    0.012056] SRAT: PXM 1 -> APIC 0x60 -> Node 1
[    0.012057] SRAT: PXM 1 -> APIC 0x62 -> Node 1
[    0.012057] SRAT: PXM 1 -> APIC 0x64 -> Node 1
[    0.012058] SRAT: PXM 1 -> APIC 0x66 -> Node 1
[    0.012059] SRAT: PXM 1 -> APIC 0x68 -> Node 1
[    0.012059] SRAT: PXM 1 -> APIC 0x6a -> Node 1
[    0.012060] SRAT: PXM 1 -> APIC 0x6c -> Node 1
[    0.012061] SRAT: PXM 1 -> APIC 0x6e -> Node 1
[    0.012062] SRAT: PXM 2 -> APIC 0x70 -> Node 2
[    0.012062] SRAT: PXM 2 -> APIC 0x72 -> Node 2
[    0.012063] SRAT: PXM 2 -> APIC 0x74 -> Node 2
[    0.012063] SRAT: PXM 2 -> APIC 0x76 -> Node 2
[    0.012064] SRAT: PXM 2 -> APIC 0x78 -> Node 2
[    0.012065] SRAT: PXM 2 -> APIC 0x7a -> Node 2
[    0.012065] SRAT: PXM 2 -> APIC 0x7c -> Node 2
[    0.012066] SRAT: PXM 2 -> APIC 0x7e -> Node 2
[    0.012067] SRAT: PXM 2 -> APIC 0x80 -> Node 2
[    0.012067] SRAT: PXM 2 -> APIC 0x82 -> Node 2
[    0.012068] SRAT: PXM 2 -> APIC 0x84 -> Node 2
[    0.012069] SRAT: PXM 2 -> APIC 0x86 -> Node 2
[    0.012069] SRAT: PXM 2 -> APIC 0x88 -> Node 2
[    0.012070] SRAT: PXM 2 -> APIC 0x8a -> Node 2
[    0.012071] SRAT: PXM 2 -> APIC 0x8c -> Node 2
[    0.012071] SRAT: PXM 2 -> APIC 0x8e -> Node 2
[    0.012072] SRAT: PXM 2 -> APIC 0x90 -> Node 2
[    0.012073] SRAT: PXM 2 -> APIC 0x92 -> Node 2
[    0.012073] SRAT: PXM 2 -> APIC 0x94 -> Node 2
[    0.012074] SRAT: PXM 2 -> APIC 0x96 -> Node 2
[    0.012075] SRAT: PXM 2 -> APIC 0x98 -> Node 2
[    0.012075] SRAT: PXM 2 -> APIC 0x9a -> Node 2
[    0.012076] SRAT: PXM 2 -> APIC 0x9c -> Node 2
[    0.012077] SRAT: PXM 2 -> APIC 0x9e -> Node 2
[    0.012077] SRAT: PXM 2 -> APIC 0xa0 -> Node 2
[    0.012078] SRAT: PXM 2 -> APIC 0xa2 -> Node 2
[    0.012078] SRAT: PXM 2 -> APIC 0xa4 -> Node 2
[    0.012079] SRAT: PXM 2 -> APIC 0xa6 -> Node 2
[    0.012082] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.012083] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[    0.012084] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x55ffffffff]
[    0.012085] ACPI: SRAT: Node 1 PXM 1 [mem 0x5600000000-0xaaffffffff]
[    0.012086] ACPI: SRAT: Node 2 PXM 2 [mem 0xab00000000-0xfcffffffff]
[    0.012087] ACPI: SRAT: Node 2 PXM 2 [mem 0x10000000000-0x1033fffffff]
[    0.012089] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xbfffffff] -> [mem 0x00000000-0xbfffffff]
[    0.012091] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x55ffffffff] -> [mem 0x00000000-0x55ffffffff]
[    0.012092] NUMA: Node 2 [mem 0xab00000000-0xfcffffffff] + [mem 0x10000000000-0x1033fffffff] -> [mem 0xab00000000-0x1033fffffff]
[    0.012107] memblock_reserve: [0x00000055fffd6000-0x00000055ffffffff] memblock_alloc_range_nid+0xad/0x11b
[    0.012108] NODE_DATA(0) allocated [mem 0x55fffd6000-0x55ffffffff]
[    0.012467] memblock_reserve: [0x000000aafffd6000-0x000000aaffffffff] memblock_alloc_range_nid+0xad/0x11b
[    0.012467] NODE_DATA(1) allocated [mem 0xaafffd6000-0xaaffffffff]
[    0.013073] memblock_reserve: [0x000001033ffd5000-0x000001033fffefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013074] NODE_DATA(2) allocated [mem 0x1033ffd5000-0x1033fffefff]
[    0.013080] MEMBLOCK configuration:
[    0.013081]  memory size = 0x000000ffffef5000 reserved size = 0x000000000831a4d0
[    0.013081]  memory.cnt  = 0xa
[    0.013082]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes on node 0 flags: 0x0
[    0.013083]  memory[0x1]	[0x0000000000100000-0x000000000ef23fff], 0x000000000ee24000 bytes on node 0 flags: 0x0
[    0.013083]  memory[0x2]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes on node 0 flags: 0x0
[    0.013084]  memory[0x3]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes on node 0 flags: 0x0
[    0.013084]  memory[0x4]	[0x000000000ef66000-0x000000000fee6fff], 0x0000000000f81000 bytes on node 0 flags: 0x0
[    0.013085]  memory[0x5]	[0x000000000ff77000-0x00000000bfffffff], 0x00000000b0089000 bytes on node 0 flags: 0x0
[    0.013086]  memory[0x6]	[0x0000000100000000-0x00000055ffffffff], 0x0000005500000000 bytes on node 0 flags: 0x0
[    0.013086]  memory[0x7]	[0x0000005600000000-0x000000aaffffffff], 0x0000005500000000 bytes on node 1 flags: 0x0
[    0.013087]  memory[0x8]	[0x000000ab00000000-0x000000fcffffffff], 0x0000005200000000 bytes on node 2 flags: 0x0
[    0.013087]  memory[0x9]	[0x0000010000000000-0x000001033fffffff], 0x0000000340000000 bytes on node 2 flags: 0x0
[    0.013088]  reserved.cnt  = 0x13
[    0.013088]  reserved[0x0]	[0x0000000000000000-0x00000000000fffff], 0x0000000000100000 bytes on node 0 flags: 0x0
[    0.013089]  reserved[0x1]	[0x000000000663a000-0x000000000adabfff], 0x0000000004772000 bytes on node 0 flags: 0x0
[    0.013089]  reserved[0x2]	[0x000000000df93000-0x000000000df93fff], 0x0000000000001000 bytes on node 0 flags: 0x0
[    0.013090]  reserved[0x3]	[0x000000000e0a0018-0x000000000e0a0767], 0x0000000000000750 bytes on node 0 flags: 0x0
[    0.013090]  reserved[0x4]	[0x000000000e0a1018-0x000000000e0a2857], 0x0000000000001840 bytes on node 0 flags: 0x0
[    0.013091]  reserved[0x5]	[0x000000000e0a3018-0x000000000e0a5057], 0x0000000000002040 bytes on node 0 flags: 0x0
[    0.013091]  reserved[0x6]	[0x000000000e0a6018-0x000000000e0ae057], 0x0000000000008040 bytes on node 0 flags: 0x0
[    0.013092]  reserved[0x7]	[0x000000000e0b1000-0x000000000e0b1fff], 0x0000000000001000 bytes on node 0 flags: 0x0
[    0.013092]  reserved[0x8]	[0x000000000e564698-0x000000000e564b57], 0x00000000000004c0 bytes on node 0 flags: 0x0
[    0.013093]  reserved[0x9]	[0x000000000e74a000-0x000000000ef23fff], 0x00000000007da000 bytes on node 0 flags: 0x0
[    0.013093]  reserved[0xa]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes on node 0 flags: 0x0
[    0.013094]  reserved[0xb]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes on node 0 flags: 0x0
[    0.013094]  reserved[0xc]	[0x000000000ef66000-0x000000000fee6fff], 0x0000000000f81000 bytes on node 0 flags: 0x0
[    0.013095]  reserved[0xd]	[0x000000000ff77000-0x000000000fffffff], 0x0000000000089000 bytes on node 0 flags: 0x0
[    0.013095]  reserved[0xe]	[0x00000029b3e00000-0x00000029b600efff], 0x000000000220f000 bytes on node 0 flags: 0x0
[    0.013096]  reserved[0xf]	[0x00000055fffd6000-0x00000055ffffffff], 0x000000000002a000 bytes flags: 0x0
[    0.013097]  reserved[0x10]	[0x000000aafffd6000-0x000000aaffffffff], 0x000000000002a000 bytes flags: 0x0
[    0.013097]  reserved[0x11]	[0x000001033ffd5000-0x000001033fffefff], 0x000000000002a000 bytes flags: 0x0
[    0.013098]  reserved[0x12]	[0x000001033ffff000-0x000001033fffffff], 0x0000000000001000 bytes on node 2 flags: 0x0
[    0.013198] crashkernel: memory value expected
[    0.013201] memblock_alloc_try_nid: 16384 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 memory_present+0x56/0x11d
[    0.013202] memblock_reserve: [0x000001033ffd1000-0x000001033ffd4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013205] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013206] memblock_reserve: [0x00000055fffd5000-0x00000055fffd5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013209] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013210] memblock_reserve: [0x00000055fffd4000-0x00000055fffd4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013213] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013214] memblock_reserve: [0x00000055fffd3000-0x00000055fffd3fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013217] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013218] memblock_reserve: [0x00000055fffd2000-0x00000055fffd2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013223] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013223] memblock_reserve: [0x00000055fffd1000-0x00000055fffd1fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013228] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013229] memblock_reserve: [0x00000055fffd0000-0x00000055fffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013234] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013235] memblock_reserve: [0x00000055fffcf000-0x00000055fffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013241] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013241] memblock_reserve: [0x00000055fffce000-0x00000055fffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013248] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013249] memblock_reserve: [0x00000055fffcd000-0x00000055fffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013256] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013256] memblock_reserve: [0x00000055fffcc000-0x00000055fffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013264] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013264] memblock_reserve: [0x00000055fffcb000-0x00000055fffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013273] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013273] memblock_reserve: [0x000000aafffd5000-0x000000aafffd5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013281] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013282] memblock_reserve: [0x000000aafffd4000-0x000000aafffd4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013290] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013291] memblock_reserve: [0x000000aafffd3000-0x000000aafffd3fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013300] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013300] memblock_reserve: [0x000000aafffd2000-0x000000aafffd2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013310] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013310] memblock_reserve: [0x000000aafffd1000-0x000000aafffd1fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013319] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013320] memblock_reserve: [0x000000aafffd0000-0x000000aafffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013330] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013331] memblock_reserve: [0x000000aafffcf000-0x000000aafffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013342] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013342] memblock_reserve: [0x000000aafffce000-0x000000aafffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013353] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013354] memblock_reserve: [0x000000aafffcd000-0x000000aafffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013366] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013366] memblock_reserve: [0x000000aafffcc000-0x000000aafffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013379] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013379] memblock_reserve: [0x000000aafffcb000-0x000000aafffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013391] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013392] memblock_reserve: [0x000001033ffd0000-0x000001033ffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013405] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013405] memblock_reserve: [0x000001033ffcf000-0x000001033ffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013419] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013419] memblock_reserve: [0x000001033ffce000-0x000001033ffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013433] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013434] memblock_reserve: [0x000001033ffcd000-0x000001033ffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013448] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013449] memblock_reserve: [0x000001033ffcc000-0x000001033ffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013465] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013466] memblock_reserve: [0x000001033ffcb000-0x000001033ffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013481] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013482] memblock_reserve: [0x000001033ffca000-0x000001033ffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.013497] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013498] memblock_reserve: [0x000001033ffc9000-0x000001033ffc9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013514] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013515] memblock_reserve: [0x000001033ffc8000-0x000001033ffc8fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013531] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013532] memblock_reserve: [0x000001033ffc7000-0x000001033ffc7fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013543] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.013543] memblock_reserve: [0x000001033ffc6000-0x000001033ffc6fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013562] memblock_alloc_try_nid: 109760 bytes align=0x40 nid=0 from=0x00000055f8000000 max_addr=0x0000005600000000 sparse_init_nid+0x8f/0x401
[    0.013562] memblock_reserve: [0x00000055fffb0340-0x00000055fffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.013568] memblock_alloc_exact_nid_raw: 5754585088 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x401
[    0.013568] memblock_reserve: [0x00000054a8e00000-0x00000055ffdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013570] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013571] memblock_reserve: [0x00000055fffaf000-0x00000055fffaffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013572] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013573] memblock_reserve: [0x00000055fffae000-0x00000055fffaefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013595] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013596] memblock_reserve: [0x00000055fffad000-0x00000055fffadfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013618] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013619] memblock_reserve: [0x00000055fffac000-0x00000055fffacfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013658] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013659] memblock_reserve: [0x00000055fffab000-0x00000055fffabfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013683] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013684] memblock_reserve: [0x00000055fffaa000-0x00000055fffaafff] memblock_alloc_range_nid+0xad/0x11b
[    0.013707] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013708] memblock_reserve: [0x00000055fffa9000-0x00000055fffa9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013728] memblock_alloc_try_nid: 108800 bytes align=0x40 nid=1 from=0x000000aaf8000000 max_addr=0x000000ab00000000 sparse_init_nid+0x8f/0x401
[    0.013729] memblock_reserve: [0x000000aafffb0700-0x000000aafffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.013734] memblock_alloc_exact_nid_raw: 5704253440 bytes align=0x200000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x401
[    0.013735] memblock_reserve: [0x000000a9abe00000-0x000000aaffdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013750] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013750] memblock_reserve: [0x000000aafffaf000-0x000000aafffaffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013774] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013775] memblock_reserve: [0x000000aafffae000-0x000000aafffaefff] memblock_alloc_range_nid+0xad/0x11b
[    0.013799] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013799] memblock_reserve: [0x000000aafffad000-0x000000aafffadfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013823] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013824] memblock_reserve: [0x000000aafffac000-0x000000aafffacfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013857] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013857] memblock_reserve: [0x000000aafffab000-0x000000aafffabfff] memblock_alloc_range_nid+0xad/0x11b
[    0.013884] memblock_alloc_try_nid: 109120 bytes align=0x40 nid=2 from=0x0000010338000000 max_addr=0x0000010340000000 sparse_init_nid+0x8f/0x401
[    0.013884] memblock_reserve: [0x000001033ffab5c0-0x000001033ffc5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013889] memblock_alloc_exact_nid_raw: 5721030656 bytes align=0x200000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x401
[    0.013890] memblock_reserve: [0x00000101eae00000-0x000001033fdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.013898] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013898] memblock_reserve: [0x000001033ffaa000-0x000001033ffaafff] memblock_alloc_range_nid+0xad/0x11b
[    0.013921] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013922] memblock_reserve: [0x000001033ffa9000-0x000001033ffa9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013944] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013945] memblock_reserve: [0x000001033ffa8000-0x000001033ffa8fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013968] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013968] memblock_reserve: [0x000001033ffa7000-0x000001033ffa7fff] memblock_alloc_range_nid+0xad/0x11b
[    0.013991] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.013991] memblock_reserve: [0x000001033ffa6000-0x000001033ffa6fff] memblock_alloc_range_nid+0xad/0x11b
[    0.014010] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.014011] memblock_reserve: [0x000001033ffa5000-0x000001033ffa5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.014017] Zone ranges:
[    0.014017]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.014018]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.014018]   Normal   [mem 0x0000000100000000-0x000001033fffffff]
[    0.014019]   Device   empty
[    0.014019] Movable zone start for each node
[    0.014021] Early memory node ranges
[    0.014022]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.014022]   node   0: [mem 0x0000000000100000-0x000000000ef23fff]
[    0.014023]   node   0: [mem 0x000000000ef2d000-0x000000000ef3bfff]
[    0.014023]   node   0: [mem 0x000000000ef48000-0x000000000ef60fff]
[    0.014023]   node   0: [mem 0x000000000ef66000-0x000000000fee6fff]
[    0.014024]   node   0: [mem 0x000000000ff77000-0x00000000bfffffff]
[    0.014024]   node   0: [mem 0x0000000100000000-0x00000055ffffffff]
[    0.014038]   node   1: [mem 0x0000005600000000-0x000000aaffffffff]
[    0.014052]   node   2: [mem 0x000000ab00000000-0x000000fcffffffff]
[    0.014066]   node   2: [mem 0x0000010000000000-0x000001033fffffff]
[    0.014793] Zeroed struct page in unavailable ranges: 267 pages
[    0.014794] Initmem setup node 0 [mem 0x0000000000001000-0x00000055ffffffff]
[    0.014795] On node 0 totalpages: 89915125
[    0.014796]   DMA zone: 64 pages used for memmap
[    0.014796]   DMA zone: 159 pages reserved
[    0.014797]   DMA zone: 3999 pages, LIFO batch:0
[    0.014841]   DMA32 zone: 12222 pages used for memmap
[    0.014842]   DMA32 zone: 782166 pages, LIFO batch:63
[    0.031010]   Normal zone: 1392640 pages used for memmap
[    0.031011]   Normal zone: 89128960 pages, LIFO batch:63
[    0.031713] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.031715] On node 1 totalpages: 89128960
[    0.031716]   Normal zone: 1392640 pages used for memmap
[    0.031716]   Normal zone: 89128960 pages, LIFO batch:63
[    0.032677] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.032678] On node 2 totalpages: 89391104
[    0.032679]   Normal zone: 1445888 pages used for memmap
[    0.032679]   Normal zone: 89391104 pages, LIFO batch:63
[    0.035438] ACPI: PM-Timer IO Port: 0x448
[    0.035440] ACPI: Local APIC address 0xfee00000
[    0.035457] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.035457] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.035458] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.035458] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.035458] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.035459] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.035459] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.035459] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.035460] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.035460] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.035460] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.035461] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.035461] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.035462] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.035462] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.035462] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.035463] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.035463] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.035463] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.035464] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.035464] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.035464] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.035465] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.035465] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.035465] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.035466] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.035466] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.035466] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.035467] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.035467] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.035467] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.035468] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.035468] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.035468] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.035469] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.035469] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.035469] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.035470] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.035470] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.035470] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.035470] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.035471] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.035471] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.035471] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.035472] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.035472] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.035472] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.035473] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.035473] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    0.035473] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    0.035474] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    0.035474] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    0.035474] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    0.035475] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    0.035475] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    0.035475] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    0.035476] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    0.035476] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    0.035476] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    0.035477] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    0.035477] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[    0.035477] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    0.035478] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[    0.035478] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[    0.035479] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[    0.035479] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[    0.035479] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[    0.035480] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[    0.035480] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[    0.035481] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[    0.035481] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[    0.035481] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[    0.035482] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[    0.035482] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[    0.035482] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[    0.035483] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[    0.035483] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[    0.035483] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[    0.035484] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[    0.035484] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[    0.035484] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[    0.035484] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[    0.035485] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[    0.035485] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[    0.035512] IOAPIC[0]: apic_id 84, version 32, address 0xfec00000, GSI 0-23
[    0.035514] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    0.035515] ACPI: IRQ0 used by override.
[    0.035516] ACPI: IRQ9 used by override.
[    0.035518] Using ACPI (MADT) for SMP configuration information
[    0.035518] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[    0.035523] memblock_alloc_try_nid: 73 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 acpi_parse_hpet+0xca/0x132
[    0.035525] memblock_reserve: [0x000001033ffab540-0x000001033ffab588] memblock_alloc_range_nid+0xad/0x11b
[    0.035529] smpboot: Allowing 84 CPUs, 0 hotplug CPUs
[    0.035535] memblock_alloc_try_nid: 75 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 io_apic_init_mappings+0x37/0x1c2
[    0.035537] memblock_reserve: [0x000001033ffab4c0-0x000001033ffab50a] memblock_alloc_range_nid+0xad/0x11b
[    0.035541] memblock_alloc_try_nid: 1536 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 e820__reserve_resources+0x2a/0x198
[    0.035543] memblock_reserve: [0x000001033ffa4a00-0x000001033ffa4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.035551] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035553] memblock_reserve: [0x000001033ffab440-0x000001033ffab4a7] memblock_alloc_range_nid+0xad/0x11b
[    0.035556] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035557] memblock_reserve: [0x000001033ffab3c0-0x000001033ffab427] memblock_alloc_range_nid+0xad/0x11b
[    0.035560] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035562] memblock_reserve: [0x000001033ffab340-0x000001033ffab3a7] memblock_alloc_range_nid+0xad/0x11b
[    0.035564] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035566] memblock_reserve: [0x000001033ffab2c0-0x000001033ffab327] memblock_alloc_range_nid+0xad/0x11b
[    0.035568] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035570] memblock_reserve: [0x000001033ffab240-0x000001033ffab2a7] memblock_alloc_range_nid+0xad/0x11b
[    0.035572] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035574] memblock_reserve: [0x000001033ffab1c0-0x000001033ffab227] memblock_alloc_range_nid+0xad/0x11b
[    0.035577] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035579] memblock_reserve: [0x000001033ffab140-0x000001033ffab1a7] memblock_alloc_range_nid+0xad/0x11b
[    0.035581] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035583] memblock_reserve: [0x000001033ffab0c0-0x000001033ffab127] memblock_alloc_range_nid+0xad/0x11b
[    0.035586] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035587] memblock_reserve: [0x000001033ffab040-0x000001033ffab0a7] memblock_alloc_range_nid+0xad/0x11b
[    0.035590] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035592] memblock_reserve: [0x000001033ffa4980-0x000001033ffa49e7] memblock_alloc_range_nid+0xad/0x11b
[    0.035594] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035596] memblock_reserve: [0x000001033ffa4900-0x000001033ffa4967] memblock_alloc_range_nid+0xad/0x11b
[    0.035599] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035601] memblock_reserve: [0x000001033ffa4880-0x000001033ffa48e7] memblock_alloc_range_nid+0xad/0x11b
[    0.035603] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035606] memblock_reserve: [0x000001033ffa4800-0x000001033ffa4867] memblock_alloc_range_nid+0xad/0x11b
[    0.035608] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035610] memblock_reserve: [0x000001033ffa4780-0x000001033ffa47e7] memblock_alloc_range_nid+0xad/0x11b
[    0.035613] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035615] memblock_reserve: [0x000001033ffa4700-0x000001033ffa4767] memblock_alloc_range_nid+0xad/0x11b
[    0.035617] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035620] memblock_reserve: [0x000001033ffa4680-0x000001033ffa46e7] memblock_alloc_range_nid+0xad/0x11b
[    0.035622] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035624] memblock_reserve: [0x000001033ffa4600-0x000001033ffa4667] memblock_alloc_range_nid+0xad/0x11b
[    0.035627] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.035629] memblock_reserve: [0x000001033ffa4580-0x000001033ffa45e7] memblock_alloc_range_nid+0xad/0x11b
[    0.035633] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.035635] memblock_reserve: [0x000001033ffab000-0x000001033ffab01f] memblock_alloc_range_nid+0xad/0x11b
[    0.035637] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.035639] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.035642] memblock_reserve: [0x000001033ffa4540-0x000001033ffa455f] memblock_alloc_range_nid+0xad/0x11b
[    0.035643] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.035644] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.035646] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.035648] memblock_reserve: [0x000001033ffa4500-0x000001033ffa451f] memblock_alloc_range_nid+0xad/0x11b
[    0.035650] PM: hibernation: Registered nosave memory: [mem 0x0e0a1000-0x0e0a1fff]
[    0.035650] PM: hibernation: Registered nosave memory: [mem 0x0e0a2000-0x0e0a2fff]
[    0.035651] PM: hibernation: Registered nosave memory: [mem 0x0e0a3000-0x0e0a3fff]
[    0.035653] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.035656] memblock_reserve: [0x000001033ffa44c0-0x000001033ffa44df] memblock_alloc_range_nid+0xad/0x11b
[    0.035657] PM: hibernation: Registered nosave memory: [mem 0x0e0a5000-0x0e0a5fff]
[    0.035658] PM: hibernation: Registered nosave memory: [mem 0x0e0a6000-0x0e0a6fff]
[    0.035660] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.035662] memblock_reserve: [0x000001033ffa4480-0x000001033ffa449f] memblock_alloc_range_nid+0xad/0x11b
[    0.035664] PM: hibernation: Registered nosave memory: [mem 0x0e0ae000-0x0e0aefff]
[    0.035666] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.035668] memblock_reserve: [0x000001033ffa4440-0x000001033ffa445f] memblock_alloc_range_nid+0xad/0x11b
[    0.035670] PM: hibernation: Registered nosave memory: [mem 0x0ef24000-0x0ef2cfff]
[    0.035672] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.035674] memblock_reserve: [0x000001033ffa4400-0x000001033ffa441f] memblock_alloc_range_nid+0xad/0x11b
[    0.035676] PM: hibernation: Registered nosave memory: [mem 0x0ef3c000-0x0ef41fff]
[    0.035676] PM: hibernation: Registered nosave memory: [mem 0x0ef42000-0x0ef47fff]
[    0.035678] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.035681] memblock_reserve: [0x000001033ffa43c0-0x000001033ffa43df] memblock_alloc_range_nid+0xad/0x11b
[    0.035682] PM: hibernation: Registered nosave memory: [mem 0x0ef61000-0x0ef65fff]
[    0.035685] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.035687] memblock_reserve: [0x000001033ffa4380-0x000001033ffa439f] memblock_alloc_range_nid+0xad/0x11b
[    0.035688] PM: hibernation: Registered nosave memory: [mem 0x0fee7000-0x0ff56fff]
[    0.035689] PM: hibernation: Registered nosave memory: [mem 0x0ff57000-0x0ff72fff]
[    0.035690] PM: hibernation: Registered nosave memory: [mem 0x0ff73000-0x0ff76fff]
[    0.035692] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.035695] memblock_reserve: [0x000001033ffa4340-0x000001033ffa435f] memblock_alloc_range_nid+0xad/0x11b
[    0.035696] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xffbfffff]
[    0.035697] PM: hibernation: Registered nosave memory: [mem 0xffc00000-0xffc29fff]
[    0.035698] PM: hibernation: Registered nosave memory: [mem 0xffc2a000-0xffffffff]
[    0.035700] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.035702] memblock_reserve: [0x000001033ffa4300-0x000001033ffa431f] memblock_alloc_range_nid+0xad/0x11b
[    0.035704] PM: hibernation: Registered nosave memory: [mem 0xfd00000000-0xffffffffff]
[    0.035706] [mem 0xc0000000-0xffbfffff] available for PCI devices
[    0.035708] Booting paravirtualized kernel on VMware hypervisor
[    0.035710] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.039222] memblock_alloc_try_nid: 134 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xfd/0x57a
[    0.039225] memblock_reserve: [0x000001033ffa4240-0x000001033ffa42c5] memblock_alloc_range_nid+0xad/0x11b
[    0.039227] memblock_alloc_try_nid: 134 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0x111/0x57a
[    0.039229] memblock_reserve: [0x000001033ffa4180-0x000001033ffa4205] memblock_alloc_range_nid+0xad/0x11b
[    0.039231] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:84 nr_cpu_ids:84 nr_node_ids:3
[    0.039274] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_alloc_info+0x52/0x84
[    0.039275] memblock_reserve: [0x000001033ffa3000-0x000001033ffa3fff] memblock_alloc_range_nid+0xad/0x11b
[    0.039280] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_embed_first_chunk+0x72/0x30d
[    0.039281] memblock_reserve: [0x000001033ffa2000-0x000001033ffa2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.039285] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    0.039286] memblock_reserve: [0x00000054a8600000-0x00000054a8dfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.041021] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    0.041022] memblock_reserve: [0x000000a9ab600000-0x000000a9abdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.043751] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    0.043752] memblock_reserve: [0x00000101ea600000-0x00000101eadfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.046476] memblock_free: [0x00000054a8638000-0x00000054a863ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046503] memblock_free: [0x00000054a8678000-0x00000054a867ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046529] memblock_free: [0x00000054a86b8000-0x00000054a86bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046555] memblock_free: [0x00000054a86f8000-0x00000054a86fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046579] memblock_free: [0x00000054a8738000-0x00000054a873ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046605] memblock_free: [0x00000054a8778000-0x00000054a877ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046634] memblock_free: [0x00000054a87b8000-0x00000054a87bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046659] memblock_free: [0x00000054a87f8000-0x00000054a87fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046686] memblock_free: [0x00000054a8838000-0x00000054a883ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046712] memblock_free: [0x00000054a8878000-0x00000054a887ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046738] memblock_free: [0x00000054a88b8000-0x00000054a88bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046763] memblock_free: [0x00000054a88f8000-0x00000054a88fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046790] memblock_free: [0x00000054a8938000-0x00000054a893ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046816] memblock_free: [0x00000054a8978000-0x00000054a897ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046843] memblock_free: [0x00000054a89b8000-0x00000054a89bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046870] memblock_free: [0x00000054a89f8000-0x00000054a89fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046890] memblock_free: [0x00000054a8a38000-0x00000054a8a3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046911] memblock_free: [0x00000054a8a78000-0x00000054a8a7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046933] memblock_free: [0x00000054a8ab8000-0x00000054a8abffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046955] memblock_free: [0x00000054a8af8000-0x00000054a8afffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046978] memblock_free: [0x00000054a8b38000-0x00000054a8b3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.046999] memblock_free: [0x00000054a8b78000-0x00000054a8b7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047020] memblock_free: [0x00000054a8bb8000-0x00000054a8bbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047041] memblock_free: [0x00000054a8bf8000-0x00000054a8bfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047057] memblock_free: [0x00000054a8c38000-0x00000054a8c3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047073] memblock_free: [0x00000054a8c78000-0x00000054a8c7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047089] memblock_free: [0x00000054a8cb8000-0x00000054a8cbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047106] memblock_free: [0x00000054a8cf8000-0x00000054a8cfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047107] memblock_free: [0x00000054a8d00000-0x00000054a8d3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.047108] memblock_free: [0x00000054a8d40000-0x00000054a8d7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.047110] memblock_free: [0x00000054a8d80000-0x00000054a8dbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.047111] memblock_free: [0x00000054a8dc0000-0x00000054a8dfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.047144] memblock_free: [0x000000a9ab638000-0x000000a9ab63ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047177] memblock_free: [0x000000a9ab678000-0x000000a9ab67ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047210] memblock_free: [0x000000a9ab6b8000-0x000000a9ab6bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047241] memblock_free: [0x000000a9ab6f8000-0x000000a9ab6fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047275] memblock_free: [0x000000a9ab738000-0x000000a9ab73ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047308] memblock_free: [0x000000a9ab778000-0x000000a9ab77ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047348] memblock_free: [0x000000a9ab7b8000-0x000000a9ab7bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047383] memblock_free: [0x000000a9ab7f8000-0x000000a9ab7fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047406] memblock_free: [0x000000a9ab838000-0x000000a9ab83ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047430] memblock_free: [0x000000a9ab878000-0x000000a9ab87ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047453] memblock_free: [0x000000a9ab8b8000-0x000000a9ab8bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047477] memblock_free: [0x000000a9ab8f8000-0x000000a9ab8fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047500] memblock_free: [0x000000a9ab938000-0x000000a9ab93ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047522] memblock_free: [0x000000a9ab978000-0x000000a9ab97ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047547] memblock_free: [0x000000a9ab9b8000-0x000000a9ab9bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047571] memblock_free: [0x000000a9ab9f8000-0x000000a9ab9fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047586] memblock_free: [0x000000a9aba38000-0x000000a9aba3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047602] memblock_free: [0x000000a9aba78000-0x000000a9aba7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047617] memblock_free: [0x000000a9abab8000-0x000000a9ababffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047635] memblock_free: [0x000000a9abaf8000-0x000000a9abafffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047648] memblock_free: [0x000000a9abb38000-0x000000a9abb3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047663] memblock_free: [0x000000a9abb78000-0x000000a9abb7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047679] memblock_free: [0x000000a9abbb8000-0x000000a9abbbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047693] memblock_free: [0x000000a9abbf8000-0x000000a9abbfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047707] memblock_free: [0x000000a9abc38000-0x000000a9abc3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047719] memblock_free: [0x000000a9abc78000-0x000000a9abc7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047732] memblock_free: [0x000000a9abcb8000-0x000000a9abcbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047747] memblock_free: [0x000000a9abcf8000-0x000000a9abcfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047748] memblock_free: [0x000000a9abd00000-0x000000a9abd3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.047749] memblock_free: [0x000000a9abd40000-0x000000a9abd7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.047750] memblock_free: [0x000000a9abd80000-0x000000a9abdbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.047752] memblock_free: [0x000000a9abdc0000-0x000000a9abdfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.047763] memblock_free: [0x00000101ea638000-0x00000101ea63ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047773] memblock_free: [0x00000101ea678000-0x00000101ea67ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047784] memblock_free: [0x00000101ea6b8000-0x00000101ea6bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047794] memblock_free: [0x00000101ea6f8000-0x00000101ea6fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047803] memblock_free: [0x00000101ea738000-0x00000101ea73ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047813] memblock_free: [0x00000101ea778000-0x00000101ea77ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047822] memblock_free: [0x00000101ea7b8000-0x00000101ea7bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047831] memblock_free: [0x00000101ea7f8000-0x00000101ea7fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047846] memblock_free: [0x00000101ea838000-0x00000101ea83ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047862] memblock_free: [0x00000101ea878000-0x00000101ea87ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047879] memblock_free: [0x00000101ea8b8000-0x00000101ea8bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047896] memblock_free: [0x00000101ea8f8000-0x00000101ea8fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047913] memblock_free: [0x00000101ea938000-0x00000101ea93ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047930] memblock_free: [0x00000101ea978000-0x00000101ea97ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047932] memblock: reserved is doubled to 256 at [0x000001033ffa0000-0x000001033ffa17ff]
[    0.047938] memblock_reserve: [0x000001033ffa0000-0x000001033ffa1fff] memblock_double_array+0x236/0x26f
[    0.047955] memblock_free: [0x00000101ea9b8000-0x00000101ea9bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047971] memblock_free: [0x00000101ea9f8000-0x00000101ea9fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047984] memblock_free: [0x00000101eaa38000-0x00000101eaa3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.047996] memblock_free: [0x00000101eaa78000-0x00000101eaa7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.048008] memblock_free: [0x00000101eaab8000-0x00000101eaabffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.048020] memblock_free: [0x00000101eaaf8000-0x00000101eaafffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.048032] memblock_free: [0x00000101eab38000-0x00000101eab3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.048044] memblock_free: [0x00000101eab78000-0x00000101eab7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.048057] memblock_free: [0x00000101eabb8000-0x00000101eabbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.048069] memblock_free: [0x00000101eabf8000-0x00000101eabfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.048079] memblock_free: [0x00000101eac38000-0x00000101eac3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.048090] memblock_free: [0x00000101eac78000-0x00000101eac7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.048099] memblock_free: [0x00000101eacb8000-0x00000101eacbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.048110] memblock_free: [0x00000101eacf8000-0x00000101eacfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.048111] memblock_free: [0x00000101ead00000-0x00000101ead3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.048112] memblock_free: [0x00000101ead40000-0x00000101ead7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.048114] memblock_free: [0x00000101ead80000-0x00000101eadbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.048115] memblock_free: [0x00000101eadc0000-0x00000101eadfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.048116] percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u262144
[    0.048118] memblock_alloc_try_nid: 24 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x2f4/0x71b
[    0.048119] memblock_reserve: [0x000001033ffa4140-0x000001033ffa4157] memblock_alloc_range_nid+0xad/0x11b
[    0.048121] memblock_alloc_try_nid: 24 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x327/0x71b
[    0.048122] memblock_reserve: [0x000001033ffa4100-0x000001033ffa4117] memblock_alloc_range_nid+0xad/0x11b
[    0.048124] memblock_alloc_try_nid: 336 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x348/0x71b
[    0.048125] memblock_reserve: [0x000001033ff9fe80-0x000001033ff9ffcf] memblock_alloc_range_nid+0xad/0x11b
[    0.048127] memblock_alloc_try_nid: 672 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x368/0x71b
[    0.048129] memblock_reserve: [0x000001033ff9fbc0-0x000001033ff9fe5f] memblock_alloc_range_nid+0xad/0x11b
[    0.048132] pcpu-alloc: s192512 r8192 d28672 u262144 alloc=1*2097152
[    0.048132] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.048135] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
[    0.048137] pcpu-alloc: [1] 28 29 30 31 32 33 34 35 [1] 36 37 38 39 40 41 42 43 
[    0.048139] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 [1] 52 53 54 55 -- -- -- -- 
[    0.048141] pcpu-alloc: [2] 56 57 58 59 60 61 62 63 [2] 64 65 66 67 68 69 70 71 
[    0.048143] pcpu-alloc: [2] 72 73 74 75 76 77 78 79 [2] 80 81 82 83 -- -- -- -- 
[    0.048146] memblock_alloc_try_nid: 288 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x641/0x71b
[    0.048147] memblock_reserve: [0x000001033ff9fa80-0x000001033ff9fb9f] memblock_alloc_range_nid+0xad/0x11b
[    0.048149] memblock_alloc_try_nid: 121 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x74/0x21c
[    0.048150] memblock_reserve: [0x000001033ffa4080-0x000001033ffa40f8] memblock_alloc_range_nid+0xad/0x11b
[    0.048152] memblock_alloc_try_nid: 256 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xc3/0x21c
[    0.048153] memblock_reserve: [0x000001033ff9f980-0x000001033ff9fa7f] memblock_alloc_range_nid+0xad/0x11b
[    0.048155] memblock_alloc_try_nid: 264 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x100/0x21c
[    0.048156] memblock_reserve: [0x000001033ff9f840-0x000001033ff9f947] memblock_alloc_range_nid+0xad/0x11b
[    0.048158] memblock_alloc_try_nid: 64 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x11e/0x21c
[    0.048159] memblock_reserve: [0x000001033ffa4040-0x000001033ffa407f] memblock_alloc_range_nid+0xad/0x11b
[    0.048161] memblock_alloc_try_nid: 121 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x74/0x21c
[    0.048162] memblock_reserve: [0x000001033ff9f7c0-0x000001033ff9f838] memblock_alloc_range_nid+0xad/0x11b
[    0.048164] memblock_alloc_try_nid: 896 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xc3/0x21c
[    0.048165] memblock_reserve: [0x000001033ff9f440-0x000001033ff9f7bf] memblock_alloc_range_nid+0xad/0x11b
[    0.048167] memblock_alloc_try_nid: 904 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x100/0x21c
[    0.048168] memblock_reserve: [0x000001033ff9f080-0x000001033ff9f407] memblock_alloc_range_nid+0xad/0x11b
[    0.048170] memblock_alloc_try_nid: 224 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x11e/0x21c
[    0.048172] memblock_reserve: [0x000001033ff9ef80-0x000001033ff9f05f] memblock_alloc_range_nid+0xad/0x11b
[    0.048174] memblock_free: [0x000001033ffa3000-0x000001033ffa3fff] pcpu_embed_first_chunk+0x2c7/0x30d
[    0.048175] memblock_free: [0x000001033ffa2000-0x000001033ffa2fff] pcpu_embed_first_chunk+0x2fc/0x30d
[    0.048181] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.048182] memblock_reserve: [0x000001033ffa4000-0x000001033ffa400f] memblock_alloc_range_nid+0xad/0x11b
[    0.048184] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.048185] memblock_reserve: [0x000001033ffa3fc0-0x000001033ffa3fcf] memblock_alloc_range_nid+0xad/0x11b
[    0.048187] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.048188] memblock_reserve: [0x000001033ffa3f80-0x000001033ffa3f8f] memblock_alloc_range_nid+0xad/0x11b
[    0.048190] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.048191] memblock_reserve: [0x000001033ffa3f40-0x000001033ffa3f4f] memblock_alloc_range_nid+0xad/0x11b
[    0.048193] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.048194] memblock_reserve: [0x000001033ffa3f00-0x000001033ffa3f0f] memblock_alloc_range_nid+0xad/0x11b
[    0.048195] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.048197] memblock_reserve: [0x000001033ffa3ec0-0x000001033ffa3ecf] memblock_alloc_range_nid+0xad/0x11b
[    0.048198] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.048199] memblock_reserve: [0x000001033ffa3e80-0x000001033ffa3e8f] memblock_alloc_range_nid+0xad/0x11b
[    0.048210] Built 3 zonelists, mobility grouping on.  Total pages: 264191576
[    0.048211] Policy zone: Normal
[    0.048212] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.7.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet memblock=debug
[    0.048333] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.048335] memblock_reserve: [0x000001033ffa2000-0x000001033ffa2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.048338] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.048339] memblock_reserve: [0x000001033ff9d000-0x000001033ff9dfff] memblock_alloc_range_nid+0xad/0x11b
[    0.048342] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.048344] memblock_reserve: [0x000001033ff9c000-0x000001033ff9cfff] memblock_alloc_range_nid+0xad/0x11b
[    0.048426] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.048427] memblock_reserve: [0x000001033ff9b000-0x000001033ff9bfff] memblock_alloc_range_nid+0xad/0x11b
[    0.048516] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.048517] memblock_reserve: [0x000001033ff9a000-0x000001033ff9afff] memblock_alloc_range_nid+0xad/0x11b
[    0.048611] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.048613] memblock_reserve: [0x000001033ff99000-0x000001033ff99fff] memblock_alloc_range_nid+0xad/0x11b
[    0.048714] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.048715] memblock_reserve: [0x000001033ff98000-0x000001033ff98fff] memblock_alloc_range_nid+0xad/0x11b
[    0.048823] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.048824] memblock_reserve: [0x000001033ff97000-0x000001033ff97fff] memblock_alloc_range_nid+0xad/0x11b
[    0.048935] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.048937] memblock_reserve: [0x000001033ff96000-0x000001033ff96fff] memblock_alloc_range_nid+0xad/0x11b
[    0.049058] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.049059] memblock_reserve: [0x000001033ff95000-0x000001033ff95fff] memblock_alloc_range_nid+0xad/0x11b
[    0.049185] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.049187] memblock_reserve: [0x000001033ff94000-0x000001033ff94fff] memblock_alloc_range_nid+0xad/0x11b
[    0.049314] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.049317] memblock_alloc_try_nid: 67108864 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x00000000ffffffff swiotlb_init+0x4b/0xa8
[    0.049320] memblock_reserve: [0x00000000bc000000-0x00000000bfffffff] memblock_alloc_range_nid+0xad/0x11b
[    0.060970] memblock_alloc_try_nid: 131072 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0x6e/0x13b
[    0.060971] memblock_reserve: [0x000001033ff74000-0x000001033ff93fff] memblock_alloc_range_nid+0xad/0x11b
[    0.061009] memblock_alloc_try_nid: 262144 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0xa5/0x13b
[    0.061011] memblock_reserve: [0x000001033ff34000-0x000001033ff73fff] memblock_alloc_range_nid+0xad/0x11b
[    0.332423] Memory: 3373848K/1073740756K available (12292K kernel code, 2140K rwdata, 4456K rodata, 2332K init, 6164K bss, 16996440K reserved, 0K cma-reserved)
[    0.334850] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=84, Nodes=3
[    0.334900] Kernel/User page tables isolation: enabled
[    0.334946] ftrace: allocating 38058 entries in 149 pages
[    0.345874] ftrace: allocated 149 pages with 4 groups
[    0.346833] rcu: Hierarchical RCU implementation.
[    0.346833] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=84.
[    0.346834] 	Rude variant of Tasks RCU enabled.
[    0.346835] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.346835] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=84
[    0.349414] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    0.349887] Console: colour dummy device 80x25
[    0.349921] printk: console [tty0] enabled
[    0.350041] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.350045] ACPI: Core revision 20200430
[    0.351716] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.351790] APIC: Switch to symmetric I/O mode setup
[    0.352961] x2apic enabled
[    0.353303] Switched APIC routing to physical x2apic.
[    0.354612] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.354656] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e3306b9ada, max_idle_ns: 440795224413 ns
[    0.354659] Calibrating delay loop (skipped) preset value.. 4190.15 BogoMIPS (lpj=2095078)
[    0.354662] pid_max: default: 86016 minimum: 672
[    0.355775] __memblock_free_late: [0x000000000ffbf000-0x000000000fffffff] efi_free_boot_services+0x15c/0x24c
[    0.355787] __memblock_free_late: [0x000000000ff77000-0x000000000ffbefff] efi_free_boot_services+0x15c/0x24c
[    0.355808] __memblock_free_late: [0x000000000fdf7000-0x000000000fee6fff] efi_free_boot_services+0x15c/0x24c
[    0.355867] __memblock_free_late: [0x000000000ef90000-0x000000000fdf6fff] efi_free_boot_services+0x15c/0x24c
[    0.356295] __memblock_free_late: [0x000000000ef66000-0x000000000ef8ffff] efi_free_boot_services+0x15c/0x24c
[    0.356304] __memblock_free_late: [0x000000000ef48000-0x000000000ef60fff] efi_free_boot_services+0x15c/0x24c
[    0.356308] __memblock_free_late: [0x000000000ef2d000-0x000000000ef3bfff] efi_free_boot_services+0x15c/0x24c
[    0.356315] __memblock_free_late: [0x000000000eee2000-0x000000000ef23fff] efi_free_boot_services+0x15c/0x24c
[    0.356356] __memblock_free_late: [0x000000000e8e0000-0x000000000eee1fff] efi_free_boot_services+0x15c/0x24c
[    0.356568] __memblock_free_late: [0x000000000e74a000-0x000000000e8dffff] efi_free_boot_services+0x15c/0x24c
[    0.356617] __memblock_free_late: [0x000000000e0b1000-0x000000000e0b1fff] efi_free_boot_services+0x15c/0x24c
[    0.356619] __memblock_free_late: [0x000000000df93000-0x000000000df93fff] efi_free_boot_services+0x15c/0x24c
[    0.357015] LSM: Security Framework initializing
[    0.357050] Yama: becoming mindful.
[    0.357087] SELinux:  Initializing.
[    0.450123] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes, vmalloc)
[    0.498917] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc)
[    0.499953] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    0.501809] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    0.503869] Disabled fast string operations
[    0.504023] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.504023] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.504030] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.504031] Spectre V2 : Mitigation: Full generic retpoline
[    0.504032] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.504032] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.504033] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.504034] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.504037] MDS: Mitigation: Clear CPU buffers
[    0.504277] Freeing SMP alternatives memory: 32K
[    0.505120] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8176 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x4)
[    0.505294] Performance Events: Skylake events, core PMU driver.
[    0.505329] core: CPUID marked event: 'cpu cycles' unavailable
[    0.505330] core: CPUID marked event: 'instructions' unavailable
[    0.505330] core: CPUID marked event: 'bus cycles' unavailable
[    0.505330] core: CPUID marked event: 'cache references' unavailable
[    0.505331] core: CPUID marked event: 'cache misses' unavailable
[    0.505331] core: CPUID marked event: 'branch instructions' unavailable
[    0.505331] core: CPUID marked event: 'branch misses' unavailable
[    0.505333] ... version:                1
[    0.505333] ... bit width:              48
[    0.505333] ... generic registers:      4
[    0.505334] ... value mask:             0000ffffffffffff
[    0.505334] ... max period:             000000007fffffff
[    0.505334] ... fixed-purpose events:   0
[    0.505334] ... event mask:             000000000000000f
[    0.505424] rcu: Hierarchical SRCU implementation.
[    0.505657] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.507383] smp: Bringing up secondary CPUs ...
[    0.507473] x86: Booting SMP configuration:
[    0.507474] .... node  #0, CPUs:        #1
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 1 Converting physical 2 to logical package 1
[    0.004915] smpboot: CPU 1 Converting physical 0 to logical die 1
[    0.508740]   #2
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 2 Converting physical 4 to logical package 2
[    0.004915] smpboot: CPU 2 Converting physical 0 to logical die 2
[    0.509952]   #3
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 3 Converting physical 6 to logical package 3
[    0.004915] smpboot: CPU 3 Converting physical 0 to logical die 3
[    0.510981]   #4
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 4 Converting physical 8 to logical package 4
[    0.004915] smpboot: CPU 4 Converting physical 0 to logical die 4
[    0.512060]   #5
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 5 Converting physical 10 to logical package 5
[    0.004915] smpboot: CPU 5 Converting physical 0 to logical die 5
[    0.512967]   #6
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 6 Converting physical 12 to logical package 6
[    0.004915] smpboot: CPU 6 Converting physical 0 to logical die 6
[    0.513949]   #7
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 7 Converting physical 14 to logical package 7
[    0.004915] smpboot: CPU 7 Converting physical 0 to logical die 7
[    0.515046]   #8
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 8 Converting physical 16 to logical package 8
[    0.004915] smpboot: CPU 8 Converting physical 0 to logical die 8
[    0.515956]   #9
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 9 Converting physical 18 to logical package 9
[    0.004915] smpboot: CPU 9 Converting physical 0 to logical die 9
[    0.516850]  #10
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 10 Converting physical 20 to logical package 10
[    0.004915] smpboot: CPU 10 Converting physical 0 to logical die 10
[    0.517730]  #11
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 11 Converting physical 22 to logical package 11
[    0.004915] smpboot: CPU 11 Converting physical 0 to logical die 11
[    0.518343]  #12
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 12 Converting physical 24 to logical package 12
[    0.004915] smpboot: CPU 12 Converting physical 0 to logical die 12
[    0.519700]  #13
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 13 Converting physical 26 to logical package 13
[    0.004915] smpboot: CPU 13 Converting physical 0 to logical die 13
[    0.520453]  #14
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 14 Converting physical 28 to logical package 14
[    0.004915] smpboot: CPU 14 Converting physical 0 to logical die 14
[    0.521233]  #15
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 15 Converting physical 30 to logical package 15
[    0.004915] smpboot: CPU 15 Converting physical 0 to logical die 15
[    0.522043]  #16
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 16 Converting physical 32 to logical package 16
[    0.004915] smpboot: CPU 16 Converting physical 0 to logical die 16
[    0.522787]  #17
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 17 Converting physical 34 to logical package 17
[    0.004915] smpboot: CPU 17 Converting physical 0 to logical die 17
[    0.523730]  #18
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 18 Converting physical 36 to logical package 18
[    0.004915] smpboot: CPU 18 Converting physical 0 to logical die 18
[    0.524465]  #19
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 19 Converting physical 38 to logical package 19
[    0.004915] smpboot: CPU 19 Converting physical 0 to logical die 19
[    0.525320]  #20
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 20 Converting physical 40 to logical package 20
[    0.004915] smpboot: CPU 20 Converting physical 0 to logical die 20
[    0.525730]  #21
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 21 Converting physical 42 to logical package 21
[    0.004915] smpboot: CPU 21 Converting physical 0 to logical die 21
[    0.526323]  #22
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 22 Converting physical 44 to logical package 22
[    0.004915] smpboot: CPU 22 Converting physical 0 to logical die 22
[    0.527113]  #23
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 23 Converting physical 46 to logical package 23
[    0.004915] smpboot: CPU 23 Converting physical 0 to logical die 23
[    0.528100]  #24
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 24 Converting physical 48 to logical package 24
[    0.004915] smpboot: CPU 24 Converting physical 0 to logical die 24
[    0.528793]  #25
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 25 Converting physical 50 to logical package 25
[    0.004915] smpboot: CPU 25 Converting physical 0 to logical die 25
[    0.529717]  #26
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 26 Converting physical 52 to logical package 26
[    0.004915] smpboot: CPU 26 Converting physical 0 to logical die 26
[    0.530299]  #27
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 27 Converting physical 54 to logical package 27
[    0.004915] smpboot: CPU 27 Converting physical 0 to logical die 27
[    0.530944] .... node  #1, CPUs:   #28
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 28 Converting physical 56 to logical package 28
[    0.004915] smpboot: CPU 28 Converting physical 0 to logical die 28
[    0.531756]  #29
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 29 Converting physical 58 to logical package 29
[    0.004915] smpboot: CPU 29 Converting physical 0 to logical die 29
[    0.532790]  #30
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 30 Converting physical 60 to logical package 30
[    0.004915] smpboot: CPU 30 Converting physical 0 to logical die 30
[    0.533749]  #31
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 31 Converting physical 62 to logical package 31
[    0.004915] smpboot: CPU 31 Converting physical 0 to logical die 31
[    0.534723]  #32
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 32 Converting physical 64 to logical package 32
[    0.004915] smpboot: CPU 32 Converting physical 0 to logical die 32
[    0.535364]  #33
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 33 Converting physical 66 to logical package 33
[    0.004915] smpboot: CPU 33 Converting physical 0 to logical die 33
[    0.536185]  #34
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 34 Converting physical 68 to logical package 34
[    0.004915] smpboot: CPU 34 Converting physical 0 to logical die 34
[    0.536794]  #35
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 35 Converting physical 70 to logical package 35
[    0.004915] smpboot: CPU 35 Converting physical 0 to logical die 35
[    0.537742]  #36
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 36 Converting physical 72 to logical package 36
[    0.004915] smpboot: CPU 36 Converting physical 0 to logical die 36
[    0.538332]  #37
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 37 Converting physical 74 to logical package 37
[    0.004915] smpboot: CPU 37 Converting physical 0 to logical die 37
[    0.539258]  #38
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 38 Converting physical 76 to logical package 38
[    0.004915] smpboot: CPU 38 Converting physical 0 to logical die 38
[    0.540336]  #39
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 39 Converting physical 78 to logical package 39
[    0.004915] smpboot: CPU 39 Converting physical 0 to logical die 39
[    0.541163]  #40
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 40 Converting physical 80 to logical package 40
[    0.004915] smpboot: CPU 40 Converting physical 0 to logical die 40
[    0.541864]  #41
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 41 Converting physical 82 to logical package 41
[    0.004915] smpboot: CPU 41 Converting physical 0 to logical die 41
[    0.542736]  #42
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 42 Converting physical 84 to logical package 42
[    0.004915] smpboot: CPU 42 Converting physical 0 to logical die 42
[    0.543332]  #43
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 43 Converting physical 86 to logical package 43
[    0.004915] smpboot: CPU 43 Converting physical 0 to logical die 43
[    0.544167]  #44
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 44 Converting physical 88 to logical package 44
[    0.004915] smpboot: CPU 44 Converting physical 0 to logical die 44
[    0.544733]  #45
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 45 Converting physical 90 to logical package 45
[    0.004915] smpboot: CPU 45 Converting physical 0 to logical die 45
[    0.545294]  #46
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 46 Converting physical 92 to logical package 46
[    0.004915] smpboot: CPU 46 Converting physical 0 to logical die 46
[    0.546309]  #47
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 47 Converting physical 94 to logical package 47
[    0.004915] smpboot: CPU 47 Converting physical 0 to logical die 47
[    0.546738]  #48
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 48 Converting physical 96 to logical package 48
[    0.004915] smpboot: CPU 48 Converting physical 0 to logical die 48
[    0.547739]  #49
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 49 Converting physical 98 to logical package 49
[    0.004915] smpboot: CPU 49 Converting physical 0 to logical die 49
[    0.548437]  #50
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 50 Converting physical 100 to logical package 50
[    0.004915] smpboot: CPU 50 Converting physical 0 to logical die 50
[    0.549269]  #51
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 51 Converting physical 102 to logical package 51
[    0.004915] smpboot: CPU 51 Converting physical 0 to logical die 51
[    0.550717]  #52
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 52 Converting physical 104 to logical package 52
[    0.004915] smpboot: CPU 52 Converting physical 0 to logical die 52
[    0.551391]  #53
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 53 Converting physical 106 to logical package 53
[    0.004915] smpboot: CPU 53 Converting physical 0 to logical die 53
[    0.552214]  #54
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 54 Converting physical 108 to logical package 54
[    0.004915] smpboot: CPU 54 Converting physical 0 to logical die 54
[    0.552738]  #55
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 55 Converting physical 110 to logical package 55
[    0.004915] smpboot: CPU 55 Converting physical 0 to logical die 55
[    0.553727] .... node  #2, CPUs:   #56
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 56 Converting physical 112 to logical package 56
[    0.004915] smpboot: CPU 56 Converting physical 0 to logical die 56
[    0.554734]  #57
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 57 Converting physical 114 to logical package 57
[    0.004915] smpboot: CPU 57 Converting physical 0 to logical die 57
[    0.555373]  #58
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 58 Converting physical 116 to logical package 58
[    0.004915] smpboot: CPU 58 Converting physical 0 to logical die 58
[    0.556145]  #59
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 59 Converting physical 118 to logical package 59
[    0.004915] smpboot: CPU 59 Converting physical 0 to logical die 59
[    0.557004]  #60
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 60 Converting physical 120 to logical package 60
[    0.004915] smpboot: CPU 60 Converting physical 0 to logical die 60
[    0.557743]  #61
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 61 Converting physical 122 to logical package 61
[    0.004915] smpboot: CPU 61 Converting physical 0 to logical die 61
[    0.558689]  #62
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 62 Converting physical 124 to logical package 62
[    0.004915] smpboot: CPU 62 Converting physical 0 to logical die 62
[    0.559292]  #63
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 63 Converting physical 126 to logical package 63
[    0.004915] smpboot: CPU 63 Converting physical 0 to logical die 63
[    0.559864]  #64
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 64 Converting physical 128 to logical package 64
[    0.004915] smpboot: CPU 64 Converting physical 0 to logical die 64
[    0.560753]  #65
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 65 Converting physical 130 to logical package 65
[    0.004915] smpboot: CPU 65 Converting physical 0 to logical die 65
[    0.561694]  #66
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 66 Converting physical 132 to logical package 66
[    0.004915] smpboot: CPU 66 Converting physical 0 to logical die 66
[    0.562725]  #67
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 67 Converting physical 134 to logical package 67
[    0.004915] smpboot: CPU 67 Converting physical 0 to logical die 67
[    0.563468]  #68
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 68 Converting physical 136 to logical package 68
[    0.004915] smpboot: CPU 68 Converting physical 0 to logical die 68
[    0.564253]  #69
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 69 Converting physical 138 to logical package 69
[    0.004915] smpboot: CPU 69 Converting physical 0 to logical die 69
[    0.564733]  #70
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 70 Converting physical 140 to logical package 70
[    0.004915] smpboot: CPU 70 Converting physical 0 to logical die 70
[    0.565672]  #71
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 71 Converting physical 142 to logical package 71
[    0.004915] smpboot: CPU 71 Converting physical 0 to logical die 71
[    0.566692]  #72
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 72 Converting physical 144 to logical package 72
[    0.004915] smpboot: CPU 72 Converting physical 0 to logical die 72
[    0.567295]  #73
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 73 Converting physical 146 to logical package 73
[    0.004915] smpboot: CPU 73 Converting physical 0 to logical die 73
[    0.567746]  #74
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 74 Converting physical 148 to logical package 74
[    0.004915] smpboot: CPU 74 Converting physical 0 to logical die 74
[    0.568725]  #75
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 75 Converting physical 150 to logical package 75
[    0.004915] smpboot: CPU 75 Converting physical 0 to logical die 75
[    0.569391]  #76
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 76 Converting physical 152 to logical package 76
[    0.004915] smpboot: CPU 76 Converting physical 0 to logical die 76
[    0.570141]  #77
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 77 Converting physical 154 to logical package 77
[    0.004915] smpboot: CPU 77 Converting physical 0 to logical die 77
[    0.570881]  #78
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 78 Converting physical 156 to logical package 78
[    0.004915] smpboot: CPU 78 Converting physical 0 to logical die 78
[    0.571737]  #79
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 79 Converting physical 158 to logical package 79
[    0.004915] smpboot: CPU 79 Converting physical 0 to logical die 79
[    0.572737]  #80
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 80 Converting physical 160 to logical package 80
[    0.004915] smpboot: CPU 80 Converting physical 0 to logical die 80
[    0.573357]  #81
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 81 Converting physical 162 to logical package 81
[    0.004915] smpboot: CPU 81 Converting physical 0 to logical die 81
[    0.574284]  #82
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 82 Converting physical 164 to logical package 82
[    0.004915] smpboot: CPU 82 Converting physical 0 to logical die 82
[    0.574743]  #83
[    0.004915] Disabled fast string operations
[    0.004915] smpboot: CPU 83 Converting physical 166 to logical package 83
[    0.004915] smpboot: CPU 83 Converting physical 0 to logical die 83
[    0.575985] smp: Brought up 3 nodes, 84 CPUs
[    0.575996] smpboot: Max logical packages: 84
[    0.576000] smpboot: Total of 84 processors activated (351973.10 BogoMIPS)
[    2.361721] node 0 initialised, 87648122 pages in 1783ms
[    2.361727] node 2 initialised, 87927060 pages in 1783ms
[    2.364728] node 1 initialised, 87669131 pages in 1786ms
[    2.366005] __memblock_free_late: [0x000001033ffa0000-0x000001033ffa1fff] memblock_discard+0x55/0xa6
[    2.408929] devtmpfs: initialized
[    2.408929] x86/mm: Memory block size: 1024MB
[    2.449870] PM: Registering ACPI NVS region [mem 0x00000000-0x00000fff] (4096 bytes)
[    2.449870] PM: Registering ACPI NVS region [mem 0x0ef42000-0x0ef47fff] (24576 bytes)
[    2.449870] PM: Registering ACPI NVS region [mem 0x0ff73000-0x0ff76fff] (16384 bytes)
[    2.450851] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    2.450851] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    2.452551] pinctrl core: initialized pinctrl subsystem
[    2.452595] thermal_sys: Registered thermal governor 'fair_share'
[    2.452596] thermal_sys: Registered thermal governor 'bang_bang'
[    2.452596] thermal_sys: Registered thermal governor 'step_wise'
[    2.452597] thermal_sys: Registered thermal governor 'user_space'
[    2.453313] NET: Registered protocol family 16
[    2.453403] audit: initializing netlink subsys (disabled)
[    2.453416] audit: type=2000 audit(1602520503.099:1): state=initialized audit_enabled=0 res=1
[    2.453664] cpuidle: using governor menu
[    2.453743] ACPI: bus type PCI registered
[    2.453744] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.454011] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    2.454013] PCI: not using MMCONFIG
[    2.454014] PCI: Using configuration type 1 for base access
[    2.489827] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    2.489827] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    2.519692] cryptd: max_cpu_qlen set to 1000
[    2.535385] ACPI: Added _OSI(Module Device)
[    2.535386] ACPI: Added _OSI(Processor Device)
[    2.535387] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.535387] ACPI: Added _OSI(Processor Aggregator Device)
[    2.535388] ACPI: Added _OSI(Linux-Dell-Video)
[    2.535389] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    2.535390] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    2.539102] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    2.539980] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.539985] ACPI: BIOS _OSI(Darwin) query ignored
[    2.550075] ACPI: Interpreter enabled
[    2.550087] ACPI: (supports S0 S1 S4 S5)
[    2.550088] ACPI: Using IOAPIC for interrupt routing
[    2.550104] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    2.550652] PCI: MMCONFIG at [mem 0xe0000000-0xe7ffffff] reserved in ACPI motherboard resources
[    2.550656] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    2.550761] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.551132] ACPI: Enabled 4 GPEs in block 00 to 0F
[    2.567736] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    2.567741] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    2.567880] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[    2.568005] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    2.568646] PCI host bridge to bus 0000:00
[    2.568647] pci_bus 0000:00: Unknown NUMA node; performance will be reduced
[    2.568648] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    2.568649] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    2.568650] pci_bus 0000:00: root bus resource [mem 0xfef00000-0xffdfffff window]
[    2.568651] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfedfffff window]
[    2.568652] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfed3ffff window]
[    2.568652] pci_bus 0000:00: root bus resource [mem 0xfa300000-0xfebfffff window]
[    2.568653] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfa2fffff pref window]
[    2.568654] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xefffffff window]
[    2.568655] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    2.568655] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    2.568656] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    2.568657] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    2.568657] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    2.568660] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    2.568660] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    2.568661] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    2.568662] pci_bus 0000:00: root bus resource [bus 00-7f]
[    2.568703] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    2.569272] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    2.569751] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    2.570367] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    2.574587] pci 0000:00:07.1: reg 0x20: [io  0x2050-0x205f]
[    2.576232] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    2.576233] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    2.576234] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    2.576234] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    2.576421] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    2.576806] pci 0000:00:07.3: quirk: [io  0x0440-0x047f] claimed by PIIX4 ACPI
[    2.577061] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    2.577183] pci 0000:00:07.7: reg 0x10: [io  0x2000-0x203f]
[    2.577258] pci 0000:00:07.7: reg 0x14: [mem 0xffbf0000-0xffbf1fff 64bit]
[    2.577900] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    2.579661] pci 0000:00:0f.0: reg 0x10: [io  0x2040-0x204f]
[    2.581660] pci 0000:00:0f.0: reg 0x14: [mem 0xf0000000-0xf7ffffff pref]
[    2.583660] pci 0000:00:0f.0: reg 0x18: [mem 0xfb800000-0xfbffffff]
[    2.591661] pci 0000:00:0f.0: reg 0x30: [mem 0xffff8000-0xffffffff pref]
[    2.591693] pci 0000:00:0f.0: BAR 1: assigned to efifb
[    2.592093] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    2.592829] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    2.593615] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    2.593964] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    2.594751] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    2.595095] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    2.595875] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    2.596212] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    2.596976] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    2.597306] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    2.598059] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    2.598387] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    2.599145] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    2.599480] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    2.600246] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    2.600599] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    2.601371] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    2.601701] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    2.602465] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    2.602804] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    2.603577] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    2.603924] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    2.604690] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    2.605023] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    2.605788] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    2.606128] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    2.606902] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    2.607240] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    2.607998] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    2.608326] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    2.609106] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    2.609435] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    2.610240] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    2.610572] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    2.611331] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    2.611669] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    2.612437] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    2.612770] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    2.613526] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    2.613866] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    2.614621] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    2.614946] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    2.615740] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    2.616076] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    2.616862] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    2.617196] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    2.617965] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    2.618292] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    2.619061] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    2.619392] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    2.620149] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    2.620476] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    2.621244] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    2.621578] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    2.622330] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    2.622659] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    2.623418] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    2.623751] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    2.624502] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    2.624826] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    2.625597] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    2.625923] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    2.626680] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    2.627021] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    2.627788] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    2.628149] pci_bus 0000:01: extended config space not accessible
[    2.628190] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.628381] pci_bus 0000:02: extended config space not accessible
[    2.628548] acpiphp: Slot [32] registered
[    2.628556] acpiphp: Slot [33] registered
[    2.628564] acpiphp: Slot [34] registered
[    2.628572] acpiphp: Slot [35] registered
[    2.628580] acpiphp: Slot [36] registered
[    2.628588] acpiphp: Slot [37] registered
[    2.628595] acpiphp: Slot [38] registered
[    2.628603] acpiphp: Slot [39] registered
[    2.628610] acpiphp: Slot [40] registered
[    2.628618] acpiphp: Slot [41] registered
[    2.628625] acpiphp: Slot [42] registered
[    2.628634] acpiphp: Slot [43] registered
[    2.628641] acpiphp: Slot [44] registered
[    2.628649] acpiphp: Slot [45] registered
[    2.628657] acpiphp: Slot [46] registered
[    2.628665] acpiphp: Slot [47] registered
[    2.628673] acpiphp: Slot [48] registered
[    2.628681] acpiphp: Slot [49] registered
[    2.628689] acpiphp: Slot [50] registered
[    2.628696] acpiphp: Slot [51] registered
[    2.628705] acpiphp: Slot [52] registered
[    2.628712] acpiphp: Slot [53] registered
[    2.628720] acpiphp: Slot [54] registered
[    2.628728] acpiphp: Slot [55] registered
[    2.628736] acpiphp: Slot [56] registered
[    2.628743] acpiphp: Slot [57] registered
[    2.628751] acpiphp: Slot [58] registered
[    2.628759] acpiphp: Slot [59] registered
[    2.628766] acpiphp: Slot [60] registered
[    2.628773] acpiphp: Slot [61] registered
[    2.628782] acpiphp: Slot [62] registered
[    2.628789] acpiphp: Slot [63] registered
[    2.628823] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    2.628843] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    2.628868] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    2.628901] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    2.628902] pci 0000:00:11.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    2.628903] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    2.628904] pci 0000:00:11.0:   bridge window [mem 0xfef00000-0xffdfffff window] (subtractive decode)
[    2.628905] pci 0000:00:11.0:   bridge window [mem 0xfed45000-0xfedfffff window] (subtractive decode)
[    2.628906] pci 0000:00:11.0:   bridge window [mem 0xfec10000-0xfed3ffff window] (subtractive decode)
[    2.628906] pci 0000:00:11.0:   bridge window [mem 0xfa300000-0xfebfffff window] (subtractive decode)
[    2.628907] pci 0000:00:11.0:   bridge window [mem 0xf0000000-0xfa2fffff pref window] (subtractive decode)
[    2.628908] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xefffffff window] (subtractive decode)
[    2.628909] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    2.628909] pci 0000:00:11.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    2.628911] pci 0000:00:11.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    2.628912] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    2.628912] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    2.628913] pci 0000:00:11.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    2.628914] pci 0000:00:11.0:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    2.628914] pci 0000:00:11.0:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    2.629218] pci 0000:03:00.0: [15ad:07c0] type 00 class 0x010700
[    2.630660] pci 0000:03:00.0: reg 0x10: [io  0x4000-0x4007]
[    2.632660] pci 0000:03:00.0: reg 0x14: [mem 0xfea10000-0xfea17fff 64bit]
[    2.640661] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    2.641097] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    2.641385] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    2.641429] pci 0000:00:15.0: PCI bridge to [bus 03]
[    2.641446] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    2.641464] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    2.641734] pci 0000:00:15.1: PCI bridge to [bus 04]
[    2.641768] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    2.641802] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    2.642040] pci 0000:00:15.2: PCI bridge to [bus 05]
[    2.642073] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    2.642106] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    2.642337] pci 0000:00:15.3: PCI bridge to [bus 06]
[    2.642370] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    2.642403] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    2.642635] pci 0000:00:15.4: PCI bridge to [bus 07]
[    2.642667] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    2.642701] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    2.642935] pci 0000:00:15.5: PCI bridge to [bus 08]
[    2.642969] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    2.643003] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    2.643240] pci 0000:00:15.6: PCI bridge to [bus 09]
[    2.643274] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    2.643308] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    2.643545] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    2.643579] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    2.643613] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    2.643928] pci 0000:0b:00.0: [15ad:07b0] type 00 class 0x020000
[    2.644062] pci 0000:0b:00.0: reg 0x10: [mem 0xfe213000-0xfe213fff]
[    2.644105] pci 0000:0b:00.0: reg 0x14: [mem 0xfe212000-0xfe212fff]
[    2.644146] pci 0000:0b:00.0: reg 0x18: [mem 0xfe210000-0xfe211fff]
[    2.644189] pci 0000:0b:00.0: reg 0x1c: [io  0x3000-0x300f]
[    2.644316] pci 0000:0b:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    2.644750] pci 0000:0b:00.0: supports D1 D2
[    2.644751] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.645078] pci 0000:0b:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    2.645122] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    2.645140] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    2.645157] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    2.645422] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    2.645457] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    2.645490] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    2.645717] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    2.645751] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    2.645784] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    2.646015] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    2.646047] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    2.646081] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    2.646309] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    2.646343] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    2.646376] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    2.646604] pci 0000:00:16.5: PCI bridge to [bus 10]
[    2.646637] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    2.646667] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    2.646897] pci 0000:00:16.6: PCI bridge to [bus 11]
[    2.646931] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    2.646963] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    2.647193] pci 0000:00:16.7: PCI bridge to [bus 12]
[    2.647227] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    2.647260] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    2.647497] pci 0000:00:17.0: PCI bridge to [bus 13]
[    2.647530] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    2.647565] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    2.647802] pci 0000:00:17.1: PCI bridge to [bus 14]
[    2.647836] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    2.647869] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    2.648108] pci 0000:00:17.2: PCI bridge to [bus 15]
[    2.648143] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    2.648176] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    2.648411] pci 0000:00:17.3: PCI bridge to [bus 16]
[    2.648446] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    2.648479] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    2.648717] pci 0000:00:17.4: PCI bridge to [bus 17]
[    2.648751] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    2.648785] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    2.649025] pci 0000:00:17.5: PCI bridge to [bus 18]
[    2.649059] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    2.649092] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    2.649328] pci 0000:00:17.6: PCI bridge to [bus 19]
[    2.649362] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    2.649396] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    2.649637] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    2.649667] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    2.649702] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    2.649939] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    2.649973] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    2.650006] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    2.650242] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    2.650276] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    2.650308] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    2.650549] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    2.650583] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    2.650618] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    2.650850] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    2.650885] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    2.650919] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    2.651155] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    2.651189] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    2.651222] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    2.651460] pci 0000:00:18.5: PCI bridge to [bus 20]
[    2.651494] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    2.651527] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    2.651759] pci 0000:00:18.6: PCI bridge to [bus 21]
[    2.651794] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    2.651827] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    2.652063] pci 0000:00:18.7: PCI bridge to [bus 22]
[    2.652097] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    2.652131] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    2.653663] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    2.653728] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    2.653787] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    2.653848] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    2.669288] iommu: Default domain type: Passthrough 
[    2.669288] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[    2.669288] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    2.669288] pci 0000:00:0f.0: vgaarb: bridge control possible
[    2.669288] vgaarb: loaded
[    2.669288] SCSI subsystem initialized
[    2.669288] ACPI: bus type USB registered
[    2.669288] usbcore: registered new interface driver usbfs
[    2.669288] usbcore: registered new interface driver hub
[    2.670419] usbcore: registered new device driver usb
[    2.670440] pps_core: LinuxPPS API ver. 1 registered
[    2.670440] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.670442] PTP clock support registered
[    2.671705] EDAC MC: Ver: 3.0.0
[    2.672706] Registered efivars operations
[    2.672723] PCI: Using ACPI for IRQ routing
[    2.675523] PCI: pci_cache_line_size set to 64 bytes
[    2.676228] e820: reserve RAM buffer [mem 0x0e0a1018-0x0fffffff]
[    2.676230] e820: reserve RAM buffer [mem 0x0e0a3018-0x0fffffff]
[    2.676231] e820: reserve RAM buffer [mem 0x0e0a6018-0x0fffffff]
[    2.676232] e820: reserve RAM buffer [mem 0x0ef24000-0x0fffffff]
[    2.676233] e820: reserve RAM buffer [mem 0x0ef3c000-0x0fffffff]
[    2.676233] e820: reserve RAM buffer [mem 0x0ef61000-0x0fffffff]
[    2.676234] e820: reserve RAM buffer [mem 0x0fee7000-0x0fffffff]
[    2.676361] NetLabel: Initializing
[    2.676362] NetLabel:  domain hash size = 128
[    2.676362] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    2.676371] NetLabel:  unlabeled traffic allowed by default
[    2.676377] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    2.676377] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    2.678310] clocksource: Switched to clocksource tsc-early
[    2.694687] VFS: Disk quotas dquot_6.6.0
[    2.694828] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.695006] pnp: PnP ACPI init
[    2.695136] system 00:00: [io  0x0440-0x047f] has been reserved
[    2.695138] system 00:00: [io  0x5658-0x5659] has been reserved
[    2.695139] system 00:00: [io  0x5670] has been reserved
[    2.695140] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    2.695144] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.695161] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    2.695174] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    2.695186] pnp 00:03: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
[    2.695326] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    2.695328] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    2.696352] system 00:05: [io  0x0400-0x041f] has been reserved
[    2.696353] system 00:05: [mem 0xe0000000-0xe7ffffff] has been reserved
[    2.696354] system 00:05: [mem 0xffc00000-0xffdfffff] could not be reserved
[    2.696356] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.697059] pnp: PnP ACPI: found 6 devices
[    2.703252] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.703272] pci 0000:00:0f.0: can't claim BAR 6 [mem 0xffff8000-0xffffffff pref]: no compatible bridge window
[    2.703273] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    2.703274] pci 0000:0b:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    2.703279] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    2.703280] pci 0000:00:15.1: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    2.703281] pci 0000:00:15.2: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    2.703282] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    2.703283] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    2.703284] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    2.703286] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    2.703286] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    2.703287] pci 0000:00:16.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    2.703288] pci 0000:00:16.1: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    2.703289] pci 0000:00:16.2: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    2.703290] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    2.703291] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    2.703292] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    2.703292] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    2.703293] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    2.703294] pci 0000:00:17.0: bridge window [io  0x1000-0x0fff] to [bus 13] add_size 1000
[    2.703295] pci 0000:00:17.1: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    2.703296] pci 0000:00:17.2: bridge window [io  0x1000-0x0fff] to [bus 15] add_size 1000
[    2.703297] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    2.703297] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    2.703298] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    2.703299] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    2.703299] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    2.703300] pci 0000:00:18.0: bridge window [io  0x1000-0x0fff] to [bus 1b] add_size 1000
[    2.703301] pci 0000:00:18.1: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
[    2.703301] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    2.703302] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    2.703303] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    2.703303] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    2.703304] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    2.703305] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    2.703322] pci 0000:00:15.0: BAR 15: assigned [mem 0xfef00000-0xff0fffff 64bit pref]
[    2.703326] pci 0000:00:16.0: BAR 15: assigned [mem 0xff100000-0xff2fffff 64bit pref]
[    2.703327] pci 0000:00:0f.0: BAR 6: assigned [mem 0xff300000-0xff307fff pref]
[    2.703329] pci 0000:00:15.1: BAR 13: assigned [io  0x6000-0x6fff]
[    2.703329] pci 0000:00:15.2: BAR 13: assigned [io  0x7000-0x7fff]
[    2.703330] pci 0000:00:15.3: BAR 13: assigned [io  0x8000-0x8fff]
[    2.703331] pci 0000:00:15.4: BAR 13: assigned [io  0x9000-0x9fff]
[    2.703332] pci 0000:00:15.5: BAR 13: assigned [io  0xa000-0xafff]
[    2.703332] pci 0000:00:15.6: BAR 13: assigned [io  0xb000-0xbfff]
[    2.703333] pci 0000:00:15.7: BAR 13: assigned [io  0xc000-0xcfff]
[    2.703334] pci 0000:00:16.1: BAR 13: assigned [io  0xd000-0xdfff]
[    2.703335] pci 0000:00:16.2: BAR 13: assigned [io  0xe000-0xefff]
[    2.703336] pci 0000:00:16.3: BAR 13: assigned [io  0xf000-0xffff]
[    2.703337] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    2.703338] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    2.703339] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    2.703340] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    2.703341] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    2.703342] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    2.703343] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    2.703343] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    2.703345] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    2.703345] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    2.703346] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    2.703347] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    2.703348] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    2.703349] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    2.703350] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    2.703350] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    2.703352] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    2.703352] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    2.703353] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    2.703354] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    2.703355] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    2.703355] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    2.703357] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    2.703357] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    2.703358] pci 0000:00:18.0: BAR 13: no space for [io  size 0x1000]
[    2.703359] pci 0000:00:18.0: BAR 13: failed to assign [io  size 0x1000]
[    2.703360] pci 0000:00:18.1: BAR 13: no space for [io  size 0x1000]
[    2.703361] pci 0000:00:18.1: BAR 13: failed to assign [io  size 0x1000]
[    2.703362] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    2.703362] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    2.703363] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    2.703364] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    2.703365] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    2.703366] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    2.703367] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    2.703367] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    2.703368] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    2.703369] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    2.703370] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    2.703371] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    2.703374] pci 0000:00:18.7: BAR 13: assigned [io  0x6000-0x6fff]
[    2.703375] pci 0000:00:18.6: BAR 13: assigned [io  0x7000-0x7fff]
[    2.703376] pci 0000:00:18.5: BAR 13: assigned [io  0x8000-0x8fff]
[    2.703376] pci 0000:00:18.4: BAR 13: assigned [io  0x9000-0x9fff]
[    2.703377] pci 0000:00:18.3: BAR 13: assigned [io  0xa000-0xafff]
[    2.703378] pci 0000:00:18.2: BAR 13: assigned [io  0xb000-0xbfff]
[    2.703379] pci 0000:00:18.1: BAR 13: assigned [io  0xc000-0xcfff]
[    2.703380] pci 0000:00:18.0: BAR 13: assigned [io  0xd000-0xdfff]
[    2.703380] pci 0000:00:17.7: BAR 13: assigned [io  0xe000-0xefff]
[    2.703381] pci 0000:00:17.6: BAR 13: assigned [io  0xf000-0xffff]
[    2.703382] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    2.703383] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    2.703384] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    2.703385] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    2.703386] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    2.703386] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    2.703388] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    2.703388] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    2.703389] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    2.703390] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    2.703391] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    2.703392] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    2.703393] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    2.703393] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    2.703395] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    2.703395] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    2.703396] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    2.703397] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    2.703398] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    2.703399] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    2.703400] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    2.703400] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    2.703401] pci 0000:00:16.2: BAR 13: no space for [io  size 0x1000]
[    2.703402] pci 0000:00:16.2: BAR 13: failed to assign [io  size 0x1000]
[    2.703403] pci 0000:00:16.1: BAR 13: no space for [io  size 0x1000]
[    2.703404] pci 0000:00:16.1: BAR 13: failed to assign [io  size 0x1000]
[    2.703405] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    2.703406] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    2.703407] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    2.703408] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    2.703409] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    2.703409] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    2.703410] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    2.703411] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    2.703412] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    2.703413] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
[    2.703414] pci 0000:00:15.2: BAR 13: no space for [io  size 0x1000]
[    2.703414] pci 0000:00:15.2: BAR 13: failed to assign [io  size 0x1000]
[    2.703416] pci 0000:00:15.1: BAR 13: no space for [io  size 0x1000]
[    2.703416] pci 0000:00:15.1: BAR 13: failed to assign [io  size 0x1000]
[    2.703418] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.703488] pci 0000:00:11.0: PCI bridge to [bus 02]
[    2.703496] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    2.703515] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    2.703528] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    2.703554] pci 0000:03:00.0: BAR 6: assigned [mem 0xfea00000-0xfea0ffff pref]
[    2.703555] pci 0000:00:15.0: PCI bridge to [bus 03]
[    2.703562] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    2.703581] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    2.703594] pci 0000:00:15.0:   bridge window [mem 0xfef00000-0xff0fffff 64bit pref]
[    2.703619] pci 0000:00:15.1: PCI bridge to [bus 04]
[    2.703638] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    2.703651] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    2.703679] pci 0000:00:15.2: PCI bridge to [bus 05]
[    2.703698] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    2.703711] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    2.703736] pci 0000:00:15.3: PCI bridge to [bus 06]
[    2.703755] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    2.703768] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    2.703793] pci 0000:00:15.4: PCI bridge to [bus 07]
[    2.703813] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    2.703826] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    2.703851] pci 0000:00:15.5: PCI bridge to [bus 08]
[    2.703870] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    2.703883] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    2.703908] pci 0000:00:15.6: PCI bridge to [bus 09]
[    2.703927] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    2.703940] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    2.703965] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    2.703984] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    2.703997] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    2.704023] pci 0000:0b:00.0: BAR 6: assigned [mem 0xfe200000-0xfe20ffff pref]
[    2.704024] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    2.704030] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    2.704050] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    2.704062] pci 0000:00:16.0:   bridge window [mem 0xff100000-0xff2fffff 64bit pref]
[    2.704088] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    2.704107] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    2.704120] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    2.704145] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    2.704164] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    2.704177] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    2.704202] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    2.704221] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    2.704234] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    2.704260] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    2.704279] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    2.704292] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    2.704317] pci 0000:00:16.5: PCI bridge to [bus 10]
[    2.704336] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    2.704349] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    2.704374] pci 0000:00:16.6: PCI bridge to [bus 11]
[    2.704393] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    2.704406] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    2.704431] pci 0000:00:16.7: PCI bridge to [bus 12]
[    2.704450] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    2.704463] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    2.704497] pci 0000:00:17.0: PCI bridge to [bus 13]
[    2.704515] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    2.704528] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    2.704551] pci 0000:00:17.1: PCI bridge to [bus 14]
[    2.704569] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    2.704582] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    2.704605] pci 0000:00:17.2: PCI bridge to [bus 15]
[    2.704623] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    2.704636] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    2.704663] pci 0000:00:17.3: PCI bridge to [bus 16]
[    2.704681] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    2.704693] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    2.704717] pci 0000:00:17.4: PCI bridge to [bus 17]
[    2.704735] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    2.704747] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    2.704771] pci 0000:00:17.5: PCI bridge to [bus 18]
[    2.704789] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    2.704801] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    2.704825] pci 0000:00:17.6: PCI bridge to [bus 19]
[    2.704831] pci 0000:00:17.6:   bridge window [io  0xf000-0xffff]
[    2.704850] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    2.704862] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    2.704886] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    2.704892] pci 0000:00:17.7:   bridge window [io  0xe000-0xefff]
[    2.704910] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    2.704922] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    2.704946] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    2.704953] pci 0000:00:18.0:   bridge window [io  0xd000-0xdfff]
[    2.704971] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    2.704983] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    2.705007] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    2.705013] pci 0000:00:18.1:   bridge window [io  0xc000-0xcfff]
[    2.705031] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    2.705043] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    2.705067] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    2.705074] pci 0000:00:18.2:   bridge window [io  0xb000-0xbfff]
[    2.705092] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    2.705104] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    2.705128] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    2.705134] pci 0000:00:18.3:   bridge window [io  0xa000-0xafff]
[    2.705152] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    2.705165] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    2.705189] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    2.705195] pci 0000:00:18.4:   bridge window [io  0x9000-0x9fff]
[    2.705213] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    2.705225] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    2.705249] pci 0000:00:18.5: PCI bridge to [bus 20]
[    2.705256] pci 0000:00:18.5:   bridge window [io  0x8000-0x8fff]
[    2.705274] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    2.705303] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    2.705328] pci 0000:00:18.6: PCI bridge to [bus 21]
[    2.705334] pci 0000:00:18.6:   bridge window [io  0x7000-0x7fff]
[    2.705354] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    2.705366] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    2.705391] pci 0000:00:18.7: PCI bridge to [bus 22]
[    2.705398] pci 0000:00:18.7:   bridge window [io  0x6000-0x6fff]
[    2.705417] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    2.705430] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    2.705456] pci_bus 0000:00: resource 4 [io  0x0d00-0xffff window]
[    2.705457] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    2.705457] pci_bus 0000:00: resource 6 [mem 0xfef00000-0xffdfffff window]
[    2.705458] pci_bus 0000:00: resource 7 [mem 0xfed45000-0xfedfffff window]
[    2.705458] pci_bus 0000:00: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    2.705459] pci_bus 0000:00: resource 9 [mem 0xfa300000-0xfebfffff window]
[    2.705460] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    2.705460] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xefffffff window]
[    2.705461] pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
[    2.705461] pci_bus 0000:00: resource 13 [mem 0x000c4000-0x000c7fff window]
[    2.705462] pci_bus 0000:00: resource 14 [mem 0x000c8000-0x000cbfff window]
[    2.705462] pci_bus 0000:00: resource 15 [mem 0x000d4000-0x000d7fff window]
[    2.705463] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000dbfff window]
[    2.705463] pci_bus 0000:00: resource 17 [mem 0x000e4000-0x000e7fff window]
[    2.705464] pci_bus 0000:00: resource 18 [mem 0x000e8000-0x000ebfff window]
[    2.705465] pci_bus 0000:00: resource 19 [mem 0x000ec000-0x000effff window]
[    2.705465] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    2.705466] pci_bus 0000:02: resource 1 [mem 0xfc000000-0xfc9fffff]
[    2.705467] pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf84fffff 64bit pref]
[    2.705467] pci_bus 0000:02: resource 4 [io  0x0d00-0xffff window]
[    2.705468] pci_bus 0000:02: resource 5 [io  0x0000-0x0cf7 window]
[    2.705468] pci_bus 0000:02: resource 6 [mem 0xfef00000-0xffdfffff window]
[    2.705469] pci_bus 0000:02: resource 7 [mem 0xfed45000-0xfedfffff window]
[    2.705470] pci_bus 0000:02: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    2.705470] pci_bus 0000:02: resource 9 [mem 0xfa300000-0xfebfffff window]
[    2.705471] pci_bus 0000:02: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    2.705471] pci_bus 0000:02: resource 11 [mem 0xc0000000-0xefffffff window]
[    2.705472] pci_bus 0000:02: resource 12 [mem 0x000a0000-0x000bffff window]
[    2.705472] pci_bus 0000:02: resource 13 [mem 0x000c4000-0x000c7fff window]
[    2.705473] pci_bus 0000:02: resource 14 [mem 0x000c8000-0x000cbfff window]
[    2.705473] pci_bus 0000:02: resource 15 [mem 0x000d4000-0x000d7fff window]
[    2.705474] pci_bus 0000:02: resource 16 [mem 0x000d8000-0x000dbfff window]
[    2.705474] pci_bus 0000:02: resource 17 [mem 0x000e4000-0x000e7fff window]
[    2.705475] pci_bus 0000:02: resource 18 [mem 0x000e8000-0x000ebfff window]
[    2.705476] pci_bus 0000:02: resource 19 [mem 0x000ec000-0x000effff window]
[    2.705476] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    2.705477] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    2.705477] pci_bus 0000:03: resource 2 [mem 0xfef00000-0xff0fffff 64bit pref]
[    2.705478] pci_bus 0000:04: resource 1 [mem 0xfe900000-0xfe9fffff]
[    2.705479] pci_bus 0000:04: resource 2 [mem 0xfa200000-0xfa2fffff 64bit pref]
[    2.705479] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]
[    2.705480] pci_bus 0000:05: resource 2 [mem 0xfa100000-0xfa1fffff 64bit pref]
[    2.705480] pci_bus 0000:06: resource 1 [mem 0xfe700000-0xfe7fffff]
[    2.705481] pci_bus 0000:06: resource 2 [mem 0xfa000000-0xfa0fffff 64bit pref]
[    2.705482] pci_bus 0000:07: resource 1 [mem 0xfe600000-0xfe6fffff]
[    2.705482] pci_bus 0000:07: resource 2 [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    2.705483] pci_bus 0000:08: resource 1 [mem 0xfe500000-0xfe5fffff]
[    2.705483] pci_bus 0000:08: resource 2 [mem 0xf9e00000-0xf9efffff 64bit pref]
[    2.705484] pci_bus 0000:09: resource 1 [mem 0xfe400000-0xfe4fffff]
[    2.705484] pci_bus 0000:09: resource 2 [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    2.705485] pci_bus 0000:0a: resource 1 [mem 0xfe300000-0xfe3fffff]
[    2.705486] pci_bus 0000:0a: resource 2 [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    2.705486] pci_bus 0000:0b: resource 0 [io  0x3000-0x3fff]
[    2.705487] pci_bus 0000:0b: resource 1 [mem 0xfe200000-0xfe2fffff]
[    2.705487] pci_bus 0000:0b: resource 2 [mem 0xff100000-0xff2fffff 64bit pref]
[    2.705488] pci_bus 0000:0c: resource 1 [mem 0xfe100000-0xfe1fffff]
[    2.705488] pci_bus 0000:0c: resource 2 [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    2.705489] pci_bus 0000:0d: resource 1 [mem 0xfe000000-0xfe0fffff]
[    2.705489] pci_bus 0000:0d: resource 2 [mem 0xf9a00000-0xf9afffff 64bit pref]
[    2.705490] pci_bus 0000:0e: resource 1 [mem 0xfdf00000-0xfdffffff]
[    2.705490] pci_bus 0000:0e: resource 2 [mem 0xf9900000-0xf99fffff 64bit pref]
[    2.705491] pci_bus 0000:0f: resource 1 [mem 0xfde00000-0xfdefffff]
[    2.705492] pci_bus 0000:0f: resource 2 [mem 0xf9800000-0xf98fffff 64bit pref]
[    2.705492] pci_bus 0000:10: resource 1 [mem 0xfdd00000-0xfddfffff]
[    2.705493] pci_bus 0000:10: resource 2 [mem 0xf9700000-0xf97fffff 64bit pref]
[    2.705493] pci_bus 0000:11: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    2.705494] pci_bus 0000:11: resource 2 [mem 0xf9600000-0xf96fffff 64bit pref]
[    2.705494] pci_bus 0000:12: resource 1 [mem 0xfdb00000-0xfdbfffff]
[    2.705495] pci_bus 0000:12: resource 2 [mem 0xf9500000-0xf95fffff 64bit pref]
[    2.705495] pci_bus 0000:13: resource 1 [mem 0xfda00000-0xfdafffff]
[    2.705496] pci_bus 0000:13: resource 2 [mem 0xf9400000-0xf94fffff 64bit pref]
[    2.705497] pci_bus 0000:14: resource 1 [mem 0xfd900000-0xfd9fffff]
[    2.705497] pci_bus 0000:14: resource 2 [mem 0xf9300000-0xf93fffff 64bit pref]
[    2.705498] pci_bus 0000:15: resource 1 [mem 0xfd800000-0xfd8fffff]
[    2.705498] pci_bus 0000:15: resource 2 [mem 0xf9200000-0xf92fffff 64bit pref]
[    2.705499] pci_bus 0000:16: resource 1 [mem 0xfd700000-0xfd7fffff]
[    2.705499] pci_bus 0000:16: resource 2 [mem 0xf9100000-0xf91fffff 64bit pref]
[    2.705500] pci_bus 0000:17: resource 1 [mem 0xfd600000-0xfd6fffff]
[    2.705500] pci_bus 0000:17: resource 2 [mem 0xf9000000-0xf90fffff 64bit pref]
[    2.705501] pci_bus 0000:18: resource 1 [mem 0xfd500000-0xfd5fffff]
[    2.705501] pci_bus 0000:18: resource 2 [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    2.705502] pci_bus 0000:19: resource 0 [io  0xf000-0xffff]
[    2.705502] pci_bus 0000:19: resource 1 [mem 0xfd400000-0xfd4fffff]
[    2.705503] pci_bus 0000:19: resource 2 [mem 0xf8e00000-0xf8efffff 64bit pref]
[    2.705504] pci_bus 0000:1a: resource 0 [io  0xe000-0xefff]
[    2.705504] pci_bus 0000:1a: resource 1 [mem 0xfd300000-0xfd3fffff]
[    2.705505] pci_bus 0000:1a: resource 2 [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    2.705505] pci_bus 0000:1b: resource 0 [io  0xd000-0xdfff]
[    2.705506] pci_bus 0000:1b: resource 1 [mem 0xfd200000-0xfd2fffff]
[    2.705506] pci_bus 0000:1b: resource 2 [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    2.705507] pci_bus 0000:1c: resource 0 [io  0xc000-0xcfff]
[    2.705507] pci_bus 0000:1c: resource 1 [mem 0xfd100000-0xfd1fffff]
[    2.705508] pci_bus 0000:1c: resource 2 [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    2.705508] pci_bus 0000:1d: resource 0 [io  0xb000-0xbfff]
[    2.705509] pci_bus 0000:1d: resource 1 [mem 0xfd000000-0xfd0fffff]
[    2.705509] pci_bus 0000:1d: resource 2 [mem 0xf8a00000-0xf8afffff 64bit pref]
[    2.705510] pci_bus 0000:1e: resource 0 [io  0xa000-0xafff]
[    2.705510] pci_bus 0000:1e: resource 1 [mem 0xfcf00000-0xfcffffff]
[    2.705511] pci_bus 0000:1e: resource 2 [mem 0xf8900000-0xf89fffff 64bit pref]
[    2.705512] pci_bus 0000:1f: resource 0 [io  0x9000-0x9fff]
[    2.705512] pci_bus 0000:1f: resource 1 [mem 0xfce00000-0xfcefffff]
[    2.705513] pci_bus 0000:1f: resource 2 [mem 0xf8800000-0xf88fffff 64bit pref]
[    2.705513] pci_bus 0000:20: resource 0 [io  0x8000-0x8fff]
[    2.705514] pci_bus 0000:20: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    2.705514] pci_bus 0000:20: resource 2 [mem 0xf8700000-0xf87fffff 64bit pref]
[    2.705515] pci_bus 0000:21: resource 0 [io  0x7000-0x7fff]
[    2.705515] pci_bus 0000:21: resource 1 [mem 0xfcc00000-0xfccfffff]
[    2.705516] pci_bus 0000:21: resource 2 [mem 0xf8600000-0xf86fffff 64bit pref]
[    2.705516] pci_bus 0000:22: resource 0 [io  0x6000-0x6fff]
[    2.705517] pci_bus 0000:22: resource 1 [mem 0xfcb00000-0xfcbfffff]
[    2.705517] pci_bus 0000:22: resource 2 [mem 0xf8500000-0xf85fffff 64bit pref]
[    2.705775] NET: Registered protocol family 2
[    2.706073] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.706304] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    2.706927] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.707080] TCP: Hash tables configured (established 524288 bind 65536)
[    2.707229] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.707567] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.708059] NET: Registered protocol family 1
[    2.708063] NET: Registered protocol family 44
[    2.708078] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    2.708159] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    2.708407] PCI: CLS 32 bytes, default 64
[    2.708434] Trying to unpack rootfs image as initramfs...
[    3.678779] Freeing initrd memory: 73160K
[    3.678810] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    3.678811] software IO TLB: mapped [mem 0xbc000000-0xc0000000] (64MB)
[    3.717243] Initialise system trusted keyrings
[    3.717252] Key type blacklist registered
[    3.717545] workingset: timestamp_bits=36 max_order=28 bucket_order=0
[    3.718484] zbud: loaded
[    3.721480] integrity: Platform Keyring initialized
[    3.729630] NET: Registered protocol family 38
[    3.729634] Key type asymmetric registered
[    3.729635] Asymmetric key parser 'x509' registered
[    3.729642] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    3.730211] io scheduler mq-deadline registered
[    3.730212] io scheduler kyber registered
[    3.730246] io scheduler bfq registered
[    3.737291] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    3.737753] pcieport 0000:00:15.0: PME: Signaling with IRQ 24
[    3.737819] pcieport 0000:00:15.0: pciehp: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.738491] pcieport 0000:00:15.1: PME: Signaling with IRQ 25
[    3.738543] pcieport 0000:00:15.1: pciehp: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.739148] pcieport 0000:00:15.2: PME: Signaling with IRQ 26
[    3.739199] pcieport 0000:00:15.2: pciehp: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.739808] pcieport 0000:00:15.3: PME: Signaling with IRQ 27
[    3.739859] pcieport 0000:00:15.3: pciehp: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.740424] pcieport 0000:00:15.4: PME: Signaling with IRQ 28
[    3.740475] pcieport 0000:00:15.4: pciehp: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.741116] pcieport 0000:00:15.5: PME: Signaling with IRQ 29
[    3.741166] pcieport 0000:00:15.5: pciehp: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.741777] pcieport 0000:00:15.6: PME: Signaling with IRQ 30
[    3.741829] pcieport 0000:00:15.6: pciehp: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.742389] pcieport 0000:00:15.7: PME: Signaling with IRQ 31
[    3.742439] pcieport 0000:00:15.7: pciehp: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.743038] pcieport 0000:00:16.0: PME: Signaling with IRQ 32
[    3.743089] pcieport 0000:00:16.0: pciehp: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.743693] pcieport 0000:00:16.1: PME: Signaling with IRQ 33
[    3.743745] pcieport 0000:00:16.1: pciehp: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.744342] pcieport 0000:00:16.2: PME: Signaling with IRQ 34
[    3.744393] pcieport 0000:00:16.2: pciehp: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.744987] pcieport 0000:00:16.3: PME: Signaling with IRQ 35
[    3.745041] pcieport 0000:00:16.3: pciehp: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.745636] pcieport 0000:00:16.4: PME: Signaling with IRQ 36
[    3.745692] pcieport 0000:00:16.4: pciehp: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.746284] pcieport 0000:00:16.5: PME: Signaling with IRQ 37
[    3.746336] pcieport 0000:00:16.5: pciehp: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.746932] pcieport 0000:00:16.6: PME: Signaling with IRQ 38
[    3.746984] pcieport 0000:00:16.6: pciehp: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.747581] pcieport 0000:00:16.7: PME: Signaling with IRQ 39
[    3.747632] pcieport 0000:00:16.7: pciehp: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.748209] pcieport 0000:00:17.0: PME: Signaling with IRQ 40
[    3.748261] pcieport 0000:00:17.0: pciehp: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.748859] pcieport 0000:00:17.1: PME: Signaling with IRQ 41
[    3.748909] pcieport 0000:00:17.1: pciehp: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.750335] pcieport 0000:00:17.2: PME: Signaling with IRQ 42
[    3.750388] pcieport 0000:00:17.2: pciehp: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.750989] pcieport 0000:00:17.3: PME: Signaling with IRQ 43
[    3.751040] pcieport 0000:00:17.3: pciehp: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.751633] pcieport 0000:00:17.4: PME: Signaling with IRQ 44
[    3.751690] pcieport 0000:00:17.4: pciehp: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.752284] pcieport 0000:00:17.5: PME: Signaling with IRQ 45
[    3.752335] pcieport 0000:00:17.5: pciehp: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.752971] pcieport 0000:00:17.6: PME: Signaling with IRQ 46
[    3.753022] pcieport 0000:00:17.6: pciehp: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.753645] pcieport 0000:00:17.7: PME: Signaling with IRQ 47
[    3.753703] pcieport 0000:00:17.7: pciehp: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.754325] pcieport 0000:00:18.0: PME: Signaling with IRQ 48
[    3.754376] pcieport 0000:00:18.0: pciehp: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.754977] pcieport 0000:00:18.1: PME: Signaling with IRQ 49
[    3.755028] pcieport 0000:00:18.1: pciehp: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.755611] pcieport 0000:00:18.2: PME: Signaling with IRQ 50
[    3.755672] pcieport 0000:00:18.2: pciehp: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.756269] pcieport 0000:00:18.3: PME: Signaling with IRQ 51
[    3.756321] pcieport 0000:00:18.3: pciehp: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.756924] pcieport 0000:00:18.4: PME: Signaling with IRQ 52
[    3.756976] pcieport 0000:00:18.4: pciehp: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.757573] pcieport 0000:00:18.5: PME: Signaling with IRQ 53
[    3.757626] pcieport 0000:00:18.5: pciehp: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.758238] pcieport 0000:00:18.6: PME: Signaling with IRQ 54
[    3.758290] pcieport 0000:00:18.6: pciehp: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.758892] pcieport 0000:00:18.7: PME: Signaling with IRQ 55
[    3.758946] pcieport 0000:00:18.7: pciehp: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.759332] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    3.759357] efifb: probing for efifb
[    3.759657] efifb: framebuffer at 0xf0000000, using 3072k, total 3072k
[    3.759665] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    3.759666] efifb: scrolling: redraw
[    3.759667] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.759744] Console: switching to colour frame buffer device 128x48
[    3.762572] fb0: EFI VGA frame buffer device
[    3.762582] intel_idle: Please enable MWAIT in BIOS SETUP
[    3.762862] ACPI: AC Adapter [ACAD] (on-line)
[    3.762933] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    3.762978] ACPI: Power Button [PWRF]
[    3.774577] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.775027] Non-volatile memory driver v1.3
[    3.785888] rdac: device handler registered
[    3.786084] hp_sw: device handler registered
[    3.786085] emc: device handler registered
[    3.786573] alua: device handler registered
[    3.786672] libphy: Fixed MDIO Bus: probed
[    3.786705] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.786707] ehci-pci: EHCI PCI platform driver
[    3.786717] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.786719] ohci-pci: OHCI PCI platform driver
[    3.786728] uhci_hcd: USB Universal Host Controller Interface driver
[    3.786772] usbcore: registered new interface driver usbserial_generic
[    3.786775] usbserial: USB Serial support registered for generic
[    3.786817] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    3.789031] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.789035] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.789143] mousedev: PS/2 mouse device common for all mice
[    3.809865] rtc_cmos 00:01: registered as rtc0
[    3.810087] rtc_cmos 00:01: setting system clock to 2020-10-12T16:35:05 UTC (1602520505)
[    3.810133] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    3.810167] intel_pstate: CPU model not supported
[    3.810286] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    3.810826] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    3.811120] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    3.811523] EFI Variables Facility v0.08 2004-May-17
[    3.817279] hid: raw HID events driver (C) Jiri Kosina
[    3.817320] usbcore: registered new interface driver usbhid
[    3.817320] usbhid: USB HID core driver
[    3.817799] drop_monitor: Initializing network drop monitor service
[    3.817890] Initializing XFRM netlink socket
[    3.818119] NET: Registered protocol family 10
[    3.818958] Segment Routing with IPv6
[    3.818974] NET: Registered protocol family 17
[    3.819028] mpls_gso: MPLS GSO support
[    3.826588] IPI shorthand broadcast: enabled
[    3.826602] AVX2 version of gcm_enc/dec engaged.
[    3.826603] AES CTR mode by8 optimization enabled
[    3.841679] sched_clock: Marking stable (3837754996, 3915410)->(4007028549, -165358143)
[    3.842415] registered taskstats version 1
[    3.842432] Loading compiled-in X.509 certificates
[    3.871471] Loaded X.509 cert 'Build time autogenerated kernel key: 3f550a85e9748402bb395641517c60a9996d9380'
[    3.871570] zswap: loaded using pool lzo/zbud
[    3.878693] Key type big_key registered
[    3.881222] Key type encrypted registered
[    3.881653] integrity: Loading X.509 certificate: UEFI:db
[    3.881745] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    3.881746] integrity: Loading X.509 certificate: UEFI:db
[    3.881916] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    3.881916] integrity: Loading X.509 certificate: UEFI:db
[    3.881932] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    3.881932] integrity: Loading X.509 certificate: UEFI:db
[    3.881949] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    3.882221] integrity: Loading X.509 certificate: UEFI:MokListRT
[    3.882387] integrity: Loaded X.509 cert 'Red Hat Secure Boot (CA key 1): 4016841644ce3a810408050766e8f8a29c65f85c'
[    3.883074] ima: No TPM chip found, activating TPM-bypass!
[    3.883077] ima: Allocated hash algorithm: sha1
[    3.883083] ima: No architecture policies found
[    3.883114] evm: Initialising EVM extended attributes:
[    3.883114] evm: security.selinux
[    3.883115] evm: security.ima
[    3.883115] evm: security.capability
[    3.883116] evm: HMAC attrs: 0x1
[    3.889542] Freeing unused decrypted memory: 2040K
[    3.890681] Freeing unused kernel image (initmem) memory: 2332K
[    3.896720] Write protecting the kernel read-only data: 20480k
[    3.898203] Freeing unused kernel image (text/rodata gap) memory: 2040K
[    3.899333] Freeing unused kernel image (rodata/data gap) memory: 1688K
[    3.899438] Run /init as init process
[    3.899439]   with arguments:
[    3.899440]     /init
[    3.899440]     rhgb
[    3.899441]   with environment:
[    3.899441]     HOME=/
[    3.899442]     TERM=linux
[    3.899442]     BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.7.0
[    3.899443]     crashkernel=auto
[    3.924176] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    3.924200] systemd[1]: Detected virtualization vmware.
[    3.924203] systemd[1]: Detected architecture x86-64.
[    3.924205] systemd[1]: Running in initial RAM disk.
[    3.933758] systemd[1]: Set hostname to <localhost.localdomain>.
[    3.983185] random: systemd: uninitialized urandom read (16 bytes read)
[    3.983254] systemd[1]: Listening on udev Control Socket.
[    3.983287] random: systemd: uninitialized urandom read (16 bytes read)
[    3.983292] systemd[1]: Reached target Swap.
[    3.983301] random: systemd: uninitialized urandom read (16 bytes read)
[    3.983336] systemd[1]: Listening on udev Kernel Socket.
[    3.983348] systemd[1]: Reached target Slices.
[    3.983355] systemd[1]: Reached target Local File Systems.
[    4.485292] VMware PVSCSI driver - version 1.0.7.0-k
[    4.485979] vmw_pvscsi: using 64bit dma
[    4.486128] vmw_pvscsi: max_id: 65
[    4.486129] vmw_pvscsi: setting ring_pages to 32
[    4.488667] vmw_pvscsi: enabling reqCallThreshold
[    4.491256] vmw_pvscsi: driver-based request coalescing enabled
[    4.491264] vmw_pvscsi: using MSI-X
[    4.491380] scsi host0: VMware PVSCSI storage adapter rev 2, req/cmp/msg rings: 32/32/1 pages, cmd_per_lun=254
[    4.491771] vmw_pvscsi 0000:03:00.0: VMware PVSCSI rev 2 host #0
[    4.492010] scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     2.0  PQ: 0 ANSI: 6
[    4.493603] VMware vmxnet3 virtual NIC driver - version 1.4.17.0-k-NAPI
[    4.493644] vmxnet3 0000:0b:00.0: # of Tx queues : 8, # of Rx queues : 8
[    4.493694] vmxnet3 0000:0b:00.0: enabling device (0000 -> 0003)
[    4.500354] vmxnet3 0000:0b:00.0 eth0: NIC Link is Up 10000 Mbps
[    4.511982] libata version 3.00 loaded.
[    4.517411] ata_piix 0000:00:07.1: version 2.13
[    4.518348] scsi host1: ata_piix
[    4.518523] scsi host2: ata_piix
[    4.518555] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x2050 irq 14
[    4.518556] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x2058 irq 15
[    4.737706] tsc: Refined TSC clocksource calibration: 2095.081 MHz
[    4.737794] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e3309d7adc, max_idle_ns: 440795300192 ns
[    4.738036] clocksource: Switched to clocksource tsc
[    4.742854] [drm] DMA map mode: Caching DMA mappings.
[    4.743043] [drm] Capabilities:
[    4.743043] [drm]   Rect copy.
[    4.743043] [drm]   Cursor.
[    4.743044] [drm]   Cursor bypass.
[    4.743044] [drm]   Cursor bypass 2.
[    4.743045] [drm]   8bit emulation.
[    4.743045] [drm]   Alpha cursor.
[    4.743045] [drm]   Extended Fifo.
[    4.743046] [drm]   Multimon.
[    4.743046] [drm]   Pitchlock.
[    4.743046] [drm]   Irq mask.
[    4.743046] [drm]   Display Topology.
[    4.743047] [drm]   GMR.
[    4.743047] [drm]   Traces.
[    4.743047] [drm]   GMR2.
[    4.743047] [drm]   Screen Object 2.
[    4.743048] [drm]   Command Buffers.
[    4.743048] [drm]   Command Buffers 2.
[    4.743048] [drm]   Guest Backed Resources.
[    4.743049] [drm]   DX Features.
[    4.743049] [drm]   HP Command Queue.
[    4.743049] [drm] Capabilities2:
[    4.743050] [drm]   Grow oTable.
[    4.743050] [drm]   IntraSurface copy.
[    4.743051] [drm] Max GMR ids is 64
[    4.743052] [drm] Max number of GMR pages is 65536
[    4.743052] [drm] Max dedicated hypervisor surface memory is 0 kiB
[    4.743053] [drm] Maximum display memory size is 8192 kiB
[    4.743053] [drm] VRAM at 0xf0000000 size is 8192 kiB
[    4.743054] [drm] MMIO at 0xfb800000 size is 256 kiB
[    4.743093] vmwgfx 0000:00:0f.0: BAR 1: can't reserve [mem 0xf0000000-0xf7ffffff pref]
[    4.743094] [drm] It appears like vesafb is loaded. Ignore above error if any.
[    4.748379] [TTM] Zone  kernel: Available graphics memory: 528425124 KiB
[    4.748381] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    4.748382] [TTM] Initializing pool allocator
[    4.748865] [TTM] Initializing DMA pool allocator
[    4.749969] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.750050] [drm] Screen Target Display device initialized
[    4.750097] [drm] width 1024
[    4.750103] [drm] height 768
[    4.750108] [drm] bpp 32
[    4.753632] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
[    4.754570] [drm] Using command buffers with DMA pool.
[    4.754576] [drm] Atomic: yes.
[    4.760393] checking generic (f0000000 300000) vs hw (f0000000 800000)
[    4.760395] fb0: switching to svgadrmfb from EFI VGA
[    4.761767] Console: switching to colour dummy device 80x25
[    4.768361] fbcon: svgadrmfb (fb0) is primary device
[    4.769883] Console: switching to colour frame buffer device 128x48
[    4.771006] vmxnet3 0000:0b:00.0 ens192: renamed from eth0
[    4.774696] [drm] Initialized vmwgfx 2.18.0 20200114 for 0000:00:0f.0 on minor 0
[    4.783585] sd 0:0:0:0: [sda] 41943040 512-byte logical blocks: (21.5 GB/20.0 GiB)
[    4.783623] sd 0:0:0:0: [sda] Write Protect is off
[    4.783624] sd 0:0:0:0: [sda] Mode Sense: 61 00 00 00
[    4.783654] sd 0:0:0:0: [sda] Cache data unavailable
[    4.783655] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    4.798449]  sda: sda1 sda2
[    4.799785] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.917920] random: fast init done
[    5.017689] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    5.241829] random: crng init done
[    5.241831] random: 7 urandom warning(s) missed due to ratelimiting
[    5.332954] systemd-journald[735]: Received SIGTERM from PID 1 (systemd).
[    5.362225] printk: systemd: 22 output lines suppressed due to ratelimiting
[    5.414682] SELinux:  Runtime disable is deprecated, use selinux=0 on the kernel cmdline.
[    5.414709] SELinux:  Disabled at runtime.
[    5.451759] audit: type=1404 audit(1602520507.141:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1
[    5.474499] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    5.474517] systemd[1]: Detected virtualization vmware.
[    5.474520] systemd[1]: Detected architecture x86-64.
[    5.475115] systemd[1]: Set hostname to <localhost.localdomain>.
[    5.522483] systemd[1]: Configuration file /usr/lib/systemd/system/rc-local.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    5.569743] systemd[1]: Stopped Switch Root.
[    5.569905] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[    5.569940] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    5.569947] systemd[1]: Stopped Journal Service.
[    5.570615] systemd[1]: Starting Journal Service...
[    5.583372] EXT4-fs (sda2): re-mounted. Opts: (null)
[    5.796112] systemd-journald[4271]: Received request to flush runtime journal from PID 1
[    5.917254] piix4_smbus 0000:00:07.3: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
[    5.953963] vmw_vmci 0000:00:07.7: enabling device (0000 -> 0003)
[    5.956336] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x12000, irq 16
[    5.956426] vmw_vmci 0000:00:07.7: Using capabilities 0x1c
[    5.957641] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    5.958945] Guest personality initialized and is active
[    5.959452] VMCI host device registered (name=vmci, major=10, minor=61)
[    5.959453] Initialized host personality
[    5.981566] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    6.043550] NET: Registered protocol family 40
[    6.311822] vmxnet3 0000:0b:00.0 ens192: intr type 3, mode 0, 9 vectors allocated
[    6.312880] vmxnet3 0000:0b:00.0 ens192: NIC Link is Up 10000 Mbps

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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-10-12 17:21   ` Rahul Gopakumar
@ 2020-10-13  5:08     ` bhe
  2020-10-13 13:17     ` bhe
  1 sibling, 0 replies; 21+ messages in thread
From: bhe @ 2020-10-13  5:08 UTC (permalink / raw)
  To: Rahul Gopakumar
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

On 10/12/20 at 05:21pm, Rahul Gopakumar wrote:
> Hi Baoquan,
> 
> Attached collected dmesg logs for with and without
> commit after adding memblock=debug to kernel cmdline.

Thanks, I have got the root cause, will make a patch for your testing
soon.


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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-10-12 17:21   ` Rahul Gopakumar
  2020-10-13  5:08     ` bhe
@ 2020-10-13 13:17     ` bhe
  2020-10-20 13:45       ` Rahul Gopakumar
  1 sibling, 1 reply; 21+ messages in thread
From: bhe @ 2020-10-13 13:17 UTC (permalink / raw)
  To: Rahul Gopakumar
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

Hi Rahul,

On 10/12/20 at 05:21pm, Rahul Gopakumar wrote:
> Hi Baoquan,
> 
> Attached collected dmesg logs for with and without
> commit after adding memblock=debug to kernel cmdline.

Can you test below draft patch and see if it works for you? 

From a2ea6caef3c73ad9efb2dd2b48039065fe430bb2 Mon Sep 17 00:00:00 2001
From: Baoquan He <bhe@redhat.com>
Date: Tue, 13 Oct 2020 20:05:30 +0800
Subject: [PATCH] mm: make memmap defer init only take effect per zone

Deferred struct page init is designed to work per zone. However since
commit 73a6e474cb376 ("mm: memmap_init: iterate over memblock regions
rather that check each PFN"), the handling is mistakenly done in all memory
ranges inside one zone. Especially in those unmovable zones of multiple nodes,
memblock reservation split them into many memory ranges. This makes
initialized struct page more than expected in early stage, then increases
much boot time.

Let's fix it to make the memmap defer init handled in zone wide, but not in
memory range of one zone.

Signed-off-by: Baoquan He <bhe@redhat.com>
---
 arch/ia64/mm/init.c | 4 ++--
 include/linux/mm.h  | 5 +++--
 mm/memory_hotplug.c | 2 +-
 mm/page_alloc.c     | 6 +++---
 4 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c
index ef12e097f318..27ca549ff47e 100644
--- a/arch/ia64/mm/init.c
+++ b/arch/ia64/mm/init.c
@@ -536,7 +536,7 @@ virtual_memmap_init(u64 start, u64 end, void *arg)
 
 	if (map_start < map_end)
 		memmap_init_zone((unsigned long)(map_end - map_start),
-				 args->nid, args->zone, page_to_pfn(map_start),
+				 args->nid, args->zone, page_to_pfn(map_start), page_to_pfn(map_end),
 				 MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
 	return 0;
 }
@@ -546,7 +546,7 @@ memmap_init (unsigned long size, int nid, unsigned long zone,
 	     unsigned long start_pfn)
 {
 	if (!vmem_map) {
-		memmap_init_zone(size, nid, zone, start_pfn,
+		memmap_init_zone(size, nid, zone, start_pfn, start_pfn + size,
 				 MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
 	} else {
 		struct page *start;
diff --git a/include/linux/mm.h b/include/linux/mm.h
index ef360fe70aaf..5f9fc61d5be2 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -2439,8 +2439,9 @@ extern int __meminit __early_pfn_to_nid(unsigned long pfn,
 #endif
 
 extern void set_dma_reserve(unsigned long new_dma_reserve);
-extern void memmap_init_zone(unsigned long, int, unsigned long, unsigned long,
-		enum meminit_context, struct vmem_altmap *, int migratetype);
+extern void memmap_init_zone(unsigned long, int, unsigned long,
+		unsigned long, unsigned long, enum meminit_context,
+		struct vmem_altmap *, int migratetype);
 extern void setup_per_zone_wmarks(void);
 extern int __meminit init_per_zone_wmark_min(void);
 extern void mem_init(void);
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index b44d4c7ba73b..f9a37e6abc1c 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -732,7 +732,7 @@ void __ref move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
 	 * expects the zone spans the pfn range. All the pages in the range
 	 * are reserved so nobody should be touching them so we should be safe
 	 */
-	memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn,
+	memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn, 0,
 			 MEMINIT_HOTPLUG, altmap, migratetype);
 
 	set_zone_contiguous(zone);
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 2ebf9ddafa3a..e8b19fdd18ec 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -6044,7 +6044,7 @@ overlap_memmap_init(unsigned long zone, unsigned long *pfn)
  * zone stats (e.g., nr_isolate_pageblock) are touched.
  */
 void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
-		unsigned long start_pfn,
+		unsigned long start_pfn, unsigned long zone_end_pfn,
 		enum meminit_context context,
 		struct vmem_altmap *altmap, int migratetype)
 {
@@ -6080,7 +6080,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
 		if (context == MEMINIT_EARLY) {
 			if (overlap_memmap_init(zone, &pfn))
 				continue;
-			if (defer_init(nid, pfn, end_pfn))
+			if (defer_init(nid, pfn, zone_end_pfn))
 				break;
 		}
 
@@ -6194,7 +6194,7 @@ void __meminit __weak memmap_init(unsigned long size, int nid,
 
 		if (end_pfn > start_pfn) {
 			size = end_pfn - start_pfn;
-			memmap_init_zone(size, nid, zone, start_pfn,
+			memmap_init_zone(size, nid, zone, start_pfn, range_end_pfn,
 					 MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
 		}
 	}
-- 
2.17.2


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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-10-13 13:17     ` bhe
@ 2020-10-20 13:45       ` Rahul Gopakumar
  2020-10-20 15:18         ` bhe
  0 siblings, 1 reply; 21+ messages in thread
From: Rahul Gopakumar @ 2020-10-20 13:45 UTC (permalink / raw)
  To: bhe
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

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

Hi Baoquan,

We had some trouble applying the patch to problem commit and the latest upstream commit. Steven (CC'ed) helped us by providing the updated draft patch. We applied it on the latest commit (3e4fb4346c781068610d03c12b16c0cfb0fd24a3), and it doesn't look like improving the performance numbers.

Patch on latest commit - 20.161 secs
Vanilla latest commit - 19.50 secs

Here is the draft patch we tried

------------------------

diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c
index 8e7b8c6c576e..ff5fa4c3889e 100644
--- a/arch/ia64/mm/init.c
+++ b/arch/ia64/mm/init.c
@@ -537,7 +537,7 @@ virtual_memmap_init(u64 start, u64 end, void *arg)
 
         if (map_start < map_end)
                 memmap_init_zone((unsigned long)(map_end - map_start),
-                                args->nid, args->zone, page_to_pfn(map_start),
+                                args->nid, args->zone, page_to_pfn(map_start), page_to_pfn(map_end),
                                  MEMINIT_EARLY, NULL);
         return 0;
 }
@@ -547,7 +547,7 @@ memmap_init (unsigned long size, int nid, unsigned long zone,
              unsigned long start_pfn)
 {
         if (!vmem_map) {
-               memmap_init_zone(size, nid, zone, start_pfn,
+               memmap_init_zone(size, nid, zone, start_pfn, start_pfn + size,
                                  MEMINIT_EARLY, NULL);
         } else {
                 struct page *start;
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 16b799a0522c..65e34b370e33 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -2416,7 +2416,7 @@ extern int __meminit __early_pfn_to_nid(unsigned long pfn,
 
 extern void set_dma_reserve(unsigned long new_dma_reserve);
 extern void memmap_init_zone(unsigned long, int, unsigned long, unsigned long,
-               enum meminit_context, struct vmem_altmap *);
+               unsigned long, enum meminit_context, struct vmem_altmap *);
 extern void setup_per_zone_wmarks(void);
 extern int __meminit init_per_zone_wmark_min(void);
 extern void mem_init(void);
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index ce3e73e3a5c1..03fddd8f4b11 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -728,7 +728,7 @@ void __ref move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
          * expects the zone spans the pfn range. All the pages in the range
          * are reserved so nobody should be touching them so we should be safe
          */
-       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn,
+       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn, 0,
                          MEMINIT_HOTPLUG, altmap);
 
         set_zone_contiguous(zone);
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 780c8f023b28..fe80055ea59c 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -5989,8 +5989,8 @@ overlap_memmap_init(unsigned long zone, unsigned long *pfn)
  * done. Non-atomic initialization, single-pass.
  */
 void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
-               unsigned long start_pfn, enum meminit_context context,
-               struct vmem_altmap *altmap)
+               unsigned long start_pfn, unsigned long zone_end_pfn,
+               enum meminit_context context, struct vmem_altmap *altmap)
 {
         unsigned long pfn, end_pfn = start_pfn + size;
         struct page *page;
@@ -6024,7 +6024,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
                 if (context == MEMINIT_EARLY) {
                         if (overlap_memmap_init(zone, &pfn))
                                 continue;
-                       if (defer_init(nid, pfn, end_pfn))
+                       if (defer_init(nid, pfn, zone_end_pfn))
                                 break;
                 }
 
@@ -6150,7 +6150,7 @@ void __meminit __weak memmap_init(unsigned long size, int nid,
 
                 if (end_pfn > start_pfn) {
                         size = end_pfn - start_pfn;
-                       memmap_init_zone(size, nid, zone, start_pfn,
+                       memmap_init_zone(size, nid, zone, start_pfn, range_end_pfn,
                                          MEMINIT_EARLY, NULL);
                 }
         }


------------------------

We have attached default dmesg logs and also dmesg logs collected with memblock=debug kernel cmdline for both vanilla and patched kernels. Let me know if you need more info.



From: bhe@redhat.com <bhe@redhat.com>
Sent: 13 October 2020 6:47 PM
To: Rahul Gopakumar <gopakumarr@vmware.com>
Cc: linux-mm@kvack.org <linux-mm@kvack.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; akpm@linux-foundation.org <akpm@linux-foundation.org>; natechancellor@gmail.com <natechancellor@gmail.com>; ndesaulniers@google.com <ndesaulniers@google.com>; clang-built-linux@googlegroups.com <clang-built-linux@googlegroups.com>; rostedt@goodmis.org <rostedt@goodmis.org>; Rajender M <manir@vmware.com>; Yiu Cho Lau <lauyiuch@vmware.com>; Peter Jonasson <pjonasson@vmware.com>; Venkatesh Rajaram <rajaramv@vmware.com>
Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel 
 
Hi Rahul,

On 10/12/20 at 05:21pm, Rahul Gopakumar wrote:
> Hi Baoquan,
> 
> Attached collected dmesg logs for with and without
> commit after adding memblock=debug to kernel cmdline.

Can you test below draft patch and see if it works for you? 

From a2ea6caef3c73ad9efb2dd2b48039065fe430bb2 Mon Sep 17 00:00:00 2001
From: Baoquan He <bhe@redhat.com>
Date: Tue, 13 Oct 2020 20:05:30 +0800
Subject: [PATCH] mm: make memmap defer init only take effect per zone

Deferred struct page init is designed to work per zone. However since
commit 73a6e474cb376 ("mm: memmap_init: iterate over memblock regions
rather that check each PFN"), the handling is mistakenly done in all memory
ranges inside one zone. Especially in those unmovable zones of multiple nodes,
memblock reservation split them into many memory ranges. This makes
initialized struct page more than expected in early stage, then increases
much boot time.

Let's fix it to make the memmap defer init handled in zone wide, but not in
memory range of one zone.

Signed-off-by: Baoquan He <bhe@redhat.com>
---
 arch/ia64/mm/init.c | 4 ++--
 include/linux/mm.h  | 5 +++--
 mm/memory_hotplug.c | 2 +-
 mm/page_alloc.c     | 6 +++---
 4 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c
index ef12e097f318..27ca549ff47e 100644
--- a/arch/ia64/mm/init.c
+++ b/arch/ia64/mm/init.c
@@ -536,7 +536,7 @@ virtual_memmap_init(u64 start, u64 end, void *arg)
 
         if (map_start < map_end)
                 memmap_init_zone((unsigned long)(map_end - map_start),
-                                args->nid, args->zone, page_to_pfn(map_start),
+                                args->nid, args->zone, page_to_pfn(map_start), page_to_pfn(map_end),
                                  MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
         return 0;
 }
@@ -546,7 +546,7 @@ memmap_init (unsigned long size, int nid, unsigned long zone,
              unsigned long start_pfn)
 {
         if (!vmem_map) {
-               memmap_init_zone(size, nid, zone, start_pfn,
+               memmap_init_zone(size, nid, zone, start_pfn, start_pfn + size,
                                  MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
         } else {
                 struct page *start;
diff --git a/include/linux/mm.h b/include/linux/mm.h
index ef360fe70aaf..5f9fc61d5be2 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -2439,8 +2439,9 @@ extern int __meminit __early_pfn_to_nid(unsigned long pfn,
 #endif
 
 extern void set_dma_reserve(unsigned long new_dma_reserve);
-extern void memmap_init_zone(unsigned long, int, unsigned long, unsigned long,
-               enum meminit_context, struct vmem_altmap *, int migratetype);
+extern void memmap_init_zone(unsigned long, int, unsigned long,
+               unsigned long, unsigned long, enum meminit_context,
+               struct vmem_altmap *, int migratetype);
 extern void setup_per_zone_wmarks(void);
 extern int __meminit init_per_zone_wmark_min(void);
 extern void mem_init(void);
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index b44d4c7ba73b..f9a37e6abc1c 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -732,7 +732,7 @@ void __ref move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
          * expects the zone spans the pfn range. All the pages in the range
          * are reserved so nobody should be touching them so we should be safe
          */
-       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn,
+       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn, 0,
                          MEMINIT_HOTPLUG, altmap, migratetype);
 
         set_zone_contiguous(zone);
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 2ebf9ddafa3a..e8b19fdd18ec 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -6044,7 +6044,7 @@ overlap_memmap_init(unsigned long zone, unsigned long *pfn)
  * zone stats (e.g., nr_isolate_pageblock) are touched.
  */
 void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
-               unsigned long start_pfn,
+               unsigned long start_pfn, unsigned long zone_end_pfn,
                 enum meminit_context context,
                 struct vmem_altmap *altmap, int migratetype)
 {
@@ -6080,7 +6080,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
                 if (context == MEMINIT_EARLY) {
                         if (overlap_memmap_init(zone, &pfn))
                                 continue;
-                       if (defer_init(nid, pfn, end_pfn))
+                       if (defer_init(nid, pfn, zone_end_pfn))
                                 break;
                 }
 
@@ -6194,7 +6194,7 @@ void __meminit __weak memmap_init(unsigned long size, int nid,
 
                 if (end_pfn > start_pfn) {
                         size = end_pfn - start_pfn;
-                       memmap_init_zone(size, nid, zone, start_pfn,
+                       memmap_init_zone(size, nid, zone, start_pfn, range_end_pfn,
                                          MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
                 }
         }
-- 
2.17.2

[-- Attachment #2: patch_dmesg_memblock_debug.log --]
[-- Type: application/octet-stream, Size: 256197 bytes --]

[    0.000000] Linux version 5.9.0 (root@w1-hs1-mwenig-dhcp-175.eng.vmware.com) (gcc (GCC) 8.3.1 20190507 (Red Hat 8.3.1-4), GNU ld version 2.30-58.el8) #1 SMP Fri Oct 16 07:59:22 EDT 2020
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet memblock=debug
[    0.000000] Disabled fast string operations
[    0.000000] ------------[ cut here ]------------
[    0.000000] XSAVE consistency problem, dumping leaves
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/fpu/xstate.c:657 fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.9.0 #1
[    0.000000] RIP: 0010:fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Code: 85 7c fd ff ff 44 3b 35 d5 45 22 00 74 2c 80 3d b0 03 bd ff 00 75 15 48 c7 c7 70 1e 6e 95 c6 05 a0 03 bd ff 01 e8 9a 35 b8 fe <0f> 0b 83 3d 9e 39 69 ff 00 74 05 e8 6b f0 b7 fe 48 8b 35 90 3e c0
[    0.000000] RSP: 0000:ffffffff95a03e60 EFLAGS: 00010086 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: 0000000000000a88 RCX: 0000000000000000
[    0.000000] RDX: ffffffff95a03c70 RSI: 00000000ffff7fff RDI: ffffffff96623e8c
[    0.000000] RBP: 0000000000000010 R08: 0000000000000000 R09: c0000000ffff7fff
[    0.000000] R10: 0000000000000001 R11: ffffffff95a03c68 R12: 0000000000000a88
[    0.000000] R13: 0000000000000008 R14: 0000000000000988 R15: 0000000000000001
[    0.000000] FS:  0000000000000000(0000) GS:ffffffff96357000(0000) knlGS:0000000000000000
[    0.000000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: ffff88800e0b0000 CR3: 0000001df2fee000 CR4: 00000000000406a0
[    0.000000] Call Trace:
[    0.000000]  ? 0xffffffff94600000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xb8/0xbb
[    0.000000] random: get_random_bytes called from print_oops_end_marker+0x26/0x40 with crng_init=0
[    0.000000] ---[ end trace b57c502b9dce1146 ]---
[    0.000000] CPUID[0d, 00]: eax=000002e7 ebx=00000a88 ecx=00000a88 edx=00000000
[    0.000000] CPUID[0d, 01]: eax=0000000f ebx=00000a88 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 02]: eax=00000100 ebx=00000240 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 03]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 04]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 05]: eax=00000040 ebx=00000440 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 06]: eax=00000200 ebx=00000480 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 07]: eax=00000400 ebx=00000680 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 08]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 09]: eax=00000008 ebx=00000a80 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0d]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0e]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0f]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 10]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 11]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 12]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 13]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 14]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 15]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 16]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 17]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 18]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 19]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2696 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000ef23fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] memblock_reserve: [0x000000000e0a0018-0x000000000e0a0767] efi_memblock_x86_reserve_range+0x15b/0x184
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] memblock_reserve: [0x000000000e0a6018-0x000000000e0ae057] setup_arch+0x3e4/0xc9b
[    0.000000] memblock_reserve: [0x000000000e0a3018-0x000000000e0a5057] setup_arch+0x3e4/0xc9b
[    0.000000] memblock_reserve: [0x000000000e0a1018-0x000000000e0a2857] setup_arch+0x3e4/0xc9b
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000e0a1017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a1018-0x000000000e0a2857] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a2858-0x000000000e0a3017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a3018-0x000000000e0a5057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a5058-0x000000000e0a6017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a6018-0x000000000e0ae057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0ae058-0x000000000ef23fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] efi: EFI v2.31 by VMware, Inc.
[    0.000000] efi: SMBIOS=0xef42000 ACPI 2.0=0xff66000 MEMATTR=0xe564698 
[    0.000000] memblock_reserve: [0x000000000e564698-0x000000000e564b57] efi_memattr_init+0x75/0x8f
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.000000] vmware: hypercall mode: 0x02
[    0.000000] Hypervisor detected: VMware
[    0.000000] vmware: TSC freq read from hypervisor : 2095.078 MHz
[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[    0.000000] vmware: using clock offset of 7381389468 ns
[    0.000011] tsc: Detected 2095.078 MHz processor
[    0.002082] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.002084] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.002089] last_pfn = 0x10340000 max_arch_pfn = 0x400000000
[    0.002120] MTRR default type: uncachable
[    0.002121] MTRR fixed ranges enabled:
[    0.002122]   00000-9FFFF write-back
[    0.002123]   A0000-FFFFF uncachable
[    0.002123] MTRR variable ranges enabled:
[    0.002124]   0 base 000000000000 mask 1E0000000000 write-back
[    0.002125]   1 base 0000C0000000 mask 1FFFC0000000 uncachable
[    0.002125]   2 disabled
[    0.002126]   3 disabled
[    0.002126]   4 disabled
[    0.002127]   5 disabled
[    0.002127]   6 disabled
[    0.002127]   7 disabled
[    0.002137] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002156] total RAM covered: 2096128M
[    0.002208]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002209]  gran_size: 64K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002210]  gran_size: 64K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002211]  gran_size: 64K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002212]  gran_size: 64K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002213]  gran_size: 64K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002213]  gran_size: 64K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002214]  gran_size: 64K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002215]  gran_size: 64K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002216]  gran_size: 64K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002217]  gran_size: 64K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002218]  gran_size: 64K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002218]  gran_size: 64K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002219]  gran_size: 64K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002220]  gran_size: 64K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002221]  gran_size: 64K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002222]  gran_size: 128K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002223]  gran_size: 128K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002223]  gran_size: 128K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002224]  gran_size: 128K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002225]  gran_size: 128K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002226]  gran_size: 128K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002227]  gran_size: 128K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002227]  gran_size: 128K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002228]  gran_size: 128K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002229]  gran_size: 128K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002230]  gran_size: 128K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002231]  gran_size: 128K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002231]  gran_size: 128K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002232]  gran_size: 128K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002233]  gran_size: 128K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002234]  gran_size: 256K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002234]  gran_size: 256K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002235]  gran_size: 256K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002236]  gran_size: 256K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002237]  gran_size: 256K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002238]  gran_size: 256K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002238]  gran_size: 256K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002239]  gran_size: 256K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002240]  gran_size: 256K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002241]  gran_size: 256K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002242]  gran_size: 256K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002242]  gran_size: 256K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002243]  gran_size: 256K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002244]  gran_size: 256K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002245]  gran_size: 512K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002246]  gran_size: 512K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002246]  gran_size: 512K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002247]  gran_size: 512K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002248]  gran_size: 512K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002249]  gran_size: 512K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002250]  gran_size: 512K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002250]  gran_size: 512K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002251]  gran_size: 512K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002252]  gran_size: 512K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002253]  gran_size: 512K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002254]  gran_size: 512K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002254]  gran_size: 512K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002255]  gran_size: 1M 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002256]  gran_size: 1M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002257]  gran_size: 1M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002258]  gran_size: 1M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002259]  gran_size: 1M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002259]  gran_size: 1M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002260]  gran_size: 1M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002261]  gran_size: 1M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002262]  gran_size: 1M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002263]  gran_size: 1M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002263]  gran_size: 1M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002264]  gran_size: 1M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002265]  gran_size: 2M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002266]  gran_size: 2M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002267]  gran_size: 2M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002267]  gran_size: 2M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002268]  gran_size: 2M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002269]  gran_size: 2M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002270]  gran_size: 2M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002270]  gran_size: 2M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002271]  gran_size: 2M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002272]  gran_size: 2M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002273]  gran_size: 2M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002274]  gran_size: 4M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002274]  gran_size: 4M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002275]  gran_size: 4M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002276]  gran_size: 4M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002277]  gran_size: 4M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002278]  gran_size: 4M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002278]  gran_size: 4M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002279]  gran_size: 4M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002280]  gran_size: 4M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002281]  gran_size: 4M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002282]  gran_size: 8M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002282]  gran_size: 8M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002283]  gran_size: 8M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002284]  gran_size: 8M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002285]  gran_size: 8M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002285]  gran_size: 8M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002286]  gran_size: 8M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002287]  gran_size: 8M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002288]  gran_size: 8M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002289]  gran_size: 16M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002289]  gran_size: 16M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002290]  gran_size: 16M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002291]  gran_size: 16M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002292]  gran_size: 16M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002293]  gran_size: 16M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002294]  gran_size: 16M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002295]  gran_size: 16M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002295]  gran_size: 32M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002296]  gran_size: 32M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002297]  gran_size: 32M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002298]  gran_size: 32M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002299]  gran_size: 32M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002299]  gran_size: 32M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002300]  gran_size: 32M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002301]  gran_size: 64M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002302]  gran_size: 64M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002303]  gran_size: 64M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002303]  gran_size: 64M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002304]  gran_size: 64M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002305]  gran_size: 64M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002306]  gran_size: 128M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002307]  gran_size: 128M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002307]  gran_size: 128M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002308]  gran_size: 128M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002309]  gran_size: 128M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002310]  gran_size: 256M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002311]  gran_size: 256M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002312]  gran_size: 256M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002312]  gran_size: 256M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002313]  gran_size: 512M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002314]  gran_size: 512M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002315]  gran_size: 512M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002316]  gran_size: 1G 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002316]  gran_size: 1G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002317]  gran_size: 2G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1537G
[    0.002318] mtrr_cleanup: can not find optimal value
[    0.002318] please specify mtrr_gran_size/mtrr_chunk_size
[    0.002329] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.002334] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
[    0.007652] memblock_reserve: [0x0000001df3800000-0x0000001df380efff] setup_arch+0x629/0xc9b
[    0.007655] memblock_add: [0x0000000000001000-0x000000000009ffff] e820__memblock_setup+0x65/0x7d
[    0.007656] memblock_add: [0x0000000000100000-0x000000000e0a1017] e820__memblock_setup+0x65/0x7d
[    0.007658] memblock_add: [0x000000000e0a1018-0x000000000e0a2857] e820__memblock_setup+0x65/0x7d
[    0.007659] memblock_add: [0x000000000e0a2858-0x000000000e0a3017] e820__memblock_setup+0x65/0x7d
[    0.007660] memblock_add: [0x000000000e0a3018-0x000000000e0a5057] e820__memblock_setup+0x65/0x7d
[    0.007661] memblock_add: [0x000000000e0a5058-0x000000000e0a6017] e820__memblock_setup+0x65/0x7d
[    0.007662] memblock_add: [0x000000000e0a6018-0x000000000e0ae057] e820__memblock_setup+0x65/0x7d
[    0.007663] memblock_add: [0x000000000e0ae058-0x000000000ef23fff] e820__memblock_setup+0x65/0x7d
[    0.007665] memblock_add: [0x000000000ef2d000-0x000000000ef3bfff] e820__memblock_setup+0x65/0x7d
[    0.007666] memblock_add: [0x000000000ef48000-0x000000000ef60fff] e820__memblock_setup+0x65/0x7d
[    0.007667] memblock_add: [0x000000000ef66000-0x000000000fee6fff] e820__memblock_setup+0x65/0x7d
[    0.007668] memblock_add: [0x000000000ff77000-0x00000000bfffffff] e820__memblock_setup+0x65/0x7d
[    0.007669] memblock_add: [0x0000000100000000-0x000000fcffffffff] e820__memblock_setup+0x65/0x7d
[    0.007671] memblock_add: [0x0000010000000000-0x000001033fffffff] e820__memblock_setup+0x65/0x7d
[    0.007671] MEMBLOCK configuration:
[    0.007672]  memory size = 0x000000ffffef5000 reserved size = 0x0000000006d154d0
[    0.007672]  memory.cnt  = 0x8
[    0.007673]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes flags: 0x0
[    0.007674]  memory[0x1]	[0x0000000000100000-0x000000000ef23fff], 0x000000000ee24000 bytes flags: 0x0
[    0.007675]  memory[0x2]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes flags: 0x0
[    0.007675]  memory[0x3]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes flags: 0x0
[    0.007676]  memory[0x4]	[0x000000000ef66000-0x000000000fee6fff], 0x0000000000f81000 bytes flags: 0x0
[    0.007676]  memory[0x5]	[0x000000000ff77000-0x00000000bfffffff], 0x00000000b0089000 bytes flags: 0x0
[    0.007677]  memory[0x6]	[0x0000000100000000-0x000000fcffffffff], 0x000000fc00000000 bytes flags: 0x0
[    0.007678]  memory[0x7]	[0x0000010000000000-0x000001033fffffff], 0x0000000340000000 bytes flags: 0x0
[    0.007678]  reserved.cnt  = 0x8
[    0.007679]  reserved[0x0]	[0x0000000000000000-0x0000000000000fff], 0x0000000000001000 bytes flags: 0x0
[    0.007680]  reserved[0x1]	[0x000000000628f000-0x000000000a987fff], 0x00000000046f9000 bytes flags: 0x0
[    0.007680]  reserved[0x2]	[0x000000000e0a0018-0x000000000e0a0767], 0x0000000000000750 bytes flags: 0x0
[    0.007681]  reserved[0x3]	[0x000000000e0a1018-0x000000000e0a2857], 0x0000000000001840 bytes flags: 0x0
[    0.007681]  reserved[0x4]	[0x000000000e0a3018-0x000000000e0a5057], 0x0000000000002040 bytes flags: 0x0
[    0.007682]  reserved[0x5]	[0x000000000e0a6018-0x000000000e0ae057], 0x0000000000008040 bytes flags: 0x0
[    0.007683]  reserved[0x6]	[0x000000000e564698-0x000000000e564b57], 0x00000000000004c0 bytes flags: 0x0
[    0.007683]  reserved[0x7]	[0x0000001df1200000-0x0000001df380efff], 0x000000000260f000 bytes flags: 0x0
[    0.007684] memblock_reserve: [0x000000000009f000-0x00000000000fffff] setup_arch+0x64d/0xc9b
[    0.007686] memblock_reserve: [0x000000000df93000-0x000000000df93fff] efi_reserve_boot_services+0x85/0xd0
[    0.007688] memblock_reserve: [0x000000000e0b1000-0x000000000e0b1fff] efi_reserve_boot_services+0x85/0xd0
[    0.007689] memblock_reserve: [0x000000000e74a000-0x000000000e8dffff] efi_reserve_boot_services+0x85/0xd0
[    0.007690] memblock_reserve: [0x000000000e8e0000-0x000000000eee1fff] efi_reserve_boot_services+0x85/0xd0
[    0.007691] memblock_reserve: [0x000000000eee2000-0x000000000ef23fff] efi_reserve_boot_services+0x85/0xd0
[    0.007692] memblock_reserve: [0x000000000ef2d000-0x000000000ef3bfff] efi_reserve_boot_services+0x85/0xd0
[    0.007694] memblock_reserve: [0x000000000ef48000-0x000000000ef60fff] efi_reserve_boot_services+0x85/0xd0
[    0.007695] memblock_reserve: [0x000000000ef66000-0x000000000ef8ffff] efi_reserve_boot_services+0x85/0xd0
[    0.007696] memblock_reserve: [0x000000000ef90000-0x000000000fdf6fff] efi_reserve_boot_services+0x85/0xd0
[    0.007697] memblock_reserve: [0x000000000fdf7000-0x000000000fee6fff] efi_reserve_boot_services+0x85/0xd0
[    0.007698] memblock_reserve: [0x000000000ff77000-0x000000000ffbefff] efi_reserve_boot_services+0x85/0xd0
[    0.007700] memblock_reserve: [0x000000000ffbf000-0x000000000fffffff] efi_reserve_boot_services+0x85/0xd0
[    0.007702] memblock_reserve: [0x0000000000099000-0x000000000009efff] reserve_real_mode+0x6f/0x88
[    0.007704] memblock_reserve: [0x0000000000000000-0x00000000000fffff] crash_reserve_low_1M+0x2c/0x39
[    0.007705] kexec: Reserving the low 1M of memory for crashkernel
[    0.007720] memblock_reserve: [0x0000000000000000-0x000000000000ffff] setup_arch+0x692/0xc9b
[    0.007726] Using GB pages for direct mapping
[    0.007946] memblock_reserve: [0x000001033ffff000-0x000001033fffffff] alloc_low_pages+0x163/0x180
[    0.008719] Secure boot disabled
[    0.008720] RAMDISK: [mem 0x0628f000-0x0a987fff]
[    0.008732] ACPI: Early table checksum verification disabled
[    0.008734] ACPI: RSDP 0x000000000FF66000 000024 (v02 VMWARE)
[    0.008736] ACPI: XSDT 0x000000000FF66064 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.008740] ACPI: SRAT 0x000000000FF660C0 000660 (v03 VMWARE EFISRAT  06040001 VMW  000007CE)
[    0.008743] ACPI: FACP 0x000000000FF7252C 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.008747] ACPI: DSDT 0x000000000FF66720 00BE0C (v01 PTLTD  Custom   00000000 INTL 20130823)
[    0.008749] ACPI: FACS 0x000000000FF76000 000040
[    0.008750] ACPI: FACS 0x000000000FF76000 000040
[    0.008752] ACPI: APIC 0x000000000FF72694 0004DA (v03 VMWARE EFIAPIC  06040001 VMW  000007CE)
[    0.008754] ACPI: MCFG 0x000000000FF72B6E 00003C (v01 VMWARE EFIMCFG  06040001 VMW  000007CE)
[    0.008756] ACPI: HPET 0x000000000FF72BAA 000038 (v01 VMWARE VMW HPET 00000000 VMW  00000000)
[    0.008758] ACPI: WAET 0x000000000FF72BE2 000028 (v01 VMWARE VMW WAET 06040001 VMW  00000001)
[    0.008760] ACPI: WSMT 0x000000000FF72C0A 000028 (v01 VMWARE VMW WSMT 06040001 VMW  00000001)
[    0.008764] ACPI: Local APIC address 0xfee00000
[    0.008795] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.008796] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.008797] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.008797] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.008798] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.008799] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.008800] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.008801] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.008802] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.008803] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.008804] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.008805] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.008806] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.008807] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.008807] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.008808] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[    0.008808] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.008809] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.008810] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.008810] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.008810] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.008811] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.008811] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[    0.008812] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[    0.008812] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[    0.008813] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.008813] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.008814] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.008814] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.008815] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.008815] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[    0.008815] SRAT: PXM 1 -> APIC 0x3e -> Node 1
[    0.008816] SRAT: PXM 1 -> APIC 0x40 -> Node 1
[    0.008816] SRAT: PXM 1 -> APIC 0x42 -> Node 1
[    0.008817] SRAT: PXM 1 -> APIC 0x44 -> Node 1
[    0.008817] SRAT: PXM 1 -> APIC 0x46 -> Node 1
[    0.008818] SRAT: PXM 1 -> APIC 0x48 -> Node 1
[    0.008819] SRAT: PXM 1 -> APIC 0x4a -> Node 1
[    0.008819] SRAT: PXM 1 -> APIC 0x4c -> Node 1
[    0.008820] SRAT: PXM 1 -> APIC 0x4e -> Node 1
[    0.008820] SRAT: PXM 1 -> APIC 0x50 -> Node 1
[    0.008821] SRAT: PXM 1 -> APIC 0x52 -> Node 1
[    0.008821] SRAT: PXM 1 -> APIC 0x54 -> Node 1
[    0.008822] SRAT: PXM 1 -> APIC 0x56 -> Node 1
[    0.008822] SRAT: PXM 1 -> APIC 0x58 -> Node 1
[    0.008822] SRAT: PXM 1 -> APIC 0x5a -> Node 1
[    0.008823] SRAT: PXM 1 -> APIC 0x5c -> Node 1
[    0.008823] SRAT: PXM 1 -> APIC 0x5e -> Node 1
[    0.008824] SRAT: PXM 1 -> APIC 0x60 -> Node 1
[    0.008824] SRAT: PXM 1 -> APIC 0x62 -> Node 1
[    0.008825] SRAT: PXM 1 -> APIC 0x64 -> Node 1
[    0.008825] SRAT: PXM 1 -> APIC 0x66 -> Node 1
[    0.008826] SRAT: PXM 1 -> APIC 0x68 -> Node 1
[    0.008826] SRAT: PXM 1 -> APIC 0x6a -> Node 1
[    0.008826] SRAT: PXM 1 -> APIC 0x6c -> Node 1
[    0.008827] SRAT: PXM 1 -> APIC 0x6e -> Node 1
[    0.008827] SRAT: PXM 2 -> APIC 0x70 -> Node 2
[    0.008828] SRAT: PXM 2 -> APIC 0x72 -> Node 2
[    0.008828] SRAT: PXM 2 -> APIC 0x74 -> Node 2
[    0.008829] SRAT: PXM 2 -> APIC 0x76 -> Node 2
[    0.008829] SRAT: PXM 2 -> APIC 0x78 -> Node 2
[    0.008830] SRAT: PXM 2 -> APIC 0x7a -> Node 2
[    0.008830] SRAT: PXM 2 -> APIC 0x7c -> Node 2
[    0.008831] SRAT: PXM 2 -> APIC 0x7e -> Node 2
[    0.008831] SRAT: PXM 2 -> APIC 0x80 -> Node 2
[    0.008831] SRAT: PXM 2 -> APIC 0x82 -> Node 2
[    0.008832] SRAT: PXM 2 -> APIC 0x84 -> Node 2
[    0.008832] SRAT: PXM 2 -> APIC 0x86 -> Node 2
[    0.008833] SRAT: PXM 2 -> APIC 0x88 -> Node 2
[    0.008833] SRAT: PXM 2 -> APIC 0x8a -> Node 2
[    0.008834] SRAT: PXM 2 -> APIC 0x8c -> Node 2
[    0.008834] SRAT: PXM 2 -> APIC 0x8e -> Node 2
[    0.008835] SRAT: PXM 2 -> APIC 0x90 -> Node 2
[    0.008835] SRAT: PXM 2 -> APIC 0x92 -> Node 2
[    0.008836] SRAT: PXM 2 -> APIC 0x94 -> Node 2
[    0.008836] SRAT: PXM 2 -> APIC 0x96 -> Node 2
[    0.008836] SRAT: PXM 2 -> APIC 0x98 -> Node 2
[    0.008837] SRAT: PXM 2 -> APIC 0x9a -> Node 2
[    0.008837] SRAT: PXM 2 -> APIC 0x9c -> Node 2
[    0.008838] SRAT: PXM 2 -> APIC 0x9e -> Node 2
[    0.008838] SRAT: PXM 2 -> APIC 0xa0 -> Node 2
[    0.008839] SRAT: PXM 2 -> APIC 0xa2 -> Node 2
[    0.008839] SRAT: PXM 2 -> APIC 0xa4 -> Node 2
[    0.008840] SRAT: PXM 2 -> APIC 0xa6 -> Node 2
[    0.008842] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.008842] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[    0.008843] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x55ffffffff]
[    0.008844] ACPI: SRAT: Node 1 PXM 1 [mem 0x5600000000-0xaaffffffff]
[    0.008844] ACPI: SRAT: Node 2 PXM 2 [mem 0xab00000000-0xfcffffffff]
[    0.008845] ACPI: SRAT: Node 2 PXM 2 [mem 0x10000000000-0x1033fffffff]
[    0.008846] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xbfffffff] -> [mem 0x00000000-0xbfffffff]
[    0.008847] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x55ffffffff] -> [mem 0x00000000-0x55ffffffff]
[    0.008848] NUMA: Node 2 [mem 0xab00000000-0xfcffffffff] + [mem 0x10000000000-0x1033fffffff] -> [mem 0xab00000000-0x1033fffffff]
[    0.008857] memblock_reserve: [0x00000055fffd6000-0x00000055ffffffff] memblock_alloc_range_nid+0xad/0x11b
[    0.008858] NODE_DATA(0) allocated [mem 0x55fffd6000-0x55ffffffff]
[    0.009215] memblock_reserve: [0x000000aafffd6000-0x000000aaffffffff] memblock_alloc_range_nid+0xad/0x11b
[    0.009216] NODE_DATA(1) allocated [mem 0xaafffd6000-0xaaffffffff]
[    0.009837] memblock_reserve: [0x000001033ffd5000-0x000001033fffefff] memblock_alloc_range_nid+0xad/0x11b
[    0.009838] NODE_DATA(2) allocated [mem 0x1033ffd5000-0x1033fffefff]
[    0.009845] MEMBLOCK configuration:
[    0.009845]  memory size = 0x000000ffffef5000 reserved size = 0x00000000086a14d0
[    0.009846]  memory.cnt  = 0xa
[    0.009847]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes on node 0 flags: 0x0
[    0.009848]  memory[0x1]	[0x0000000000100000-0x000000000ef23fff], 0x000000000ee24000 bytes on node 0 flags: 0x0
[    0.009848]  memory[0x2]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes on node 0 flags: 0x0
[    0.009849]  memory[0x3]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes on node 0 flags: 0x0
[    0.009850]  memory[0x4]	[0x000000000ef66000-0x000000000fee6fff], 0x0000000000f81000 bytes on node 0 flags: 0x0
[    0.009850]  memory[0x5]	[0x000000000ff77000-0x00000000bfffffff], 0x00000000b0089000 bytes on node 0 flags: 0x0
[    0.009851]  memory[0x6]	[0x0000000100000000-0x00000055ffffffff], 0x0000005500000000 bytes on node 0 flags: 0x0
[    0.009852]  memory[0x7]	[0x0000005600000000-0x000000aaffffffff], 0x0000005500000000 bytes on node 1 flags: 0x0
[    0.009853]  memory[0x8]	[0x000000ab00000000-0x000000fcffffffff], 0x0000005200000000 bytes on node 2 flags: 0x0
[    0.009853]  memory[0x9]	[0x0000010000000000-0x000001033fffffff], 0x0000000340000000 bytes on node 2 flags: 0x0
[    0.009854]  reserved.cnt  = 0x13
[    0.009855]  reserved[0x0]	[0x0000000000000000-0x00000000000fffff], 0x0000000000100000 bytes on node 0 flags: 0x0
[    0.009856]  reserved[0x1]	[0x000000000628f000-0x000000000a987fff], 0x00000000046f9000 bytes on node 0 flags: 0x0
[    0.009856]  reserved[0x2]	[0x000000000df93000-0x000000000df93fff], 0x0000000000001000 bytes on node 0 flags: 0x0
[    0.009857]  reserved[0x3]	[0x000000000e0a0018-0x000000000e0a0767], 0x0000000000000750 bytes on node 0 flags: 0x0
[    0.009858]  reserved[0x4]	[0x000000000e0a1018-0x000000000e0a2857], 0x0000000000001840 bytes on node 0 flags: 0x0
[    0.009859]  reserved[0x5]	[0x000000000e0a3018-0x000000000e0a5057], 0x0000000000002040 bytes on node 0 flags: 0x0
[    0.009859]  reserved[0x6]	[0x000000000e0a6018-0x000000000e0ae057], 0x0000000000008040 bytes on node 0 flags: 0x0
[    0.009860]  reserved[0x7]	[0x000000000e0b1000-0x000000000e0b1fff], 0x0000000000001000 bytes on node 0 flags: 0x0
[    0.009861]  reserved[0x8]	[0x000000000e564698-0x000000000e564b57], 0x00000000000004c0 bytes on node 0 flags: 0x0
[    0.009861]  reserved[0x9]	[0x000000000e74a000-0x000000000ef23fff], 0x00000000007da000 bytes on node 0 flags: 0x0
[    0.009862]  reserved[0xa]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes on node 0 flags: 0x0
[    0.009863]  reserved[0xb]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes on node 0 flags: 0x0
[    0.009863]  reserved[0xc]	[0x000000000ef66000-0x000000000fee6fff], 0x0000000000f81000 bytes on node 0 flags: 0x0
[    0.009864]  reserved[0xd]	[0x000000000ff77000-0x000000000fffffff], 0x0000000000089000 bytes on node 0 flags: 0x0
[    0.009865]  reserved[0xe]	[0x0000001df1200000-0x0000001df380efff], 0x000000000260f000 bytes on node 0 flags: 0x0
[    0.009866]  reserved[0xf]	[0x00000055fffd6000-0x00000055ffffffff], 0x000000000002a000 bytes flags: 0x0
[    0.009867]  reserved[0x10]	[0x000000aafffd6000-0x000000aaffffffff], 0x000000000002a000 bytes flags: 0x0
[    0.009867]  reserved[0x11]	[0x000001033ffd5000-0x000001033fffefff], 0x000000000002a000 bytes flags: 0x0
[    0.009868]  reserved[0x12]	[0x000001033ffff000-0x000001033fffffff], 0x0000000000001000 bytes on node 2 flags: 0x0
[    0.009969] crashkernel: memory value expected
[    0.009973] memblock_alloc_try_nid: 16384 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_init+0xab/0x2cf
[    0.009974] memblock_reserve: [0x000001033ffd1000-0x000001033ffd4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.009977] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.009978] memblock_reserve: [0x00000055fffd5000-0x00000055fffd5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.009982] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.009983] memblock_reserve: [0x00000055fffd4000-0x00000055fffd4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.009987] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.009988] memblock_reserve: [0x00000055fffd3000-0x00000055fffd3fff] memblock_alloc_range_nid+0xad/0x11b
[    0.009992] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.009993] memblock_reserve: [0x00000055fffd2000-0x00000055fffd2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.009998] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.009999] memblock_reserve: [0x00000055fffd1000-0x00000055fffd1fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010005] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010006] memblock_reserve: [0x00000055fffd0000-0x00000055fffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010023] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010024] memblock_reserve: [0x00000055fffcf000-0x00000055fffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.010030] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010031] memblock_reserve: [0x00000055fffce000-0x00000055fffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.010038] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010039] memblock_reserve: [0x00000055fffcd000-0x00000055fffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010046] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010047] memblock_reserve: [0x00000055fffcc000-0x00000055fffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010055] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010056] memblock_reserve: [0x00000055fffcb000-0x00000055fffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010065] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010066] memblock_reserve: [0x000000aafffd5000-0x000000aafffd5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010074] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010075] memblock_reserve: [0x000000aafffd4000-0x000000aafffd4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010085] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010086] memblock_reserve: [0x000000aafffd3000-0x000000aafffd3fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010095] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010096] memblock_reserve: [0x000000aafffd2000-0x000000aafffd2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010106] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010107] memblock_reserve: [0x000000aafffd1000-0x000000aafffd1fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010118] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010119] memblock_reserve: [0x000000aafffd0000-0x000000aafffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010130] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010131] memblock_reserve: [0x000000aafffcf000-0x000000aafffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.010142] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010143] memblock_reserve: [0x000000aafffce000-0x000000aafffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.010155] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010156] memblock_reserve: [0x000000aafffcd000-0x000000aafffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010170] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010171] memblock_reserve: [0x000000aafffcc000-0x000000aafffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010183] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010184] memblock_reserve: [0x000000aafffcb000-0x000000aafffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010198] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010199] memblock_reserve: [0x000001033ffd0000-0x000001033ffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010213] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010214] memblock_reserve: [0x000001033ffcf000-0x000001033ffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.010229] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010230] memblock_reserve: [0x000001033ffce000-0x000001033ffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.010245] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010246] memblock_reserve: [0x000001033ffcd000-0x000001033ffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010261] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010262] memblock_reserve: [0x000001033ffcc000-0x000001033ffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010278] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010279] memblock_reserve: [0x000001033ffcb000-0x000001033ffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010296] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010297] memblock_reserve: [0x000001033ffca000-0x000001033ffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.010316] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010317] memblock_reserve: [0x000001033ffc9000-0x000001033ffc9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010335] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010336] memblock_reserve: [0x000001033ffc8000-0x000001033ffc8fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010354] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010354] memblock_reserve: [0x000001033ffc7000-0x000001033ffc7fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010367] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.010367] memblock_reserve: [0x000001033ffc6000-0x000001033ffc6fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010385] memblock_alloc_try_nid: 109760 bytes align=0x40 nid=0 from=0x00000055f8000000 max_addr=0x0000005600000000 sparse_init_nid+0x8f/0x412
[    0.010386] memblock_reserve: [0x00000055fffb0340-0x00000055fffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.010391] memblock_alloc_exact_nid_raw: 5754585088 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x412
[    0.010392] memblock_reserve: [0x00000054a8e00000-0x00000055ffdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.010394] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010395] memblock_reserve: [0x00000055fffaf000-0x00000055fffaffff] memblock_alloc_range_nid+0xad/0x11b
[    0.010397] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010398] memblock_reserve: [0x00000055fffae000-0x00000055fffaefff] memblock_alloc_range_nid+0xad/0x11b
[    0.010424] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010425] memblock_reserve: [0x00000055fffad000-0x00000055fffadfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010450] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010451] memblock_reserve: [0x00000055fffac000-0x00000055fffacfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010476] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010477] memblock_reserve: [0x00000055fffab000-0x00000055fffabfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010503] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010504] memblock_reserve: [0x00000055fffaa000-0x00000055fffaafff] memblock_alloc_range_nid+0xad/0x11b
[    0.010529] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010530] memblock_reserve: [0x00000055fffa9000-0x00000055fffa9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010549] memblock_alloc_try_nid: 108800 bytes align=0x40 nid=1 from=0x000000aaf8000000 max_addr=0x000000ab00000000 sparse_init_nid+0x8f/0x412
[    0.010550] memblock_reserve: [0x000000aafffb0700-0x000000aafffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.010555] memblock_alloc_exact_nid_raw: 5704253440 bytes align=0x200000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x412
[    0.010556] memblock_reserve: [0x000000a9abe00000-0x000000aaffdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.010572] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010573] memblock_reserve: [0x000000aafffaf000-0x000000aafffaffff] memblock_alloc_range_nid+0xad/0x11b
[    0.010599] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010600] memblock_reserve: [0x000000aafffae000-0x000000aafffaefff] memblock_alloc_range_nid+0xad/0x11b
[    0.010625] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010626] memblock_reserve: [0x000000aafffad000-0x000000aafffadfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010652] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010652] memblock_reserve: [0x000000aafffac000-0x000000aafffacfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010678] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010679] memblock_reserve: [0x000000aafffab000-0x000000aafffabfff] memblock_alloc_range_nid+0xad/0x11b
[    0.010705] memblock_alloc_try_nid: 109120 bytes align=0x40 nid=2 from=0x0000010338000000 max_addr=0x0000010340000000 sparse_init_nid+0x8f/0x412
[    0.010706] memblock_reserve: [0x000001033ffab5c0-0x000001033ffc5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010711] memblock_alloc_exact_nid_raw: 5721030656 bytes align=0x200000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x412
[    0.010712] memblock_reserve: [0x00000101eae00000-0x000001033fdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.010721] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010722] memblock_reserve: [0x000001033ffaa000-0x000001033ffaafff] memblock_alloc_range_nid+0xad/0x11b
[    0.010747] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010748] memblock_reserve: [0x000001033ffa9000-0x000001033ffa9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010773] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010774] memblock_reserve: [0x000001033ffa8000-0x000001033ffa8fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010799] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010800] memblock_reserve: [0x000001033ffa7000-0x000001033ffa7fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010825] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010826] memblock_reserve: [0x000001033ffa6000-0x000001033ffa6fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010847] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.010848] memblock_reserve: [0x000001033ffa5000-0x000001033ffa5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.010855] Zone ranges:
[    0.010855]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.010856]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.010857]   Normal   [mem 0x0000000100000000-0x000001033fffffff]
[    0.010858]   Device   empty
[    0.010859] Movable zone start for each node
[    0.010861] Early memory node ranges
[    0.010861]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.010862]   node   0: [mem 0x0000000000100000-0x000000000ef23fff]
[    0.010863]   node   0: [mem 0x000000000ef2d000-0x000000000ef3bfff]
[    0.010863]   node   0: [mem 0x000000000ef48000-0x000000000ef60fff]
[    0.010864]   node   0: [mem 0x000000000ef66000-0x000000000fee6fff]
[    0.010864]   node   0: [mem 0x000000000ff77000-0x00000000bfffffff]
[    0.010865]   node   0: [mem 0x0000000100000000-0x00000055ffffffff]
[    0.010879]   node   1: [mem 0x0000005600000000-0x000000aaffffffff]
[    0.010894]   node   2: [mem 0x000000ab00000000-0x000000fcffffffff]
[    0.010909]   node   2: [mem 0x0000010000000000-0x000001033fffffff]
[    0.011642] Zeroed struct page in unavailable ranges: 267 pages
[    0.011643] Initmem setup node 0 [mem 0x0000000000001000-0x00000055ffffffff]
[    0.011644] On node 0 totalpages: 89915125
[    0.011645]   DMA zone: 64 pages used for memmap
[    0.011646]   DMA zone: 159 pages reserved
[    0.011646]   DMA zone: 3999 pages, LIFO batch:0
[    0.011667]   DMA32 zone: 12222 pages used for memmap
[    0.011668]   DMA32 zone: 782166 pages, LIFO batch:63
[    0.023083]   Normal zone: 1392640 pages used for memmap
[    0.023084]   Normal zone: 89128960 pages, LIFO batch:63
[    0.023600] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.023602] On node 1 totalpages: 89128960
[    0.023603]   Normal zone: 1392640 pages used for memmap
[    0.023604]   Normal zone: 89128960 pages, LIFO batch:63
[    0.024413] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.024415] On node 2 totalpages: 89391104
[    0.024416]   Normal zone: 1445888 pages used for memmap
[    0.024416]   Normal zone: 89391104 pages, LIFO batch:63
[    0.026902] ACPI: PM-Timer IO Port: 0x448
[    0.026904] ACPI: Local APIC address 0xfee00000
[    0.026922] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.026923] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.026923] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.026924] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.026924] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.026925] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.026926] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.026926] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.026927] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.026928] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.026928] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.026929] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.026929] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.026930] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.026930] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.026931] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.026931] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.026932] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.026932] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.026933] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.026933] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.026934] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.026934] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.026935] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.026935] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.026936] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.026936] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.026937] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.026937] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.026938] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.026939] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.026939] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.026940] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.026941] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.026941] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.026942] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.026942] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.026943] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.026943] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.026944] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.026944] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.026945] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.026945] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.026946] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.026946] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.026946] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.026947] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.026947] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.026948] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    0.026948] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    0.026949] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    0.026949] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    0.026950] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    0.026950] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    0.026951] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    0.026951] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    0.026951] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    0.026952] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    0.026952] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    0.026953] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    0.026953] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[    0.026954] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    0.026954] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[    0.026955] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[    0.026955] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[    0.026956] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[    0.026956] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[    0.026957] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[    0.026957] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[    0.026957] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[    0.026958] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[    0.026958] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[    0.026959] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[    0.026959] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[    0.026960] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[    0.026961] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[    0.026961] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[    0.026962] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[    0.026962] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[    0.026963] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[    0.026963] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[    0.026964] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[    0.026964] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[    0.026965] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[    0.026993] IOAPIC[0]: apic_id 84, version 32, address 0xfec00000, GSI 0-23
[    0.026995] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    0.026996] ACPI: IRQ0 used by override.
[    0.026997] ACPI: IRQ9 used by override.
[    0.026998] Using ACPI (MADT) for SMP configuration information
[    0.026999] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[    0.027004] memblock_alloc_try_nid: 73 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 acpi_parse_hpet+0xca/0x132
[    0.027008] memblock_reserve: [0x000001033ffab540-0x000001033ffab588] memblock_alloc_range_nid+0xad/0x11b
[    0.027011] TSC deadline timer available
[    0.027012] smpboot: Allowing 84 CPUs, 0 hotplug CPUs
[    0.027019] memblock_alloc_try_nid: 75 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 io_apic_init_mappings+0x37/0x1c8
[    0.027020] memblock_reserve: [0x000001033ffab4c0-0x000001033ffab50a] memblock_alloc_range_nid+0xad/0x11b
[    0.027025] memblock_alloc_try_nid: 1536 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 e820__reserve_resources+0x2c/0x19c
[    0.027026] memblock_reserve: [0x000001033ffa4a00-0x000001033ffa4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.027033] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027034] memblock_reserve: [0x000001033ffab440-0x000001033ffab4a7] memblock_alloc_range_nid+0xad/0x11b
[    0.027036] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027037] memblock_reserve: [0x000001033ffab3c0-0x000001033ffab427] memblock_alloc_range_nid+0xad/0x11b
[    0.027039] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027040] memblock_reserve: [0x000001033ffab340-0x000001033ffab3a7] memblock_alloc_range_nid+0xad/0x11b
[    0.027042] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027043] memblock_reserve: [0x000001033ffab2c0-0x000001033ffab327] memblock_alloc_range_nid+0xad/0x11b
[    0.027044] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027045] memblock_reserve: [0x000001033ffab240-0x000001033ffab2a7] memblock_alloc_range_nid+0xad/0x11b
[    0.027047] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027048] memblock_reserve: [0x000001033ffab1c0-0x000001033ffab227] memblock_alloc_range_nid+0xad/0x11b
[    0.027049] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027051] memblock_reserve: [0x000001033ffab140-0x000001033ffab1a7] memblock_alloc_range_nid+0xad/0x11b
[    0.027052] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027053] memblock_reserve: [0x000001033ffab0c0-0x000001033ffab127] memblock_alloc_range_nid+0xad/0x11b
[    0.027055] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027056] memblock_reserve: [0x000001033ffab040-0x000001033ffab0a7] memblock_alloc_range_nid+0xad/0x11b
[    0.027057] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027058] memblock_reserve: [0x000001033ffa4980-0x000001033ffa49e7] memblock_alloc_range_nid+0xad/0x11b
[    0.027060] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027061] memblock_reserve: [0x000001033ffa4900-0x000001033ffa4967] memblock_alloc_range_nid+0xad/0x11b
[    0.027063] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027064] memblock_reserve: [0x000001033ffa4880-0x000001033ffa48e7] memblock_alloc_range_nid+0xad/0x11b
[    0.027066] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027067] memblock_reserve: [0x000001033ffa4800-0x000001033ffa4867] memblock_alloc_range_nid+0xad/0x11b
[    0.027069] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027071] memblock_reserve: [0x000001033ffa4780-0x000001033ffa47e7] memblock_alloc_range_nid+0xad/0x11b
[    0.027073] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027074] memblock_reserve: [0x000001033ffa4700-0x000001033ffa4767] memblock_alloc_range_nid+0xad/0x11b
[    0.027076] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027077] memblock_reserve: [0x000001033ffa4680-0x000001033ffa46e7] memblock_alloc_range_nid+0xad/0x11b
[    0.027079] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027080] memblock_reserve: [0x000001033ffa4600-0x000001033ffa4667] memblock_alloc_range_nid+0xad/0x11b
[    0.027082] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    0.027083] memblock_reserve: [0x000001033ffa4580-0x000001033ffa45e7] memblock_alloc_range_nid+0xad/0x11b
[    0.027085] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.027086] memblock_reserve: [0x000001033ffab000-0x000001033ffab01f] memblock_alloc_range_nid+0xad/0x11b
[    0.027087] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.027088] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.027090] memblock_reserve: [0x000001033ffa4540-0x000001033ffa455f] memblock_alloc_range_nid+0xad/0x11b
[    0.027091] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.027091] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.027092] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.027093] memblock_reserve: [0x000001033ffa4500-0x000001033ffa451f] memblock_alloc_range_nid+0xad/0x11b
[    0.027094] PM: hibernation: Registered nosave memory: [mem 0x0e0a1000-0x0e0a1fff]
[    0.027094] PM: hibernation: Registered nosave memory: [mem 0x0e0a2000-0x0e0a2fff]
[    0.027095] PM: hibernation: Registered nosave memory: [mem 0x0e0a3000-0x0e0a3fff]
[    0.027096] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.027097] memblock_reserve: [0x000001033ffa44c0-0x000001033ffa44df] memblock_alloc_range_nid+0xad/0x11b
[    0.027098] PM: hibernation: Registered nosave memory: [mem 0x0e0a5000-0x0e0a5fff]
[    0.027098] PM: hibernation: Registered nosave memory: [mem 0x0e0a6000-0x0e0a6fff]
[    0.027099] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.027101] memblock_reserve: [0x000001033ffa4480-0x000001033ffa449f] memblock_alloc_range_nid+0xad/0x11b
[    0.027101] PM: hibernation: Registered nosave memory: [mem 0x0e0ae000-0x0e0aefff]
[    0.027102] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.027103] memblock_reserve: [0x000001033ffa4440-0x000001033ffa445f] memblock_alloc_range_nid+0xad/0x11b
[    0.027104] PM: hibernation: Registered nosave memory: [mem 0x0ef24000-0x0ef2cfff]
[    0.027105] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.027106] memblock_reserve: [0x000001033ffa4400-0x000001033ffa441f] memblock_alloc_range_nid+0xad/0x11b
[    0.027107] PM: hibernation: Registered nosave memory: [mem 0x0ef3c000-0x0ef41fff]
[    0.027107] PM: hibernation: Registered nosave memory: [mem 0x0ef42000-0x0ef47fff]
[    0.027108] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.027109] memblock_reserve: [0x000001033ffa43c0-0x000001033ffa43df] memblock_alloc_range_nid+0xad/0x11b
[    0.027110] PM: hibernation: Registered nosave memory: [mem 0x0ef61000-0x0ef65fff]
[    0.027111] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.027113] memblock_reserve: [0x000001033ffa4380-0x000001033ffa439f] memblock_alloc_range_nid+0xad/0x11b
[    0.027113] PM: hibernation: Registered nosave memory: [mem 0x0fee7000-0x0ff56fff]
[    0.027114] PM: hibernation: Registered nosave memory: [mem 0x0ff57000-0x0ff72fff]
[    0.027114] PM: hibernation: Registered nosave memory: [mem 0x0ff73000-0x0ff76fff]
[    0.027115] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.027117] memblock_reserve: [0x000001033ffa4340-0x000001033ffa435f] memblock_alloc_range_nid+0xad/0x11b
[    0.027118] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xffbfffff]
[    0.027118] PM: hibernation: Registered nosave memory: [mem 0xffc00000-0xffc29fff]
[    0.027119] PM: hibernation: Registered nosave memory: [mem 0xffc2a000-0xffffffff]
[    0.027120] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    0.027121] memblock_reserve: [0x000001033ffa4300-0x000001033ffa431f] memblock_alloc_range_nid+0xad/0x11b
[    0.027122] PM: hibernation: Registered nosave memory: [mem 0xfd00000000-0xffffffffff]
[    0.027124] [mem 0xc0000000-0xffbfffff] available for PCI devices
[    0.027125] Booting paravirtualized kernel on VMware hypervisor
[    0.027127] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.030677] memblock_alloc_try_nid: 134 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xfd/0x57a
[    0.030680] memblock_reserve: [0x000001033ffa4240-0x000001033ffa42c5] memblock_alloc_range_nid+0xad/0x11b
[    0.030682] memblock_alloc_try_nid: 134 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0x111/0x57a
[    0.030684] memblock_reserve: [0x000001033ffa4180-0x000001033ffa4205] memblock_alloc_range_nid+0xad/0x11b
[    0.030686] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:84 nr_cpu_ids:84 nr_node_ids:3
[    0.030728] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_alloc_info+0x52/0x84
[    0.030730] memblock_reserve: [0x000001033ffa3000-0x000001033ffa3fff] memblock_alloc_range_nid+0xad/0x11b
[    0.030734] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_embed_first_chunk+0x72/0x30d
[    0.030736] memblock_reserve: [0x000001033ffa2000-0x000001033ffa2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.030741] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    0.030742] memblock_reserve: [0x00000054a8600000-0x00000054a8dfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.032444] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    0.032446] memblock_reserve: [0x000000a9ab600000-0x000000a9abdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.035390] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    0.035392] memblock_reserve: [0x00000101ea600000-0x00000101eadfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.038479] memblock_free: [0x00000054a8637000-0x00000054a863ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038505] memblock_free: [0x00000054a8677000-0x00000054a867ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038532] memblock_free: [0x00000054a86b7000-0x00000054a86bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038559] memblock_free: [0x00000054a86f7000-0x00000054a86fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038587] memblock_free: [0x00000054a8737000-0x00000054a873ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038614] memblock_free: [0x00000054a8777000-0x00000054a877ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038642] memblock_free: [0x00000054a87b7000-0x00000054a87bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038671] memblock_free: [0x00000054a87f7000-0x00000054a87fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038693] memblock_free: [0x00000054a8837000-0x00000054a883ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038716] memblock_free: [0x00000054a8877000-0x00000054a887ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038738] memblock_free: [0x00000054a88b7000-0x00000054a88bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038760] memblock_free: [0x00000054a88f7000-0x00000054a88fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038783] memblock_free: [0x00000054a8937000-0x00000054a893ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038805] memblock_free: [0x00000054a8977000-0x00000054a897ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038826] memblock_free: [0x00000054a89b7000-0x00000054a89bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038847] memblock_free: [0x00000054a89f7000-0x00000054a89fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038871] memblock_free: [0x00000054a8a37000-0x00000054a8a3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038894] memblock_free: [0x00000054a8a77000-0x00000054a8a7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038918] memblock_free: [0x00000054a8ab7000-0x00000054a8abffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038941] memblock_free: [0x00000054a8af7000-0x00000054a8afffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038964] memblock_free: [0x00000054a8b37000-0x00000054a8b3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.038986] memblock_free: [0x00000054a8b77000-0x00000054a8b7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039008] memblock_free: [0x00000054a8bb7000-0x00000054a8bbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039031] memblock_free: [0x00000054a8bf7000-0x00000054a8bfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039047] memblock_free: [0x00000054a8c37000-0x00000054a8c3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039062] memblock_free: [0x00000054a8c77000-0x00000054a8c7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039076] memblock_free: [0x00000054a8cb7000-0x00000054a8cbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039091] memblock_free: [0x00000054a8cf7000-0x00000054a8cfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039092] memblock_free: [0x00000054a8d00000-0x00000054a8d3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.039094] memblock_free: [0x00000054a8d40000-0x00000054a8d7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.039095] memblock_free: [0x00000054a8d80000-0x00000054a8dbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.039096] memblock_free: [0x00000054a8dc0000-0x00000054a8dfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.039111] memblock_free: [0x000000a9ab637000-0x000000a9ab63ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039126] memblock_free: [0x000000a9ab677000-0x000000a9ab67ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039140] memblock_free: [0x000000a9ab6b7000-0x000000a9ab6bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039154] memblock_free: [0x000000a9ab6f7000-0x000000a9ab6fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039170] memblock_free: [0x000000a9ab737000-0x000000a9ab73ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039188] memblock_free: [0x000000a9ab777000-0x000000a9ab77ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039204] memblock_free: [0x000000a9ab7b7000-0x000000a9ab7bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039218] memblock_free: [0x000000a9ab7f7000-0x000000a9ab7fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039249] memblock_free: [0x000000a9ab837000-0x000000a9ab83ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039281] memblock_free: [0x000000a9ab877000-0x000000a9ab87ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039313] memblock_free: [0x000000a9ab8b7000-0x000000a9ab8bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039344] memblock_free: [0x000000a9ab8f7000-0x000000a9ab8fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039375] memblock_free: [0x000000a9ab937000-0x000000a9ab93ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039404] memblock_free: [0x000000a9ab977000-0x000000a9ab97ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039433] memblock_free: [0x000000a9ab9b7000-0x000000a9ab9bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039463] memblock_free: [0x000000a9ab9f7000-0x000000a9ab9fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039475] memblock_free: [0x000000a9aba37000-0x000000a9aba3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039486] memblock_free: [0x000000a9aba77000-0x000000a9aba7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039496] memblock_free: [0x000000a9abab7000-0x000000a9ababffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039507] memblock_free: [0x000000a9abaf7000-0x000000a9abafffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039517] memblock_free: [0x000000a9abb37000-0x000000a9abb3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039528] memblock_free: [0x000000a9abb77000-0x000000a9abb7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039538] memblock_free: [0x000000a9abbb7000-0x000000a9abbbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039548] memblock_free: [0x000000a9abbf7000-0x000000a9abbfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039572] memblock_free: [0x000000a9abc37000-0x000000a9abc3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039597] memblock_free: [0x000000a9abc77000-0x000000a9abc7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039623] memblock_free: [0x000000a9abcb7000-0x000000a9abcbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039647] memblock_free: [0x000000a9abcf7000-0x000000a9abcfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039649] memblock_free: [0x000000a9abd00000-0x000000a9abd3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.039650] memblock_free: [0x000000a9abd40000-0x000000a9abd7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.039651] memblock_free: [0x000000a9abd80000-0x000000a9abdbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.039652] memblock_free: [0x000000a9abdc0000-0x000000a9abdfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.039662] memblock_free: [0x00000101ea637000-0x00000101ea63ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039671] memblock_free: [0x00000101ea677000-0x00000101ea67ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039681] memblock_free: [0x00000101ea6b7000-0x00000101ea6bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039690] memblock_free: [0x00000101ea6f7000-0x00000101ea6fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039700] memblock_free: [0x00000101ea737000-0x00000101ea73ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039711] memblock_free: [0x00000101ea777000-0x00000101ea77ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039721] memblock_free: [0x00000101ea7b7000-0x00000101ea7bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039731] memblock_free: [0x00000101ea7f7000-0x00000101ea7fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039744] memblock_free: [0x00000101ea837000-0x00000101ea83ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039757] memblock_free: [0x00000101ea877000-0x00000101ea87ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039769] memblock_free: [0x00000101ea8b7000-0x00000101ea8bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039783] memblock_free: [0x00000101ea8f7000-0x00000101ea8fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039800] memblock_free: [0x00000101ea937000-0x00000101ea93ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039834] memblock_free: [0x00000101ea977000-0x00000101ea97ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039836] memblock: reserved is doubled to 256 at [0x000001033ffa0000-0x000001033ffa17ff]
[    0.039842] memblock_reserve: [0x000001033ffa0000-0x000001033ffa1fff] memblock_double_array+0x236/0x26f
[    0.039860] memblock_free: [0x00000101ea9b7000-0x00000101ea9bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039877] memblock_free: [0x00000101ea9f7000-0x00000101ea9fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039892] memblock_free: [0x00000101eaa37000-0x00000101eaa3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039907] memblock_free: [0x00000101eaa77000-0x00000101eaa7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039922] memblock_free: [0x00000101eaab7000-0x00000101eaabffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039936] memblock_free: [0x00000101eaaf7000-0x00000101eaafffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039948] memblock_free: [0x00000101eab37000-0x00000101eab3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039959] memblock_free: [0x00000101eab77000-0x00000101eab7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039970] memblock_free: [0x00000101eabb7000-0x00000101eabbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039981] memblock_free: [0x00000101eabf7000-0x00000101eabfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.039994] memblock_free: [0x00000101eac37000-0x00000101eac3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.040005] memblock_free: [0x00000101eac77000-0x00000101eac7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.040028] memblock_free: [0x00000101eacb7000-0x00000101eacbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.040040] memblock_free: [0x00000101eacf7000-0x00000101eacfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    0.040041] memblock_free: [0x00000101ead00000-0x00000101ead3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.040042] memblock_free: [0x00000101ead40000-0x00000101ead7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.040044] memblock_free: [0x00000101ead80000-0x00000101eadbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.040045] memblock_free: [0x00000101eadc0000-0x00000101eadfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    0.040046] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
[    0.040048] memblock_alloc_try_nid: 24 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x2f4/0x747
[    0.040050] memblock_reserve: [0x000001033ffa4140-0x000001033ffa4157] memblock_alloc_range_nid+0xad/0x11b
[    0.040051] memblock_alloc_try_nid: 24 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x327/0x747
[    0.040053] memblock_reserve: [0x000001033ffa4100-0x000001033ffa4117] memblock_alloc_range_nid+0xad/0x11b
[    0.040054] memblock_alloc_try_nid: 336 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x348/0x747
[    0.040056] memblock_reserve: [0x000001033ff9fe80-0x000001033ff9ffcf] memblock_alloc_range_nid+0xad/0x11b
[    0.040057] memblock_alloc_try_nid: 672 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x368/0x747
[    0.040059] memblock_reserve: [0x000001033ff9fbc0-0x000001033ff9fe5f] memblock_alloc_range_nid+0xad/0x11b
[    0.040062] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
[    0.040063] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.040069] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
[    0.040075] pcpu-alloc: [1] 28 29 30 31 32 33 34 35 [1] 36 37 38 39 40 41 42 43 
[    0.040081] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 [1] 52 53 54 55 -- -- -- -- 
[    0.040086] pcpu-alloc: [2] 56 57 58 59 60 61 62 63 [2] 64 65 66 67 68 69 70 71 
[    0.040092] pcpu-alloc: [2] 72 73 74 75 76 77 78 79 [2] 80 81 82 83 -- -- -- -- 
[    0.040098] memblock_alloc_try_nid: 576 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x641/0x747
[    0.040100] memblock_reserve: [0x000001033ff9f980-0x000001033ff9fbbf] memblock_alloc_range_nid+0xad/0x11b
[    0.040102] memblock_alloc_try_nid: 144 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x78/0x22e
[    0.040104] memblock_reserve: [0x000001033ffa4040-0x000001033ffa40cf] memblock_alloc_range_nid+0xad/0x11b
[    0.040105] memblock_alloc_try_nid: 256 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xc7/0x22e
[    0.040107] memblock_reserve: [0x000001033ff9f880-0x000001033ff9f97f] memblock_alloc_range_nid+0xad/0x11b
[    0.040109] memblock_alloc_try_nid: 264 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x104/0x22e
[    0.040110] memblock_reserve: [0x000001033ff9f740-0x000001033ff9f847] memblock_alloc_range_nid+0xad/0x11b
[    0.040112] memblock_alloc_try_nid: 64 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x122/0x22e
[    0.040113] memblock_reserve: [0x000001033ffa4000-0x000001033ffa403f] memblock_alloc_range_nid+0xad/0x11b
[    0.040115] memblock_alloc_try_nid: 144 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x78/0x22e
[    0.040117] memblock_reserve: [0x000001033ff9f680-0x000001033ff9f70f] memblock_alloc_range_nid+0xad/0x11b
[    0.040118] memblock_alloc_try_nid: 896 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xc7/0x22e
[    0.040120] memblock_reserve: [0x000001033ff9f300-0x000001033ff9f67f] memblock_alloc_range_nid+0xad/0x11b
[    0.040121] memblock_alloc_try_nid: 904 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x104/0x22e
[    0.040123] memblock_reserve: [0x000001033ff9ef40-0x000001033ff9f2c7] memblock_alloc_range_nid+0xad/0x11b
[    0.040124] memblock_alloc_try_nid: 224 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x122/0x22e
[    0.040126] memblock_reserve: [0x000001033ff9ee40-0x000001033ff9ef1f] memblock_alloc_range_nid+0xad/0x11b
[    0.040128] memblock_free: [0x000001033ffa3000-0x000001033ffa3fff] pcpu_embed_first_chunk+0x2c7/0x30d
[    0.040129] memblock_free: [0x000001033ffa2000-0x000001033ffa2fff] pcpu_embed_first_chunk+0x2fc/0x30d
[    0.040136] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.040137] memblock_reserve: [0x000001033ffa3fc0-0x000001033ffa3fcf] memblock_alloc_range_nid+0xad/0x11b
[    0.040139] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.040140] memblock_reserve: [0x000001033ffa3f80-0x000001033ffa3f8f] memblock_alloc_range_nid+0xad/0x11b
[    0.040142] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.040144] memblock_reserve: [0x000001033ffa3f40-0x000001033ffa3f4f] memblock_alloc_range_nid+0xad/0x11b
[    0.040145] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.040147] memblock_reserve: [0x000001033ffa3f00-0x000001033ffa3f0f] memblock_alloc_range_nid+0xad/0x11b
[    0.040149] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.040151] memblock_reserve: [0x000001033ffa3ec0-0x000001033ffa3ecf] memblock_alloc_range_nid+0xad/0x11b
[    0.040152] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.040154] memblock_reserve: [0x000001033ffa3e80-0x000001033ffa3e8f] memblock_alloc_range_nid+0xad/0x11b
[    0.040156] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.040157] memblock_reserve: [0x000001033ffa3e40-0x000001033ffa3e4f] memblock_alloc_range_nid+0xad/0x11b
[    0.040168] Built 3 zonelists, mobility grouping on.  Total pages: 264191576
[    0.040168] Policy zone: Normal
[    0.040170] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet memblock=debug
[    0.040289] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.040291] memblock_reserve: [0x000001033ffa2000-0x000001033ffa2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.040294] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.040296] memblock_reserve: [0x000001033ff9d000-0x000001033ff9dfff] memblock_alloc_range_nid+0xad/0x11b
[    0.040307] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.040309] memblock_reserve: [0x000001033ff9c000-0x000001033ff9cfff] memblock_alloc_range_nid+0xad/0x11b
[    0.040379] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.040381] memblock_reserve: [0x000001033ff9b000-0x000001033ff9bfff] memblock_alloc_range_nid+0xad/0x11b
[    0.040458] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.040460] memblock_reserve: [0x000001033ff9a000-0x000001033ff9afff] memblock_alloc_range_nid+0xad/0x11b
[    0.040541] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.040543] memblock_reserve: [0x000001033ff99000-0x000001033ff99fff] memblock_alloc_range_nid+0xad/0x11b
[    0.040630] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.040632] memblock_reserve: [0x000001033ff98000-0x000001033ff98fff] memblock_alloc_range_nid+0xad/0x11b
[    0.040727] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.040728] memblock_reserve: [0x000001033ff97000-0x000001033ff97fff] memblock_alloc_range_nid+0xad/0x11b
[    0.040846] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.040848] memblock_reserve: [0x000001033ff96000-0x000001033ff96fff] memblock_alloc_range_nid+0xad/0x11b
[    0.040958] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.040960] memblock_reserve: [0x000001033ff95000-0x000001033ff95fff] memblock_alloc_range_nid+0xad/0x11b
[    0.041083] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    0.041084] memblock_reserve: [0x000001033ff94000-0x000001033ff94fff] memblock_alloc_range_nid+0xad/0x11b
[    0.041199] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.041204] memblock_alloc_try_nid: 67108864 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x00000000ffffffff swiotlb_init+0x4b/0xa8
[    0.041207] memblock_reserve: [0x00000000bc000000-0x00000000bfffffff] memblock_alloc_range_nid+0xad/0x11b
[    0.053022] memblock_alloc_try_nid: 131072 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0x6e/0x13b
[    0.053024] memblock_reserve: [0x000001033ff74000-0x000001033ff93fff] memblock_alloc_range_nid+0xad/0x11b
[    0.053062] memblock_alloc_try_nid: 262144 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0xa5/0x13b
[    0.053063] memblock_reserve: [0x000001033ff34000-0x000001033ff73fff] memblock_alloc_range_nid+0xad/0x11b
[    0.275686] BUG: Bad page state in process swapper  pfn:ab08001
[    0.275689] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08001
[    0.275691] flags: 0x0()
[    0.275693] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275694] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275694] page dumped because: nonzero mapcount
[    0.275695] Modules linked in:
[    0.275698] CPU: 0 PID: 0 Comm: swapper Tainted: G        W         5.9.0 #1
[    0.275698] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275699] Call Trace:
[    0.275707]  dump_stack+0x57/0x6a
[    0.275709]  bad_page.cold.119+0x63/0x93
[    0.275713]  __free_pages_ok+0x31f/0x330
[    0.275716]  memblock_free_all+0x153/0x1bf
[    0.275719]  mem_init+0x23/0x1f2
[    0.275722]  start_kernel+0x299/0x57a
[    0.275725]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275727] Disabling lock debugging due to kernel taint
[    0.275728] BUG: Bad page state in process swapper  pfn:ab08002
[    0.275729] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08002
[    0.275730] flags: 0x0()
[    0.275730] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275731] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275732] page dumped because: nonzero mapcount
[    0.275732] Modules linked in:
[    0.275733] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275734] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275734] Call Trace:
[    0.275736]  dump_stack+0x57/0x6a
[    0.275737]  bad_page.cold.119+0x63/0x93
[    0.275738]  __free_pages_ok+0x31f/0x330
[    0.275739]  memblock_free_all+0x153/0x1bf
[    0.275740]  mem_init+0x23/0x1f2
[    0.275742]  start_kernel+0x299/0x57a
[    0.275743]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275744] BUG: Bad page state in process swapper  pfn:ab08003
[    0.275745] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08003
[    0.275746] flags: 0x0()
[    0.275747] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275747] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275748] page dumped because: nonzero mapcount
[    0.275748] Modules linked in:
[    0.275749] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275750] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275750] Call Trace:
[    0.275751]  dump_stack+0x57/0x6a
[    0.275752]  bad_page.cold.119+0x63/0x93
[    0.275753]  __free_pages_ok+0x31f/0x330
[    0.275754]  memblock_free_all+0x153/0x1bf
[    0.275755]  mem_init+0x23/0x1f2
[    0.275756]  start_kernel+0x299/0x57a
[    0.275758]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275759] BUG: Bad page state in process swapper  pfn:ab08004
[    0.275760] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08004
[    0.275760] flags: 0x0()
[    0.275761] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275762] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275762] page dumped because: nonzero mapcount
[    0.275762] Modules linked in:
[    0.275763] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275763] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275764] Call Trace:
[    0.275765]  dump_stack+0x57/0x6a
[    0.275766]  bad_page.cold.119+0x63/0x93
[    0.275767]  __free_pages_ok+0x31f/0x330
[    0.275768]  memblock_free_all+0x153/0x1bf
[    0.275769]  mem_init+0x23/0x1f2
[    0.275770]  start_kernel+0x299/0x57a
[    0.275771]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275772] BUG: Bad page state in process swapper  pfn:ab08005
[    0.275773] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08005
[    0.275773] flags: 0x0()
[    0.275774] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275775] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275775] page dumped because: nonzero mapcount
[    0.275776] Modules linked in:
[    0.275777] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275778] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275778] Call Trace:
[    0.275779]  dump_stack+0x57/0x6a
[    0.275780]  bad_page.cold.119+0x63/0x93
[    0.275781]  __free_pages_ok+0x31f/0x330
[    0.275782]  memblock_free_all+0x153/0x1bf
[    0.275783]  mem_init+0x23/0x1f2
[    0.275784]  start_kernel+0x299/0x57a
[    0.275785]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275786] BUG: Bad page state in process swapper  pfn:ab08006
[    0.275787] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08006
[    0.275788] flags: 0x0()
[    0.275788] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275789] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275789] page dumped because: nonzero mapcount
[    0.275790] Modules linked in:
[    0.275791] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275791] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275791] Call Trace:
[    0.275793]  dump_stack+0x57/0x6a
[    0.275793]  bad_page.cold.119+0x63/0x93
[    0.275795]  __free_pages_ok+0x31f/0x330
[    0.275796]  memblock_free_all+0x153/0x1bf
[    0.275797]  mem_init+0x23/0x1f2
[    0.275798]  start_kernel+0x299/0x57a
[    0.275799]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275800] BUG: Bad page state in process swapper  pfn:ab08007
[    0.275801] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08007
[    0.275802] flags: 0x0()
[    0.275802] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275803] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275803] page dumped because: nonzero mapcount
[    0.275804] Modules linked in:
[    0.275805] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275805] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275806] Call Trace:
[    0.275807]  dump_stack+0x57/0x6a
[    0.275808]  bad_page.cold.119+0x63/0x93
[    0.275808]  __free_pages_ok+0x31f/0x330
[    0.275810]  memblock_free_all+0x153/0x1bf
[    0.275811]  mem_init+0x23/0x1f2
[    0.275812]  start_kernel+0x299/0x57a
[    0.275813]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275814] BUG: Bad page state in process swapper  pfn:ab08008
[    0.275815] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08008
[    0.275816] flags: 0x0()
[    0.275817] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275818] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275818] page dumped because: nonzero mapcount
[    0.275819] Modules linked in:
[    0.275819] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275820] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275820] Call Trace:
[    0.275821]  dump_stack+0x57/0x6a
[    0.275822]  bad_page.cold.119+0x63/0x93
[    0.275823]  __free_pages_ok+0x31f/0x330
[    0.275824]  memblock_free_all+0x153/0x1bf
[    0.275825]  mem_init+0x23/0x1f2
[    0.275826]  start_kernel+0x299/0x57a
[    0.275827]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275828] BUG: Bad page state in process swapper  pfn:ab08009
[    0.275829] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08009
[    0.275830] flags: 0x0()
[    0.275830] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275831] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275831] page dumped because: nonzero mapcount
[    0.275832] Modules linked in:
[    0.275832] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275833] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275833] Call Trace:
[    0.275834]  dump_stack+0x57/0x6a
[    0.275835]  bad_page.cold.119+0x63/0x93
[    0.275836]  __free_pages_ok+0x31f/0x330
[    0.275837]  memblock_free_all+0x153/0x1bf
[    0.275838]  mem_init+0x23/0x1f2
[    0.275839]  start_kernel+0x299/0x57a
[    0.275840]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275842] BUG: Bad page state in process swapper  pfn:ab0800a
[    0.275842] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800a
[    0.275843] flags: 0x0()
[    0.275843] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275844] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275844] page dumped because: nonzero mapcount
[    0.275845] Modules linked in:
[    0.275846] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275846] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275846] Call Trace:
[    0.275847]  dump_stack+0x57/0x6a
[    0.275848]  bad_page.cold.119+0x63/0x93
[    0.275849]  __free_pages_ok+0x31f/0x330
[    0.275851]  memblock_free_all+0x153/0x1bf
[    0.275852]  mem_init+0x23/0x1f2
[    0.275853]  start_kernel+0x299/0x57a
[    0.275854]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275855] BUG: Bad page state in process swapper  pfn:ab0800b
[    0.275856] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800b
[    0.275857] flags: 0x0()
[    0.275858] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275858] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275859] page dumped because: nonzero mapcount
[    0.275859] Modules linked in:
[    0.275860] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275860] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275861] Call Trace:
[    0.275862]  dump_stack+0x57/0x6a
[    0.275863]  bad_page.cold.119+0x63/0x93
[    0.275864]  __free_pages_ok+0x31f/0x330
[    0.275865]  memblock_free_all+0x153/0x1bf
[    0.275866]  mem_init+0x23/0x1f2
[    0.275867]  start_kernel+0x299/0x57a
[    0.275868]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275869] BUG: Bad page state in process swapper  pfn:ab0800c
[    0.275870] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800c
[    0.275870] flags: 0x0()
[    0.275871] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275872] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275872] page dumped because: nonzero mapcount
[    0.275872] Modules linked in:
[    0.275873] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275874] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275874] Call Trace:
[    0.275875]  dump_stack+0x57/0x6a
[    0.275876]  bad_page.cold.119+0x63/0x93
[    0.275877]  __free_pages_ok+0x31f/0x330
[    0.275878]  memblock_free_all+0x153/0x1bf
[    0.275879]  mem_init+0x23/0x1f2
[    0.275880]  start_kernel+0x299/0x57a
[    0.275881]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275882] BUG: Bad page state in process swapper  pfn:ab0800d
[    0.275883] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800d
[    0.275883] flags: 0x0()
[    0.275884] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275885] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275885] page dumped because: nonzero mapcount
[    0.275885] Modules linked in:
[    0.275887] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275887] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275887] Call Trace:
[    0.275889]  dump_stack+0x57/0x6a
[    0.275890]  bad_page.cold.119+0x63/0x93
[    0.275891]  __free_pages_ok+0x31f/0x330
[    0.275892]  memblock_free_all+0x153/0x1bf
[    0.275893]  mem_init+0x23/0x1f2
[    0.275894]  start_kernel+0x299/0x57a
[    0.275895]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275897] BUG: Bad page state in process swapper  pfn:ab0800e
[    0.275897] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800e
[    0.275898] flags: 0x0()
[    0.275898] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275899] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275899] page dumped because: nonzero mapcount
[    0.275900] Modules linked in:
[    0.275901] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275901] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275901] Call Trace:
[    0.275902]  dump_stack+0x57/0x6a
[    0.275903]  bad_page.cold.119+0x63/0x93
[    0.275904]  __free_pages_ok+0x31f/0x330
[    0.275905]  memblock_free_all+0x153/0x1bf
[    0.275906]  mem_init+0x23/0x1f2
[    0.275907]  start_kernel+0x299/0x57a
[    0.275908]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275910] BUG: Bad page state in process swapper  pfn:ab0800f
[    0.275910] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800f
[    0.275911] flags: 0x0()
[    0.275911] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275912] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275913] page dumped because: nonzero mapcount
[    0.275913] Modules linked in:
[    0.275914] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275914] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275914] Call Trace:
[    0.275916]  dump_stack+0x57/0x6a
[    0.275916]  bad_page.cold.119+0x63/0x93
[    0.275917]  __free_pages_ok+0x31f/0x330
[    0.275918]  memblock_free_all+0x153/0x1bf
[    0.275920]  mem_init+0x23/0x1f2
[    0.275920]  start_kernel+0x299/0x57a
[    0.275922]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275923] BUG: Bad page state in process swapper  pfn:ab08010
[    0.275923] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08010
[    0.275924] flags: 0x0()
[    0.275925] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275925] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275926] page dumped because: nonzero mapcount
[    0.275926] Modules linked in:
[    0.275927] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275927] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275928] Call Trace:
[    0.275929]  dump_stack+0x57/0x6a
[    0.275929]  bad_page.cold.119+0x63/0x93
[    0.275930]  __free_pages_ok+0x31f/0x330
[    0.275932]  memblock_free_all+0x153/0x1bf
[    0.275933]  mem_init+0x23/0x1f2
[    0.275934]  start_kernel+0x299/0x57a
[    0.275935]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275936] BUG: Bad page state in process swapper  pfn:ab08011
[    0.275937] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08011
[    0.275937] flags: 0x0()
[    0.275938] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275938] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275939] page dumped because: nonzero mapcount
[    0.275939] Modules linked in:
[    0.275940] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275940] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275941] Call Trace:
[    0.275942]  dump_stack+0x57/0x6a
[    0.275942]  bad_page.cold.119+0x63/0x93
[    0.275943]  __free_pages_ok+0x31f/0x330
[    0.275945]  memblock_free_all+0x153/0x1bf
[    0.275946]  mem_init+0x23/0x1f2
[    0.275947]  start_kernel+0x299/0x57a
[    0.275948]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275949] BUG: Bad page state in process swapper  pfn:ab08012
[    0.275950] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08012
[    0.275950] flags: 0x0()
[    0.275951] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275951] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275952] page dumped because: nonzero mapcount
[    0.275952] Modules linked in:
[    0.275953] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275953] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275954] Call Trace:
[    0.275955]  dump_stack+0x57/0x6a
[    0.275955]  bad_page.cold.119+0x63/0x93
[    0.275956]  __free_pages_ok+0x31f/0x330
[    0.275958]  memblock_free_all+0x153/0x1bf
[    0.275959]  mem_init+0x23/0x1f2
[    0.275960]  start_kernel+0x299/0x57a
[    0.275961]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275962] BUG: Bad page state in process swapper  pfn:ab08013
[    0.275963] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08013
[    0.275963] flags: 0x0()
[    0.275964] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275964] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275965] page dumped because: nonzero mapcount
[    0.275965] Modules linked in:
[    0.275966] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275966] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275967] Call Trace:
[    0.275968]  dump_stack+0x57/0x6a
[    0.275969]  bad_page.cold.119+0x63/0x93
[    0.275970]  __free_pages_ok+0x31f/0x330
[    0.275971]  memblock_free_all+0x153/0x1bf
[    0.275972]  mem_init+0x23/0x1f2
[    0.275973]  start_kernel+0x299/0x57a
[    0.275974]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275975] BUG: Bad page state in process swapper  pfn:ab08014
[    0.275976] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08014
[    0.275976] flags: 0x0()
[    0.275977] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275978] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275978] page dumped because: nonzero mapcount
[    0.275978] Modules linked in:
[    0.275979] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275980] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275980] Call Trace:
[    0.275981]  dump_stack+0x57/0x6a
[    0.275982]  bad_page.cold.119+0x63/0x93
[    0.275983]  __free_pages_ok+0x31f/0x330
[    0.275984]  memblock_free_all+0x153/0x1bf
[    0.275985]  mem_init+0x23/0x1f2
[    0.275986]  start_kernel+0x299/0x57a
[    0.275987]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.275988] BUG: Bad page state in process swapper  pfn:ab08015
[    0.275989] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08015
[    0.275989] flags: 0x0()
[    0.275990] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275991] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.275991] page dumped because: nonzero mapcount
[    0.275991] Modules linked in:
[    0.275992] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.275993] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.275993] Call Trace:
[    0.275994]  dump_stack+0x57/0x6a
[    0.275995]  bad_page.cold.119+0x63/0x93
[    0.275996]  __free_pages_ok+0x31f/0x330
[    0.275997]  memblock_free_all+0x153/0x1bf
[    0.275998]  mem_init+0x23/0x1f2
[    0.275999]  start_kernel+0x299/0x57a
[    0.276000]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276001] BUG: Bad page state in process swapper  pfn:ab08016
[    0.276002] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08016
[    0.276002] flags: 0x0()
[    0.276003] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276004] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276004] page dumped because: nonzero mapcount
[    0.276004] Modules linked in:
[    0.276005] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276006] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276006] Call Trace:
[    0.276007]  dump_stack+0x57/0x6a
[    0.276008]  bad_page.cold.119+0x63/0x93
[    0.276009]  __free_pages_ok+0x31f/0x330
[    0.276010]  memblock_free_all+0x153/0x1bf
[    0.276011]  mem_init+0x23/0x1f2
[    0.276012]  start_kernel+0x299/0x57a
[    0.276013]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276014] BUG: Bad page state in process swapper  pfn:ab08017
[    0.276015] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08017
[    0.276015] flags: 0x0()
[    0.276016] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276017] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276017] page dumped because: nonzero mapcount
[    0.276018] Modules linked in:
[    0.276018] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276019] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276019] Call Trace:
[    0.276020]  dump_stack+0x57/0x6a
[    0.276021]  bad_page.cold.119+0x63/0x93
[    0.276022]  __free_pages_ok+0x31f/0x330
[    0.276023]  memblock_free_all+0x153/0x1bf
[    0.276024]  mem_init+0x23/0x1f2
[    0.276025]  start_kernel+0x299/0x57a
[    0.276026]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276027] BUG: Bad page state in process swapper  pfn:ab08018
[    0.276028] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08018
[    0.276029] flags: 0x0()
[    0.276029] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276030] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276030] page dumped because: nonzero mapcount
[    0.276031] Modules linked in:
[    0.276031] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276032] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276032] Call Trace:
[    0.276033]  dump_stack+0x57/0x6a
[    0.276034]  bad_page.cold.119+0x63/0x93
[    0.276035]  __free_pages_ok+0x31f/0x330
[    0.276036]  memblock_free_all+0x153/0x1bf
[    0.276037]  mem_init+0x23/0x1f2
[    0.276038]  start_kernel+0x299/0x57a
[    0.276039]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276041] BUG: Bad page state in process swapper  pfn:ab08019
[    0.276041] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08019
[    0.276042] flags: 0x0()
[    0.276042] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276043] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276043] page dumped because: nonzero mapcount
[    0.276044] Modules linked in:
[    0.276045] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276045] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276045] Call Trace:
[    0.276046]  dump_stack+0x57/0x6a
[    0.276047]  bad_page.cold.119+0x63/0x93
[    0.276048]  __free_pages_ok+0x31f/0x330
[    0.276049]  memblock_free_all+0x153/0x1bf
[    0.276050]  mem_init+0x23/0x1f2
[    0.276051]  start_kernel+0x299/0x57a
[    0.276052]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276054] BUG: Bad page state in process swapper  pfn:ab0801a
[    0.276054] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801a
[    0.276055] flags: 0x0()
[    0.276055] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276056] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276056] page dumped because: nonzero mapcount
[    0.276057] Modules linked in:
[    0.276058] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276058] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276058] Call Trace:
[    0.276060]  dump_stack+0x57/0x6a
[    0.276060]  bad_page.cold.119+0x63/0x93
[    0.276061]  __free_pages_ok+0x31f/0x330
[    0.276062]  memblock_free_all+0x153/0x1bf
[    0.276064]  mem_init+0x23/0x1f2
[    0.276064]  start_kernel+0x299/0x57a
[    0.276065]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276067] BUG: Bad page state in process swapper  pfn:ab0801b
[    0.276068] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801b
[    0.276068] flags: 0x0()
[    0.276069] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276069] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276070] page dumped because: nonzero mapcount
[    0.276070] Modules linked in:
[    0.276071] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276071] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276072] Call Trace:
[    0.276073]  dump_stack+0x57/0x6a
[    0.276073]  bad_page.cold.119+0x63/0x93
[    0.276074]  __free_pages_ok+0x31f/0x330
[    0.276076]  memblock_free_all+0x153/0x1bf
[    0.276077]  mem_init+0x23/0x1f2
[    0.276078]  start_kernel+0x299/0x57a
[    0.276079]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276080] BUG: Bad page state in process swapper  pfn:ab0801c
[    0.276081] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801c
[    0.276081] flags: 0x0()
[    0.276082] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276082] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276083] page dumped because: nonzero mapcount
[    0.276083] Modules linked in:
[    0.276084] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276084] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276085] Call Trace:
[    0.276086]  dump_stack+0x57/0x6a
[    0.276087]  bad_page.cold.119+0x63/0x93
[    0.276088]  __free_pages_ok+0x31f/0x330
[    0.276089]  memblock_free_all+0x153/0x1bf
[    0.276090]  mem_init+0x23/0x1f2
[    0.276091]  start_kernel+0x299/0x57a
[    0.276092]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276093] BUG: Bad page state in process swapper  pfn:ab0801d
[    0.276094] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801d
[    0.276094] flags: 0x0()
[    0.276095] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276095] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276096] page dumped because: nonzero mapcount
[    0.276096] Modules linked in:
[    0.276097] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276097] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276098] Call Trace:
[    0.276099]  dump_stack+0x57/0x6a
[    0.276100]  bad_page.cold.119+0x63/0x93
[    0.276101]  __free_pages_ok+0x31f/0x330
[    0.276102]  memblock_free_all+0x153/0x1bf
[    0.276103]  mem_init+0x23/0x1f2
[    0.276104]  start_kernel+0x299/0x57a
[    0.276105]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276106] BUG: Bad page state in process swapper  pfn:ab0801e
[    0.276107] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801e
[    0.276107] flags: 0x0()
[    0.276108] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276109] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276109] page dumped because: nonzero mapcount
[    0.276109] Modules linked in:
[    0.276110] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276111] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276111] Call Trace:
[    0.276112]  dump_stack+0x57/0x6a
[    0.276113]  bad_page.cold.119+0x63/0x93
[    0.276114]  __free_pages_ok+0x31f/0x330
[    0.276115]  memblock_free_all+0x153/0x1bf
[    0.276116]  mem_init+0x23/0x1f2
[    0.276117]  start_kernel+0x299/0x57a
[    0.276118]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276119] BUG: Bad page state in process swapper  pfn:ab0801f
[    0.276120] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801f
[    0.276120] flags: 0x0()
[    0.276121] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276122] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276122] page dumped because: nonzero mapcount
[    0.276122] Modules linked in:
[    0.276123] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276124] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276124] Call Trace:
[    0.276125]  dump_stack+0x57/0x6a
[    0.276126]  bad_page.cold.119+0x63/0x93
[    0.276127]  __free_pages_ok+0x31f/0x330
[    0.276128]  memblock_free_all+0x153/0x1bf
[    0.276129]  mem_init+0x23/0x1f2
[    0.276130]  start_kernel+0x299/0x57a
[    0.276131]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276132] BUG: Bad page state in process swapper  pfn:ab08020
[    0.276133] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08020
[    0.276133] flags: 0x0()
[    0.276134] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276135] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276135] page dumped because: nonzero mapcount
[    0.276135] Modules linked in:
[    0.276136] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276137] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276137] Call Trace:
[    0.276138]  dump_stack+0x57/0x6a
[    0.276139]  bad_page.cold.119+0x63/0x93
[    0.276140]  __free_pages_ok+0x31f/0x330
[    0.276141]  memblock_free_all+0x153/0x1bf
[    0.276142]  mem_init+0x23/0x1f2
[    0.276143]  start_kernel+0x299/0x57a
[    0.276144]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276145] BUG: Bad page state in process swapper  pfn:ab08021
[    0.276146] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08021
[    0.276147] flags: 0x0()
[    0.276147] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276148] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276148] page dumped because: nonzero mapcount
[    0.276148] Modules linked in:
[    0.276149] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276150] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276150] Call Trace:
[    0.276151]  dump_stack+0x57/0x6a
[    0.276152]  bad_page.cold.119+0x63/0x93
[    0.276153]  __free_pages_ok+0x31f/0x330
[    0.276154]  memblock_free_all+0x153/0x1bf
[    0.276155]  mem_init+0x23/0x1f2
[    0.276156]  start_kernel+0x299/0x57a
[    0.276157]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276158] BUG: Bad page state in process swapper  pfn:ab08022
[    0.276159] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08022
[    0.276160] flags: 0x0()
[    0.276160] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276161] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276161] page dumped because: nonzero mapcount
[    0.276162] Modules linked in:
[    0.276162] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276163] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276163] Call Trace:
[    0.276164]  dump_stack+0x57/0x6a
[    0.276165]  bad_page.cold.119+0x63/0x93
[    0.276166]  __free_pages_ok+0x31f/0x330
[    0.276167]  memblock_free_all+0x153/0x1bf
[    0.276168]  mem_init+0x23/0x1f2
[    0.276169]  start_kernel+0x299/0x57a
[    0.276170]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276171] BUG: Bad page state in process swapper  pfn:ab08023
[    0.276172] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08023
[    0.276173] flags: 0x0()
[    0.276173] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276174] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276174] page dumped because: nonzero mapcount
[    0.276175] Modules linked in:
[    0.276175] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276176] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276176] Call Trace:
[    0.276177]  dump_stack+0x57/0x6a
[    0.276178]  bad_page.cold.119+0x63/0x93
[    0.276179]  __free_pages_ok+0x31f/0x330
[    0.276180]  memblock_free_all+0x153/0x1bf
[    0.276181]  mem_init+0x23/0x1f2
[    0.276182]  start_kernel+0x299/0x57a
[    0.276183]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276185] BUG: Bad page state in process swapper  pfn:ab08024
[    0.276185] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08024
[    0.276186] flags: 0x0()
[    0.276186] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276187] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276187] page dumped because: nonzero mapcount
[    0.276188] Modules linked in:
[    0.276189] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276189] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276189] Call Trace:
[    0.276190]  dump_stack+0x57/0x6a
[    0.276191]  bad_page.cold.119+0x63/0x93
[    0.276192]  __free_pages_ok+0x31f/0x330
[    0.276193]  memblock_free_all+0x153/0x1bf
[    0.276194]  mem_init+0x23/0x1f2
[    0.276195]  start_kernel+0x299/0x57a
[    0.276196]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276198] BUG: Bad page state in process swapper  pfn:ab08025
[    0.276198] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08025
[    0.276199] flags: 0x0()
[    0.276200] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276200] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276201] page dumped because: nonzero mapcount
[    0.276201] Modules linked in:
[    0.276202] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276202] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276202] Call Trace:
[    0.276204]  dump_stack+0x57/0x6a
[    0.276204]  bad_page.cold.119+0x63/0x93
[    0.276205]  __free_pages_ok+0x31f/0x330
[    0.276206]  memblock_free_all+0x153/0x1bf
[    0.276208]  mem_init+0x23/0x1f2
[    0.276208]  start_kernel+0x299/0x57a
[    0.276210]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276211] BUG: Bad page state in process swapper  pfn:ab08026
[    0.276211] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08026
[    0.276212] flags: 0x0()
[    0.276213] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276213] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276214] page dumped because: nonzero mapcount
[    0.276214] Modules linked in:
[    0.276215] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276215] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276215] Call Trace:
[    0.276217]  dump_stack+0x57/0x6a
[    0.276217]  bad_page.cold.119+0x63/0x93
[    0.276218]  __free_pages_ok+0x31f/0x330
[    0.276219]  memblock_free_all+0x153/0x1bf
[    0.276221]  mem_init+0x23/0x1f2
[    0.276221]  start_kernel+0x299/0x57a
[    0.276223]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276224] BUG: Bad page state in process swapper  pfn:ab08027
[    0.276224] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08027
[    0.276225] flags: 0x0()
[    0.276226] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276226] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276227] page dumped because: nonzero mapcount
[    0.276227] Modules linked in:
[    0.276228] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276228] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276228] Call Trace:
[    0.276230]  dump_stack+0x57/0x6a
[    0.276230]  bad_page.cold.119+0x63/0x93
[    0.276231]  __free_pages_ok+0x31f/0x330
[    0.276232]  memblock_free_all+0x153/0x1bf
[    0.276234]  mem_init+0x23/0x1f2
[    0.276235]  start_kernel+0x299/0x57a
[    0.276236]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276237] BUG: Bad page state in process swapper  pfn:ab08028
[    0.276238] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08028
[    0.276238] flags: 0x0()
[    0.276239] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276239] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276240] page dumped because: nonzero mapcount
[    0.276240] Modules linked in:
[    0.276241] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276241] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276242] Call Trace:
[    0.276243]  dump_stack+0x57/0x6a
[    0.276243]  bad_page.cold.119+0x63/0x93
[    0.276244]  __free_pages_ok+0x31f/0x330
[    0.276246]  memblock_free_all+0x153/0x1bf
[    0.276247]  mem_init+0x23/0x1f2
[    0.276248]  start_kernel+0x299/0x57a
[    0.276249]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276250] BUG: Bad page state in process swapper  pfn:ab08029
[    0.276251] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08029
[    0.276251] flags: 0x0()
[    0.276252] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276252] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276253] page dumped because: nonzero mapcount
[    0.276253] Modules linked in:
[    0.276254] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276254] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276255] Call Trace:
[    0.276256]  dump_stack+0x57/0x6a
[    0.276257]  bad_page.cold.119+0x63/0x93
[    0.276258]  __free_pages_ok+0x31f/0x330
[    0.276259]  memblock_free_all+0x153/0x1bf
[    0.276260]  mem_init+0x23/0x1f2
[    0.276261]  start_kernel+0x299/0x57a
[    0.276262]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276263] BUG: Bad page state in process swapper  pfn:ab0802a
[    0.276264] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802a
[    0.276264] flags: 0x0()
[    0.276265] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276265] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276266] page dumped because: nonzero mapcount
[    0.276266] Modules linked in:
[    0.276267] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276267] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276268] Call Trace:
[    0.276269]  dump_stack+0x57/0x6a
[    0.276270]  bad_page.cold.119+0x63/0x93
[    0.276271]  __free_pages_ok+0x31f/0x330
[    0.276272]  memblock_free_all+0x153/0x1bf
[    0.276273]  mem_init+0x23/0x1f2
[    0.276274]  start_kernel+0x299/0x57a
[    0.276275]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276276] BUG: Bad page state in process swapper  pfn:ab0802b
[    0.276277] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802b
[    0.276277] flags: 0x0()
[    0.276278] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276279] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276279] page dumped because: nonzero mapcount
[    0.276279] Modules linked in:
[    0.276280] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276281] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276281] Call Trace:
[    0.276282]  dump_stack+0x57/0x6a
[    0.276283]  bad_page.cold.119+0x63/0x93
[    0.276284]  __free_pages_ok+0x31f/0x330
[    0.276285]  memblock_free_all+0x153/0x1bf
[    0.276286]  mem_init+0x23/0x1f2
[    0.276287]  start_kernel+0x299/0x57a
[    0.276288]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276289] BUG: Bad page state in process swapper  pfn:ab0802c
[    0.276290] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802c
[    0.276290] flags: 0x0()
[    0.276291] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276292] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276292] page dumped because: nonzero mapcount
[    0.276292] Modules linked in:
[    0.276293] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276294] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276294] Call Trace:
[    0.276295]  dump_stack+0x57/0x6a
[    0.276296]  bad_page.cold.119+0x63/0x93
[    0.276297]  __free_pages_ok+0x31f/0x330
[    0.276298]  memblock_free_all+0x153/0x1bf
[    0.276299]  mem_init+0x23/0x1f2
[    0.276300]  start_kernel+0x299/0x57a
[    0.276301]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276302] BUG: Bad page state in process swapper  pfn:ab0802d
[    0.276303] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802d
[    0.276303] flags: 0x0()
[    0.276304] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276305] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276305] page dumped because: nonzero mapcount
[    0.276305] Modules linked in:
[    0.276306] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276307] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276307] Call Trace:
[    0.276308]  dump_stack+0x57/0x6a
[    0.276309]  bad_page.cold.119+0x63/0x93
[    0.276310]  __free_pages_ok+0x31f/0x330
[    0.276311]  memblock_free_all+0x153/0x1bf
[    0.276312]  mem_init+0x23/0x1f2
[    0.276313]  start_kernel+0x299/0x57a
[    0.276314]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276315] BUG: Bad page state in process swapper  pfn:ab0802e
[    0.276316] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802e
[    0.276317] flags: 0x0()
[    0.276317] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276318] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276318] page dumped because: nonzero mapcount
[    0.276319] Modules linked in:
[    0.276319] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276320] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276320] Call Trace:
[    0.276321]  dump_stack+0x57/0x6a
[    0.276322]  bad_page.cold.119+0x63/0x93
[    0.276323]  __free_pages_ok+0x31f/0x330
[    0.276324]  memblock_free_all+0x153/0x1bf
[    0.276325]  mem_init+0x23/0x1f2
[    0.276326]  start_kernel+0x299/0x57a
[    0.276327]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276329] BUG: Bad page state in process swapper  pfn:ab0802f
[    0.276329] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802f
[    0.276330] flags: 0x0()
[    0.276330] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276331] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276331] page dumped because: nonzero mapcount
[    0.276332] Modules linked in:
[    0.276332] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276333] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276333] Call Trace:
[    0.276334]  dump_stack+0x57/0x6a
[    0.276335]  bad_page.cold.119+0x63/0x93
[    0.276336]  __free_pages_ok+0x31f/0x330
[    0.276337]  memblock_free_all+0x153/0x1bf
[    0.276338]  mem_init+0x23/0x1f2
[    0.276339]  start_kernel+0x299/0x57a
[    0.276340]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276342] BUG: Bad page state in process swapper  pfn:ab08030
[    0.276342] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08030
[    0.276343] flags: 0x0()
[    0.276343] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276344] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276344] page dumped because: nonzero mapcount
[    0.276345] Modules linked in:
[    0.276345] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276346] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276346] Call Trace:
[    0.276347]  dump_stack+0x57/0x6a
[    0.276348]  bad_page.cold.119+0x63/0x93
[    0.276349]  __free_pages_ok+0x31f/0x330
[    0.276350]  memblock_free_all+0x153/0x1bf
[    0.276351]  mem_init+0x23/0x1f2
[    0.276352]  start_kernel+0x299/0x57a
[    0.276353]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276355] BUG: Bad page state in process swapper  pfn:ab08031
[    0.276355] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08031
[    0.276356] flags: 0x0()
[    0.276356] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276357] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276357] page dumped because: nonzero mapcount
[    0.276358] Modules linked in:
[    0.276359] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276359] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276359] Call Trace:
[    0.276360]  dump_stack+0x57/0x6a
[    0.276361]  bad_page.cold.119+0x63/0x93
[    0.276362]  __free_pages_ok+0x31f/0x330
[    0.276363]  memblock_free_all+0x153/0x1bf
[    0.276364]  mem_init+0x23/0x1f2
[    0.276365]  start_kernel+0x299/0x57a
[    0.276366]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276368] BUG: Bad page state in process swapper  pfn:ab08032
[    0.276368] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08032
[    0.276369] flags: 0x0()
[    0.276369] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276370] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276370] page dumped because: nonzero mapcount
[    0.276371] Modules linked in:
[    0.276372] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276372] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276372] Call Trace:
[    0.276373]  dump_stack+0x57/0x6a
[    0.276374]  bad_page.cold.119+0x63/0x93
[    0.276375]  __free_pages_ok+0x31f/0x330
[    0.276376]  memblock_free_all+0x153/0x1bf
[    0.276377]  mem_init+0x23/0x1f2
[    0.276378]  start_kernel+0x299/0x57a
[    0.276379]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276381] BUG: Bad page state in process swapper  pfn:ab08033
[    0.276381] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08033
[    0.276382] flags: 0x0()
[    0.276382] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276383] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276383] page dumped because: nonzero mapcount
[    0.276384] Modules linked in:
[    0.276385] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276385] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276385] Call Trace:
[    0.276386]  dump_stack+0x57/0x6a
[    0.276387]  bad_page.cold.119+0x63/0x93
[    0.276388]  __free_pages_ok+0x31f/0x330
[    0.276389]  memblock_free_all+0x153/0x1bf
[    0.276391]  mem_init+0x23/0x1f2
[    0.276391]  start_kernel+0x299/0x57a
[    0.276393]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276394] BUG: Bad page state in process swapper  pfn:ab08034
[    0.276394] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08034
[    0.276395] flags: 0x0()
[    0.276396] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276396] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276397] page dumped because: nonzero mapcount
[    0.276397] Modules linked in:
[    0.276398] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276398] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276398] Call Trace:
[    0.276400]  dump_stack+0x57/0x6a
[    0.276400]  bad_page.cold.119+0x63/0x93
[    0.276401]  __free_pages_ok+0x31f/0x330
[    0.276402]  memblock_free_all+0x153/0x1bf
[    0.276404]  mem_init+0x23/0x1f2
[    0.276405]  start_kernel+0x299/0x57a
[    0.276406]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276407] BUG: Bad page state in process swapper  pfn:ab08035
[    0.276408] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08035
[    0.276408] flags: 0x0()
[    0.276409] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276409] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276410] page dumped because: nonzero mapcount
[    0.276410] Modules linked in:
[    0.276411] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276411] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276412] Call Trace:
[    0.276413]  dump_stack+0x57/0x6a
[    0.276414]  bad_page.cold.119+0x63/0x93
[    0.276414]  __free_pages_ok+0x31f/0x330
[    0.276416]  memblock_free_all+0x153/0x1bf
[    0.276417]  mem_init+0x23/0x1f2
[    0.276418]  start_kernel+0x299/0x57a
[    0.276419]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276420] BUG: Bad page state in process swapper  pfn:ab08036
[    0.276421] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08036
[    0.276421] flags: 0x0()
[    0.276422] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276422] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276423] page dumped because: nonzero mapcount
[    0.276423] Modules linked in:
[    0.276424] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276424] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276425] Call Trace:
[    0.276426]  dump_stack+0x57/0x6a
[    0.276427]  bad_page.cold.119+0x63/0x93
[    0.276428]  __free_pages_ok+0x31f/0x330
[    0.276429]  memblock_free_all+0x153/0x1bf
[    0.276430]  mem_init+0x23/0x1f2
[    0.276431]  start_kernel+0x299/0x57a
[    0.276432]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276433] BUG: Bad page state in process swapper  pfn:ab08037
[    0.276434] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08037
[    0.276434] flags: 0x0()
[    0.276435] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276435] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276436] page dumped because: nonzero mapcount
[    0.276436] Modules linked in:
[    0.276437] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276437] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276438] Call Trace:
[    0.276439]  dump_stack+0x57/0x6a
[    0.276440]  bad_page.cold.119+0x63/0x93
[    0.276441]  __free_pages_ok+0x31f/0x330
[    0.276442]  memblock_free_all+0x153/0x1bf
[    0.276443]  mem_init+0x23/0x1f2
[    0.276444]  start_kernel+0x299/0x57a
[    0.276445]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276446] BUG: Bad page state in process swapper  pfn:ab08038
[    0.276447] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08038
[    0.276447] flags: 0x0()
[    0.276448] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276449] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276449] page dumped because: nonzero mapcount
[    0.276449] Modules linked in:
[    0.276450] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276450] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276451] Call Trace:
[    0.276452]  dump_stack+0x57/0x6a
[    0.276453]  bad_page.cold.119+0x63/0x93
[    0.276454]  __free_pages_ok+0x31f/0x330
[    0.276455]  memblock_free_all+0x153/0x1bf
[    0.276456]  mem_init+0x23/0x1f2
[    0.276457]  start_kernel+0x299/0x57a
[    0.276458]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276459] BUG: Bad page state in process swapper  pfn:ab08039
[    0.276460] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08039
[    0.276460] flags: 0x0()
[    0.276461] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276462] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276462] page dumped because: nonzero mapcount
[    0.276462] Modules linked in:
[    0.276463] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276464] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276464] Call Trace:
[    0.276465]  dump_stack+0x57/0x6a
[    0.276466]  bad_page.cold.119+0x63/0x93
[    0.276467]  __free_pages_ok+0x31f/0x330
[    0.276468]  memblock_free_all+0x153/0x1bf
[    0.276469]  mem_init+0x23/0x1f2
[    0.276470]  start_kernel+0x299/0x57a
[    0.276471]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276472] BUG: Bad page state in process swapper  pfn:ab0803a
[    0.276473] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0803a
[    0.276473] flags: 0x0()
[    0.276474] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276475] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276475] page dumped because: nonzero mapcount
[    0.276475] Modules linked in:
[    0.276476] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276477] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276477] Call Trace:
[    0.276478]  dump_stack+0x57/0x6a
[    0.276479]  bad_page.cold.119+0x63/0x93
[    0.276480]  __free_pages_ok+0x31f/0x330
[    0.276481]  memblock_free_all+0x153/0x1bf
[    0.276482]  mem_init+0x23/0x1f2
[    0.276483]  start_kernel+0x299/0x57a
[    0.276484]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276485] BUG: Bad page state in process swapper  pfn:ab0803b
[    0.276486] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0803b
[    0.276486] flags: 0x0()
[    0.276487] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276488] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276488] page dumped because: nonzero mapcount
[    0.276488] Modules linked in:
[    0.276489] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276490] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276490] Call Trace:
[    0.276491]  dump_stack+0x57/0x6a
[    0.276492]  bad_page.cold.119+0x63/0x93
[    0.276493]  __free_pages_ok+0x31f/0x330
[    0.276494]  memblock_free_all+0x153/0x1bf
[    0.276495]  mem_init+0x23/0x1f2
[    0.276496]  start_kernel+0x299/0x57a
[    0.276497]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.276498] BUG: Bad page state in process swapper  pfn:ab0803c
[    0.276499] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0803c
[    0.276500] flags: 0x0()
[    0.276500] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276501] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.276501] page dumped because: nonzero mapcount
[    0.276502] Modules linked in:
[    0.276502] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.276503] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.276503] Call Trace:
[    0.276504]  dump_stack+0x57/0x6a
[    0.276505]  bad_page.cold.119+0x63/0x93
[    0.276506]  __free_pages_ok+0x31f/0x330
[    0.276507]  memblock_free_all+0x153/0x1bf
[    0.276508]  mem_init+0x23/0x1f2
[    0.276509]  start_kernel+0x299/0x57a
[    0.276510]  secondary_startup_64_no_verify+0xb8/0xbb
[    4.091866] Memory: 3374072K/1073740756K available (12297K kernel code, 5778K rwdata, 4376K rodata, 2352K init, 6480K bss, 16999716K reserved, 0K cma-reserved)
[    4.094233] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=84, Nodes=3
[    4.094280] Kernel/User page tables isolation: enabled
[    4.094324] ftrace: allocating 39515 entries in 155 pages
[    4.106069] ftrace: allocated 155 pages with 5 groups
[    4.107376] rcu: Hierarchical RCU implementation.
[    4.107377] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=84.
[    4.107378] 	Rude variant of Tasks RCU enabled.
[    4.107379] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    4.107379] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=84
[    4.109995] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    4.110812] Console: colour dummy device 80x25
[    4.110961] printk: console [tty0] enabled
[    4.111187] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    4.111189] ACPI: Core revision 20200925
[    4.116024] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    4.116096] APIC: Switch to symmetric I/O mode setup
[    4.117596] x2apic enabled
[    4.119224] Switched APIC routing to physical x2apic.
[    4.122931] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    4.122969] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e3306b9ada, max_idle_ns: 440795224413 ns
[    4.122971] Calibrating delay loop (skipped) preset value.. 4190.15 BogoMIPS (lpj=2095078)
[    4.122974] pid_max: default: 86016 minimum: 672
[    4.123981] __memblock_free_late: [0x000000000ffbf000-0x000000000fffffff] efi_free_boot_services+0x151/0x241
[    4.123995] __memblock_free_late: [0x000000000ff77000-0x000000000ffbefff] efi_free_boot_services+0x151/0x241
[    4.124017] __memblock_free_late: [0x000000000fdf7000-0x000000000fee6fff] efi_free_boot_services+0x151/0x241
[    4.124076] __memblock_free_late: [0x000000000ef90000-0x000000000fdf6fff] efi_free_boot_services+0x151/0x241
[    4.124522] __memblock_free_late: [0x000000000ef66000-0x000000000ef8ffff] efi_free_boot_services+0x151/0x241
[    4.124532] __memblock_free_late: [0x000000000ef48000-0x000000000ef60fff] efi_free_boot_services+0x151/0x241
[    4.124537] __memblock_free_late: [0x000000000ef2d000-0x000000000ef3bfff] efi_free_boot_services+0x151/0x241
[    4.124544] __memblock_free_late: [0x000000000eee2000-0x000000000ef23fff] efi_free_boot_services+0x151/0x241
[    4.124586] __memblock_free_late: [0x000000000e8e0000-0x000000000eee1fff] efi_free_boot_services+0x151/0x241
[    4.124805] __memblock_free_late: [0x000000000e74a000-0x000000000e8dffff] efi_free_boot_services+0x151/0x241
[    4.124855] __memblock_free_late: [0x000000000e0b1000-0x000000000e0b1fff] efi_free_boot_services+0x151/0x241
[    4.124857] __memblock_free_late: [0x000000000df93000-0x000000000df93fff] efi_free_boot_services+0x151/0x241
[    4.125283] LSM: Security Framework initializing
[    4.125318] Yama: becoming mindful.
[    4.125358] SELinux:  Initializing.
[    4.222984] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes, vmalloc)
[    4.274235] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc)
[    4.275037] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    4.276277] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    4.278537] Disabled fast string operations
[    4.279002] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    4.279002] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    4.279010] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    4.279012] Spectre V2 : Mitigation: Full generic retpoline
[    4.279012] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    4.279013] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    4.279015] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    4.279016] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    4.279018] MDS: Mitigation: Clear CPU buffers
[    4.279224] Freeing SMP alternatives memory: 32K
[    4.280111] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8176 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x4)
[    4.280306] Performance Events: Skylake events, core PMU driver.
[    4.280364] core: CPUID marked event: 'cpu cycles' unavailable
[    4.280365] core: CPUID marked event: 'instructions' unavailable
[    4.280365] core: CPUID marked event: 'bus cycles' unavailable
[    4.280366] core: CPUID marked event: 'cache references' unavailable
[    4.280366] core: CPUID marked event: 'cache misses' unavailable
[    4.280367] core: CPUID marked event: 'branch instructions' unavailable
[    4.280367] core: CPUID marked event: 'branch misses' unavailable
[    4.280369] ... version:                1
[    4.280370] ... bit width:              48
[    4.280370] ... generic registers:      4
[    4.280371] ... value mask:             0000ffffffffffff
[    4.280371] ... max period:             000000007fffffff
[    4.280372] ... fixed-purpose events:   0
[    4.280372] ... event mask:             000000000000000f
[    4.280519] rcu: Hierarchical SRCU implementation.
[    4.280629] NMI watchdog: Perf NMI watchdog permanently disabled
[    4.282887] smp: Bringing up secondary CPUs ...
[    4.282975] x86: Booting SMP configuration:
[    4.282976] .... node  #0, CPUs:        #1
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 1 Converting physical 2 to logical package 1
[    0.011320] smpboot: CPU 1 Converting physical 0 to logical die 1
[    4.284060]   #2
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 2 Converting physical 4 to logical package 2
[    0.011320] smpboot: CPU 2 Converting physical 0 to logical die 2
[    4.285344]   #3
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 3 Converting physical 6 to logical package 3
[    0.011320] smpboot: CPU 3 Converting physical 0 to logical die 3
[    4.287272]   #4
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 4 Converting physical 8 to logical package 4
[    0.011320] smpboot: CPU 4 Converting physical 0 to logical die 4
[    4.288365]   #5
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 5 Converting physical 10 to logical package 5
[    0.011320] smpboot: CPU 5 Converting physical 0 to logical die 5
[    4.289257]   #6
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 6 Converting physical 12 to logical package 6
[    0.011320] smpboot: CPU 6 Converting physical 0 to logical die 6
[    4.291357]   #7
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 7 Converting physical 14 to logical package 7
[    0.011320] smpboot: CPU 7 Converting physical 0 to logical die 7
[    4.292427]   #8
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 8 Converting physical 16 to logical package 8
[    0.011320] smpboot: CPU 8 Converting physical 0 to logical die 8
[    4.293549]   #9
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 9 Converting physical 18 to logical package 9
[    0.011320] smpboot: CPU 9 Converting physical 0 to logical die 9
[    4.294037]  #10
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 10 Converting physical 20 to logical package 10
[    0.011320] smpboot: CPU 10 Converting physical 0 to logical die 10
[    4.294735]  #11
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 11 Converting physical 22 to logical package 11
[    0.011320] smpboot: CPU 11 Converting physical 0 to logical die 11
[    4.295699]  #12
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 12 Converting physical 24 to logical package 12
[    0.011320] smpboot: CPU 12 Converting physical 0 to logical die 12
[    4.296579]  #13
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 13 Converting physical 26 to logical package 13
[    0.011320] smpboot: CPU 13 Converting physical 0 to logical die 13
[    4.297042]  #14
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 14 Converting physical 28 to logical package 14
[    0.011320] smpboot: CPU 14 Converting physical 0 to logical die 14
[    4.298046]  #15
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 15 Converting physical 30 to logical package 15
[    0.011320] smpboot: CPU 15 Converting physical 0 to logical die 15
[    4.299050]  #16
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 16 Converting physical 32 to logical package 16
[    0.011320] smpboot: CPU 16 Converting physical 0 to logical die 16
[    4.299791]  #17
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 17 Converting physical 34 to logical package 17
[    0.011320] smpboot: CPU 17 Converting physical 0 to logical die 17
[    4.300661]  #18
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 18 Converting physical 36 to logical package 18
[    0.011320] smpboot: CPU 18 Converting physical 0 to logical die 18
[    4.301556]  #19
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 19 Converting physical 38 to logical package 19
[    0.011320] smpboot: CPU 19 Converting physical 0 to logical die 19
[    4.302418]  #20
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 20 Converting physical 40 to logical package 20
[    0.011320] smpboot: CPU 20 Converting physical 0 to logical die 20
[    4.303594]  #21
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 21 Converting physical 42 to logical package 21
[    0.011320] smpboot: CPU 21 Converting physical 0 to logical die 21
[    4.304044]  #22
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 22 Converting physical 44 to logical package 22
[    0.011320] smpboot: CPU 22 Converting physical 0 to logical die 22
[    4.304733]  #23
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 23 Converting physical 46 to logical package 23
[    0.011320] smpboot: CPU 23 Converting physical 0 to logical die 23
[    4.305611]  #24
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 24 Converting physical 48 to logical package 24
[    0.011320] smpboot: CPU 24 Converting physical 0 to logical die 24
[    4.306048]  #25
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 25 Converting physical 50 to logical package 25
[    0.011320] smpboot: CPU 25 Converting physical 0 to logical die 25
[    4.306675]  #26
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 26 Converting physical 52 to logical package 26
[    0.011320] smpboot: CPU 26 Converting physical 0 to logical die 26
[    4.307498]  #27
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 27 Converting physical 54 to logical package 27
[    0.011320] smpboot: CPU 27 Converting physical 0 to logical die 27

[    4.308338] .... node  #1, CPUs:   #28
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 28 Converting physical 56 to logical package 28
[    0.011320] smpboot: CPU 28 Converting physical 0 to logical die 28
[    4.309089]  #29
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 29 Converting physical 58 to logical package 29
[    0.011320] smpboot: CPU 29 Converting physical 0 to logical die 29
[    4.310059]  #30
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 30 Converting physical 60 to logical package 30
[    0.011320] smpboot: CPU 30 Converting physical 0 to logical die 30
[    4.311060]  #31
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 31 Converting physical 62 to logical package 31
[    0.011320] smpboot: CPU 31 Converting physical 0 to logical die 31
[    4.312025]  #32
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 32 Converting physical 64 to logical package 32
[    0.011320] smpboot: CPU 32 Converting physical 0 to logical die 32
[    4.313062]  #33
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 33 Converting physical 66 to logical package 33
[    0.011320] smpboot: CPU 33 Converting physical 0 to logical die 33
[    4.314057]  #34
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 34 Converting physical 68 to logical package 34
[    0.011320] smpboot: CPU 34 Converting physical 0 to logical die 34
[    4.314739]  #35
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 35 Converting physical 70 to logical package 35
[    0.011320] smpboot: CPU 35 Converting physical 0 to logical die 35
[    4.315681]  #36
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 36 Converting physical 72 to logical package 36
[    0.011320] smpboot: CPU 36 Converting physical 0 to logical die 36
[    4.316575]  #37
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 37 Converting physical 74 to logical package 37
[    0.011320] smpboot: CPU 37 Converting physical 0 to logical die 37
[    4.317204]  #38
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 38 Converting physical 76 to logical package 38
[    0.011320] smpboot: CPU 38 Converting physical 0 to logical die 38
[    4.318659]  #39
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 39 Converting physical 78 to logical package 39
[    0.011320] smpboot: CPU 39 Converting physical 0 to logical die 39
[    4.319053]  #40
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 40 Converting physical 80 to logical package 40
[    0.011320] smpboot: CPU 40 Converting physical 0 to logical die 40
[    4.319673]  #41
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 41 Converting physical 82 to logical package 41
[    0.011320] smpboot: CPU 41 Converting physical 0 to logical die 41
[    4.320643]  #42
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 42 Converting physical 84 to logical package 42
[    0.011320] smpboot: CPU 42 Converting physical 0 to logical die 42
[    4.321505]  #43
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 43 Converting physical 86 to logical package 43
[    0.011320] smpboot: CPU 43 Converting physical 0 to logical die 43
[    4.322043]  #44
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 44 Converting physical 88 to logical package 44
[    0.011320] smpboot: CPU 44 Converting physical 0 to logical die 44
[    4.322998]  #45
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 45 Converting physical 90 to logical package 45
[    0.011320] smpboot: CPU 45 Converting physical 0 to logical die 45
[    4.323699]  #46
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 46 Converting physical 92 to logical package 46
[    0.011320] smpboot: CPU 46 Converting physical 0 to logical die 46
[    4.324593]  #47
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 47 Converting physical 94 to logical package 47
[    0.011320] smpboot: CPU 47 Converting physical 0 to logical die 47
[    4.325613]  #48
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 48 Converting physical 96 to logical package 48
[    0.011320] smpboot: CPU 48 Converting physical 0 to logical die 48
[    4.326232]  #49
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 49 Converting physical 98 to logical package 49
[    0.011320] smpboot: CPU 49 Converting physical 0 to logical die 49
[    4.327052]  #50
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 50 Converting physical 100 to logical package 50
[    0.011320] smpboot: CPU 50 Converting physical 0 to logical die 50
[    4.328001]  #51
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 51 Converting physical 102 to logical package 51
[    0.011320] smpboot: CPU 51 Converting physical 0 to logical die 51
[    4.329036]  #52
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 52 Converting physical 104 to logical package 52
[    0.011320] smpboot: CPU 52 Converting physical 0 to logical die 52
[    4.329699]  #53
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 53 Converting physical 106 to logical package 53
[    0.011320] smpboot: CPU 53 Converting physical 0 to logical die 53
[    4.330656]  #54
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 54 Converting physical 108 to logical package 54
[    0.011320] smpboot: CPU 54 Converting physical 0 to logical die 54
[    4.331080]  #55
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 55 Converting physical 110 to logical package 55
[    0.011320] smpboot: CPU 55 Converting physical 0 to logical die 55

[    4.331976] .... node  #2, CPUs:   #56
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 56 Converting physical 112 to logical package 56
[    0.011320] smpboot: CPU 56 Converting physical 0 to logical die 56
[    4.333063]  #57
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 57 Converting physical 114 to logical package 57
[    0.011320] smpboot: CPU 57 Converting physical 0 to logical die 57
[    4.334171]  #58
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 58 Converting physical 116 to logical package 58
[    0.011320] smpboot: CPU 58 Converting physical 0 to logical die 58
[    4.335451]  #59
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 59 Converting physical 118 to logical package 59
[    0.011320] smpboot: CPU 59 Converting physical 0 to logical die 59
[    4.336204]  #60
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 60 Converting physical 120 to logical package 60
[    0.011320] smpboot: CPU 60 Converting physical 0 to logical die 60
[    4.337066]  #61
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 61 Converting physical 122 to logical package 61
[    0.011320] smpboot: CPU 61 Converting physical 0 to logical die 61
[    4.338069]  #62
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 62 Converting physical 124 to logical package 62
[    0.011320] smpboot: CPU 62 Converting physical 0 to logical die 62
[    4.338694]  #63
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 63 Converting physical 126 to logical package 63
[    0.011320] smpboot: CPU 63 Converting physical 0 to logical die 63
[    4.339663]  #64
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 64 Converting physical 128 to logical package 64
[    0.011320] smpboot: CPU 64 Converting physical 0 to logical die 64
[    4.340476]  #65
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 65 Converting physical 130 to logical package 65
[    0.011320] smpboot: CPU 65 Converting physical 0 to logical die 65
[    4.341220]  #66
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 66 Converting physical 132 to logical package 66
[    0.011320] smpboot: CPU 66 Converting physical 0 to logical die 66
[    4.342672]  #67
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 67 Converting physical 134 to logical package 67
[    0.011320] smpboot: CPU 67 Converting physical 0 to logical die 67
[    4.343056]  #68
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 68 Converting physical 136 to logical package 68
[    0.011320] smpboot: CPU 68 Converting physical 0 to logical die 68
[    4.344055]  #69
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 69 Converting physical 138 to logical package 69
[    0.011320] smpboot: CPU 69 Converting physical 0 to logical die 69
[    4.344682]  #70
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 70 Converting physical 140 to logical package 70
[    0.011320] smpboot: CPU 70 Converting physical 0 to logical die 70
[    4.345572]  #71
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 71 Converting physical 142 to logical package 71
[    0.011320] smpboot: CPU 71 Converting physical 0 to logical die 71
[    4.346049]  #72
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 72 Converting physical 144 to logical package 72
[    0.011320] smpboot: CPU 72 Converting physical 0 to logical die 72
[    4.346643]  #73
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 73 Converting physical 146 to logical package 73
[    0.011320] smpboot: CPU 73 Converting physical 0 to logical die 73
[    4.347484]  #74
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 74 Converting physical 148 to logical package 74
[    0.011320] smpboot: CPU 74 Converting physical 0 to logical die 74
[    4.348056]  #75
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 75 Converting physical 150 to logical package 75
[    0.011320] smpboot: CPU 75 Converting physical 0 to logical die 75
[    4.348635]  #76
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 76 Converting physical 152 to logical package 76
[    0.011320] smpboot: CPU 76 Converting physical 0 to logical die 76
[    4.349616]  #77
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 77 Converting physical 154 to logical package 77
[    0.011320] smpboot: CPU 77 Converting physical 0 to logical die 77
[    4.350447]  #78
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 78 Converting physical 156 to logical package 78
[    0.011320] smpboot: CPU 78 Converting physical 0 to logical die 78
[    4.351981]  #79
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 79 Converting physical 158 to logical package 79
[    0.011320] smpboot: CPU 79 Converting physical 0 to logical die 79
[    4.352634]  #80
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 80 Converting physical 160 to logical package 80
[    0.011320] smpboot: CPU 80 Converting physical 0 to logical die 80
[    4.353682]  #81
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 81 Converting physical 162 to logical package 81
[    0.011320] smpboot: CPU 81 Converting physical 0 to logical die 81
[    4.354711]  #82
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 82 Converting physical 164 to logical package 82
[    0.011320] smpboot: CPU 82 Converting physical 0 to logical die 82
[    4.355543]  #83
[    0.011320] Disabled fast string operations
[    0.011320] smpboot: CPU 83 Converting physical 166 to logical package 83
[    0.011320] smpboot: CPU 83 Converting physical 0 to logical die 83
[    4.356333] smp: Brought up 3 nodes, 84 CPUs
[    4.356336] smpboot: Max logical packages: 84
[    4.356339] smpboot: Total of 84 processors activated (351973.10 BogoMIPS)
[    4.393024] node 2 deferred pages initialised in 33ms
[    4.510043] node 0 deferred pages initialised in 151ms
[    4.615032] node 1 deferred pages initialised in 255ms
[    4.615361] __memblock_free_late: [0x000001033ffa0000-0x000001033ffa1fff] memblock_discard+0x55/0xb1
[    4.642197] devtmpfs: initialized
[    4.642197] x86/mm: Memory block size: 1024MB
[    4.649768] PM: Registering ACPI NVS region [mem 0x00000000-0x00000fff] (4096 bytes)
[    4.649768] PM: Registering ACPI NVS region [mem 0x0ef42000-0x0ef47fff] (24576 bytes)
[    4.649768] PM: Registering ACPI NVS region [mem 0x0ff73000-0x0ff76fff] (16384 bytes)
[    4.650774] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    4.650774] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    4.652455] pinctrl core: initialized pinctrl subsystem
[    4.653156] NET: Registered protocol family 16
[    4.653255] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    4.653266] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    4.653278] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    4.653287] audit: initializing netlink subsys (disabled)
[    4.653299] audit: type=2000 audit(1603119055.532:1): state=initialized audit_enabled=0 res=1
[    4.653299] thermal_sys: Registered thermal governor 'fair_share'
[    4.653299] thermal_sys: Registered thermal governor 'bang_bang'
[    4.653299] thermal_sys: Registered thermal governor 'step_wise'
[    4.653299] thermal_sys: Registered thermal governor 'user_space'
[    4.653299] cpuidle: using governor menu
[    4.653299] ACPI: bus type PCI registered
[    4.653299] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    4.654029] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    4.654031] PCI: not using MMCONFIG
[    4.654033] PCI: Using configuration type 1 for base access
[    4.658999] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    4.658999] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    4.688483] cryptd: max_cpu_qlen set to 1000
[    4.707385] ACPI: Added _OSI(Module Device)
[    4.707387] ACPI: Added _OSI(Processor Device)
[    4.707388] ACPI: Added _OSI(3.0 _SCP Extensions)
[    4.707389] ACPI: Added _OSI(Processor Aggregator Device)
[    4.707390] ACPI: Added _OSI(Linux-Dell-Video)
[    4.707391] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    4.707392] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    4.711463] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    4.712350] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    4.712356] ACPI: BIOS _OSI(Darwin) query ignored
[    4.721662] ACPI: Interpreter enabled
[    4.721672] ACPI: (supports S0 S1 S4 S5)
[    4.721674] ACPI: Using IOAPIC for interrupt routing
[    4.721724] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    4.722325] PCI: MMCONFIG at [mem 0xe0000000-0xe7ffffff] reserved in ACPI motherboard resources
[    4.722335] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    4.722876] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    4.723316] ACPI: Enabled 4 GPEs in block 00 to 0F
[    4.740353] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    4.740359] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.740489] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[    4.740615] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    4.741269] PCI host bridge to bus 0000:00
[    4.741270] pci_bus 0000:00: Unknown NUMA node; performance will be reduced
[    4.741272] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    4.741273] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    4.741274] pci_bus 0000:00: root bus resource [mem 0xfef00000-0xffdfffff window]
[    4.741275] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfedfffff window]
[    4.741276] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfed3ffff window]
[    4.741277] pci_bus 0000:00: root bus resource [mem 0xfa300000-0xfebfffff window]
[    4.741277] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfa2fffff pref window]
[    4.741278] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xefffffff window]
[    4.741279] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.741280] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    4.741281] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    4.741281] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    4.741282] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    4.741283] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    4.741284] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    4.741285] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    4.741286] pci_bus 0000:00: root bus resource [bus 00-7f]
[    4.741382] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    4.741936] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    4.742407] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    4.743028] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    4.744970] pci 0000:00:07.1: reg 0x20: [io  0x2050-0x205f]
[    4.745970] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    4.745970] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    4.745970] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    4.745970] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    4.745970] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    4.745984] pci 0000:00:07.3: quirk: [io  0x0440-0x047f] claimed by PIIX4 ACPI
[    4.746270] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    4.746361] pci 0000:00:07.7: reg 0x10: [io  0x2000-0x203f]
[    4.746434] pci 0000:00:07.7: reg 0x14: [mem 0xffbf0000-0xffbf1fff 64bit]
[    4.746970] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    4.747970] pci 0000:00:0f.0: reg 0x10: [io  0x2040-0x204f]
[    4.748973] pci 0000:00:0f.0: reg 0x14: [mem 0xf0000000-0xf7ffffff pref]
[    4.750970] pci 0000:00:0f.0: reg 0x18: [mem 0xfb800000-0xfbffffff]
[    4.757973] pci 0000:00:0f.0: reg 0x30: [mem 0xffff8000-0xffffffff pref]
[    4.758010] pci 0000:00:0f.0: BAR 1: assigned to efifb
[    4.758434] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    4.758970] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    4.758970] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    4.758970] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    4.758970] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    4.758970] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    4.758970] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    4.762300] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    4.763003] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    4.763338] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    4.764043] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    4.764375] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    4.765081] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    4.765416] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    4.766121] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    4.766457] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    4.767162] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    4.767498] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    4.768210] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    4.768549] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    4.769268] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    4.769603] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    4.770314] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    4.770656] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    4.771365] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    4.771698] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    4.772404] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    4.772745] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    4.773452] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    4.773786] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    4.774500] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    4.774843] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    4.775557] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    4.775892] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    4.776605] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    4.776941] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    4.777651] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    4.777980] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    4.778692] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    4.779019] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    4.779733] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    4.780067] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    4.780780] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    4.781115] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    4.781826] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    4.782164] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    4.782877] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    4.783210] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    4.783920] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    4.784253] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    4.784964] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    4.785316] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    4.786026] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    4.786362] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    4.787066] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    4.787405] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    4.788113] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    4.788447] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    4.789155] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    4.789491] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    4.790203] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    4.790548] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    4.791257] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    4.791601] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    4.792312] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    4.792659] pci_bus 0000:01: extended config space not accessible
[    4.792703] pci 0000:00:01.0: PCI bridge to [bus 01]
[    4.792881] pci_bus 0000:02: extended config space not accessible
[    4.793063] acpiphp: Slot [32] registered
[    4.793072] acpiphp: Slot [33] registered
[    4.793080] acpiphp: Slot [34] registered
[    4.793088] acpiphp: Slot [35] registered
[    4.793096] acpiphp: Slot [36] registered
[    4.793104] acpiphp: Slot [37] registered
[    4.793111] acpiphp: Slot [38] registered
[    4.793120] acpiphp: Slot [39] registered
[    4.793128] acpiphp: Slot [40] registered
[    4.793136] acpiphp: Slot [41] registered
[    4.793143] acpiphp: Slot [42] registered
[    4.793151] acpiphp: Slot [43] registered
[    4.793159] acpiphp: Slot [44] registered
[    4.793167] acpiphp: Slot [45] registered
[    4.793175] acpiphp: Slot [46] registered
[    4.793183] acpiphp: Slot [47] registered
[    4.793191] acpiphp: Slot [48] registered
[    4.793199] acpiphp: Slot [49] registered
[    4.793207] acpiphp: Slot [50] registered
[    4.793217] acpiphp: Slot [51] registered
[    4.793225] acpiphp: Slot [52] registered
[    4.793232] acpiphp: Slot [53] registered
[    4.793241] acpiphp: Slot [54] registered
[    4.793248] acpiphp: Slot [55] registered
[    4.793256] acpiphp: Slot [56] registered
[    4.793264] acpiphp: Slot [57] registered
[    4.793273] acpiphp: Slot [58] registered
[    4.793280] acpiphp: Slot [59] registered
[    4.793288] acpiphp: Slot [60] registered
[    4.793296] acpiphp: Slot [61] registered
[    4.793304] acpiphp: Slot [62] registered
[    4.793311] acpiphp: Slot [63] registered
[    4.793346] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    4.793364] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    4.793381] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    4.793414] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.793415] pci 0000:00:11.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    4.793416] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    4.793417] pci 0000:00:11.0:   bridge window [mem 0xfef00000-0xffdfffff window] (subtractive decode)
[    4.793418] pci 0000:00:11.0:   bridge window [mem 0xfed45000-0xfedfffff window] (subtractive decode)
[    4.793419] pci 0000:00:11.0:   bridge window [mem 0xfec10000-0xfed3ffff window] (subtractive decode)
[    4.793420] pci 0000:00:11.0:   bridge window [mem 0xfa300000-0xfebfffff window] (subtractive decode)
[    4.793421] pci 0000:00:11.0:   bridge window [mem 0xf0000000-0xfa2fffff pref window] (subtractive decode)
[    4.793422] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xefffffff window] (subtractive decode)
[    4.793422] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    4.793423] pci 0000:00:11.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    4.793424] pci 0000:00:11.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    4.793425] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    4.793426] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    4.793427] pci 0000:00:11.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    4.793428] pci 0000:00:11.0:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    4.793428] pci 0000:00:11.0:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    4.793775] pci 0000:03:00.0: [15ad:07c0] type 00 class 0x010700
[    4.795970] pci 0000:03:00.0: reg 0x10: [io  0x4000-0x4007]
[    4.797973] pci 0000:03:00.0: reg 0x14: [mem 0xfea10000-0xfea17fff 64bit]
[    4.802970] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    4.802970] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    4.802970] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    4.802970] pci 0000:00:15.0: PCI bridge to [bus 03]
[    4.802970] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    4.802970] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.802970] pci 0000:00:15.1: PCI bridge to [bus 04]
[    4.802970] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.802970] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.802970] pci 0000:00:15.2: PCI bridge to [bus 05]
[    4.802970] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    4.802970] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.802970] pci 0000:00:15.3: PCI bridge to [bus 06]
[    4.802970] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    4.802970] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.802970] pci 0000:00:15.4: PCI bridge to [bus 07]
[    4.802970] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    4.802970] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.802970] pci 0000:00:15.5: PCI bridge to [bus 08]
[    4.802970] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    4.802970] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.802970] pci 0000:00:15.6: PCI bridge to [bus 09]
[    4.802970] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    4.802970] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.802970] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    4.802970] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    4.802970] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.802970] pci 0000:0b:00.0: [15ad:07b0] type 00 class 0x020000
[    4.802970] pci 0000:0b:00.0: reg 0x10: [mem 0xfe213000-0xfe213fff]
[    4.802970] pci 0000:0b:00.0: reg 0x14: [mem 0xfe212000-0xfe212fff]
[    4.802970] pci 0000:0b:00.0: reg 0x18: [mem 0xfe210000-0xfe211fff]
[    4.802970] pci 0000:0b:00.0: reg 0x1c: [io  0x3000-0x300f]
[    4.802970] pci 0000:0b:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    4.802970] pci 0000:0b:00.0: supports D1 D2
[    4.802970] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    4.802970] pci 0000:0b:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    4.802970] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    4.802970] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    4.802970] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    4.802970] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    4.802970] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    4.802970] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.802970] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    4.802970] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    4.805973] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.806203] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    4.806236] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    4.806268] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.806494] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    4.806527] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    4.806559] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.806788] pci 0000:00:16.5: PCI bridge to [bus 10]
[    4.806820] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    4.806852] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.806970] pci 0000:00:16.6: PCI bridge to [bus 11]
[    4.806970] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    4.806970] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.806970] pci 0000:00:16.7: PCI bridge to [bus 12]
[    4.806970] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    4.806970] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.806970] pci 0000:00:17.0: PCI bridge to [bus 13]
[    4.806970] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    4.806970] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.806970] pci 0000:00:17.1: PCI bridge to [bus 14]
[    4.807980] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    4.808012] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.808238] pci 0000:00:17.2: PCI bridge to [bus 15]
[    4.808271] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    4.808303] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.808528] pci 0000:00:17.3: PCI bridge to [bus 16]
[    4.808560] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    4.808593] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.808820] pci 0000:00:17.4: PCI bridge to [bus 17]
[    4.808853] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    4.808891] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.809117] pci 0000:00:17.5: PCI bridge to [bus 18]
[    4.809149] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    4.809181] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.809409] pci 0000:00:17.6: PCI bridge to [bus 19]
[    4.809441] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    4.809474] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.809703] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    4.809736] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    4.809768] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.809995] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    4.810028] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    4.810060] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.810287] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    4.810320] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    4.810352] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.810578] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    4.810610] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    4.810643] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.810872] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    4.810905] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    4.810937] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.811158] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    4.811191] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    4.811223] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.811452] pci 0000:00:18.5: PCI bridge to [bus 20]
[    4.811485] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    4.811518] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.811747] pci 0000:00:18.6: PCI bridge to [bus 21]
[    4.811779] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    4.811812] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.812038] pci 0000:00:18.7: PCI bridge to [bus 22]
[    4.812071] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    4.812103] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.813623] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.813690] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.813753] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.813814] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.828076] iommu: Default domain type: Passthrough 
[    4.829002] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[    4.829002] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.829002] pci 0000:00:0f.0: vgaarb: bridge control possible
[    4.829002] vgaarb: loaded
[    4.829287] SCSI subsystem initialized
[    4.829307] ACPI: bus type USB registered
[    4.829334] usbcore: registered new interface driver usbfs
[    4.829341] usbcore: registered new interface driver hub
[    4.830005] usbcore: registered new device driver usb
[    4.830005] pps_core: LinuxPPS API ver. 1 registered
[    4.830005] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    4.830005] PTP clock support registered
[    4.831000] EDAC MC: Ver: 3.0.0
[    4.832006] Registered efivars operations
[    4.832978] NetLabel: Initializing
[    4.832978] NetLabel:  domain hash size = 128
[    4.832978] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.832978] NetLabel:  unlabeled traffic allowed by default
[    4.832978] PCI: Using ACPI for IRQ routing
[    4.834997] PCI: pci_cache_line_size set to 64 bytes
[    4.835974] e820: reserve RAM buffer [mem 0x0e0a1018-0x0fffffff]
[    4.835974] e820: reserve RAM buffer [mem 0x0e0a3018-0x0fffffff]
[    4.835974] e820: reserve RAM buffer [mem 0x0e0a6018-0x0fffffff]
[    4.835974] e820: reserve RAM buffer [mem 0x0ef24000-0x0fffffff]
[    4.835974] e820: reserve RAM buffer [mem 0x0ef3c000-0x0fffffff]
[    4.835974] e820: reserve RAM buffer [mem 0x0ef61000-0x0fffffff]
[    4.835974] e820: reserve RAM buffer [mem 0x0fee7000-0x0fffffff]
[    4.835990] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    4.835990] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    4.839251] clocksource: Switched to clocksource tsc-early
[    4.856233] VFS: Disk quotas dquot_6.6.0
[    4.856347] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.856582] pnp: PnP ACPI init
[    4.856720] system 00:00: [io  0x0440-0x047f] has been reserved
[    4.856721] system 00:00: [io  0x5658-0x5659] has been reserved
[    4.856723] system 00:00: [io  0x5670] has been reserved
[    4.856724] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    4.856729] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.856751] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.856764] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    4.856778] pnp 00:03: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
[    4.856914] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    4.856916] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    4.857984] system 00:05: [io  0x0400-0x041f] has been reserved
[    4.857985] system 00:05: [mem 0xe0000000-0xe7ffffff] has been reserved
[    4.857987] system 00:05: [mem 0xffc00000-0xffdfffff] could not be reserved
[    4.857989] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.858649] pnp: PnP ACPI: found 6 devices
[    4.865858] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.866047] NET: Registered protocol family 2
[    4.866760] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.867105] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    4.867901] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.868087] TCP: Hash tables configured (established 524288 bind 65536)
[    4.868264] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    4.869331] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    4.869934] NET: Registered protocol family 1
[    4.869940] NET: Registered protocol family 44
[    4.869953] pci 0000:00:0f.0: can't claim BAR 6 [mem 0xffff8000-0xffffffff pref]: no compatible bridge window
[    4.869955] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    4.869956] pci 0000:0b:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    4.869962] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    4.869964] pci 0000:00:15.1: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    4.869965] pci 0000:00:15.2: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    4.869966] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    4.869969] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    4.869970] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    4.869976] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    4.869977] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    4.869979] pci 0000:00:16.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    4.869980] pci 0000:00:16.1: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    4.869981] pci 0000:00:16.2: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    4.869982] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    4.869983] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    4.869984] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    4.869985] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    4.869986] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    4.869986] pci 0000:00:17.0: bridge window [io  0x1000-0x0fff] to [bus 13] add_size 1000
[    4.869987] pci 0000:00:17.1: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    4.869988] pci 0000:00:17.2: bridge window [io  0x1000-0x0fff] to [bus 15] add_size 1000
[    4.869989] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    4.869990] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    4.869990] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    4.869992] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    4.869993] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    4.869994] pci 0000:00:18.0: bridge window [io  0x1000-0x0fff] to [bus 1b] add_size 1000
[    4.869995] pci 0000:00:18.1: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
[    4.869995] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    4.869996] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    4.869997] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    4.869998] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    4.869999] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    4.869999] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    4.870018] pci 0000:00:15.0: BAR 15: assigned [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.870022] pci 0000:00:16.0: BAR 15: assigned [mem 0xff100000-0xff2fffff 64bit pref]
[    4.870023] pci 0000:00:0f.0: BAR 6: assigned [mem 0xff300000-0xff307fff pref]
[    4.870024] pci 0000:00:15.1: BAR 13: assigned [io  0x6000-0x6fff]
[    4.870025] pci 0000:00:15.2: BAR 13: assigned [io  0x7000-0x7fff]
[    4.870026] pci 0000:00:15.3: BAR 13: assigned [io  0x8000-0x8fff]
[    4.870027] pci 0000:00:15.4: BAR 13: assigned [io  0x9000-0x9fff]
[    4.870028] pci 0000:00:15.5: BAR 13: assigned [io  0xa000-0xafff]
[    4.870029] pci 0000:00:15.6: BAR 13: assigned [io  0xb000-0xbfff]
[    4.870030] pci 0000:00:15.7: BAR 13: assigned [io  0xc000-0xcfff]
[    4.870031] pci 0000:00:16.1: BAR 13: assigned [io  0xd000-0xdfff]
[    4.870032] pci 0000:00:16.2: BAR 13: assigned [io  0xe000-0xefff]
[    4.870032] pci 0000:00:16.3: BAR 13: assigned [io  0xf000-0xffff]
[    4.870034] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    4.870035] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    4.870036] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    4.870037] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    4.870038] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    4.870039] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    4.870040] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    4.870041] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    4.870042] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    4.870042] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    4.870044] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    4.870044] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    4.870046] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    4.870046] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    4.870047] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    4.870048] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    4.870049] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    4.870050] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    4.870051] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    4.870052] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    4.870053] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    4.870053] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    4.870055] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    4.870055] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    4.870056] pci 0000:00:18.0: BAR 13: no space for [io  size 0x1000]
[    4.870057] pci 0000:00:18.0: BAR 13: failed to assign [io  size 0x1000]
[    4.870058] pci 0000:00:18.1: BAR 13: no space for [io  size 0x1000]
[    4.870059] pci 0000:00:18.1: BAR 13: failed to assign [io  size 0x1000]
[    4.870060] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    4.870061] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    4.870062] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    4.870062] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    4.870064] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    4.870064] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    4.870065] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    4.870066] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    4.870067] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    4.870068] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    4.870069] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    4.870070] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    4.870073] pci 0000:00:18.7: BAR 13: assigned [io  0x6000-0x6fff]
[    4.870074] pci 0000:00:18.6: BAR 13: assigned [io  0x7000-0x7fff]
[    4.870074] pci 0000:00:18.5: BAR 13: assigned [io  0x8000-0x8fff]
[    4.870075] pci 0000:00:18.4: BAR 13: assigned [io  0x9000-0x9fff]
[    4.870076] pci 0000:00:18.3: BAR 13: assigned [io  0xa000-0xafff]
[    4.870077] pci 0000:00:18.2: BAR 13: assigned [io  0xb000-0xbfff]
[    4.870078] pci 0000:00:18.1: BAR 13: assigned [io  0xc000-0xcfff]
[    4.870079] pci 0000:00:18.0: BAR 13: assigned [io  0xd000-0xdfff]
[    4.870079] pci 0000:00:17.7: BAR 13: assigned [io  0xe000-0xefff]
[    4.870080] pci 0000:00:17.6: BAR 13: assigned [io  0xf000-0xffff]
[    4.870082] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    4.870082] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    4.870083] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    4.870084] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    4.870085] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    4.870086] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    4.870087] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    4.870088] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    4.870089] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    4.870089] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    4.870091] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    4.870091] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    4.870093] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    4.870093] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    4.870094] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    4.870095] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    4.870096] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    4.870097] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    4.870098] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    4.870099] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    4.870100] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    4.870101] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    4.870102] pci 0000:00:16.2: BAR 13: no space for [io  size 0x1000]
[    4.870102] pci 0000:00:16.2: BAR 13: failed to assign [io  size 0x1000]
[    4.870104] pci 0000:00:16.1: BAR 13: no space for [io  size 0x1000]
[    4.870104] pci 0000:00:16.1: BAR 13: failed to assign [io  size 0x1000]
[    4.870105] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    4.870106] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    4.870107] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    4.870108] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    4.870109] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    4.870110] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    4.870111] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    4.870111] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    4.870113] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    4.870113] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
[    4.870114] pci 0000:00:15.2: BAR 13: no space for [io  size 0x1000]
[    4.870115] pci 0000:00:15.2: BAR 13: failed to assign [io  size 0x1000]
[    4.870116] pci 0000:00:15.1: BAR 13: no space for [io  size 0x1000]
[    4.870117] pci 0000:00:15.1: BAR 13: failed to assign [io  size 0x1000]
[    4.870118] pci 0000:00:01.0: PCI bridge to [bus 01]
[    4.870182] pci 0000:00:11.0: PCI bridge to [bus 02]
[    4.870189] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    4.870208] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    4.870221] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.870245] pci 0000:03:00.0: BAR 6: assigned [mem 0xfea00000-0xfea0ffff pref]
[    4.870246] pci 0000:00:15.0: PCI bridge to [bus 03]
[    4.870253] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    4.870271] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.870283] pci 0000:00:15.0:   bridge window [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.870307] pci 0000:00:15.1: PCI bridge to [bus 04]
[    4.870325] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.870338] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.870362] pci 0000:00:15.2: PCI bridge to [bus 05]
[    4.870380] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    4.870392] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.870416] pci 0000:00:15.3: PCI bridge to [bus 06]
[    4.870435] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    4.870448] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.870472] pci 0000:00:15.4: PCI bridge to [bus 07]
[    4.870490] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    4.870502] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.870526] pci 0000:00:15.5: PCI bridge to [bus 08]
[    4.870544] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    4.870556] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.870580] pci 0000:00:15.6: PCI bridge to [bus 09]
[    4.870598] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    4.870611] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.870634] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    4.870652] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    4.870665] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.870689] pci 0000:0b:00.0: BAR 6: assigned [mem 0xfe200000-0xfe20ffff pref]
[    4.870690] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    4.870696] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    4.870714] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    4.870727] pci 0000:00:16.0:   bridge window [mem 0xff100000-0xff2fffff 64bit pref]
[    4.870750] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    4.870768] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    4.870781] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.870804] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    4.870823] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    4.870835] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.870859] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    4.870877] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    4.870889] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.870913] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    4.870931] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    4.870943] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.870967] pci 0000:00:16.5: PCI bridge to [bus 10]
[    4.870990] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    4.871002] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.871026] pci 0000:00:16.6: PCI bridge to [bus 11]
[    4.871044] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    4.871056] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.871080] pci 0000:00:16.7: PCI bridge to [bus 12]
[    4.871098] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    4.871110] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.871134] pci 0000:00:17.0: PCI bridge to [bus 13]
[    4.871152] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    4.871165] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.871188] pci 0000:00:17.1: PCI bridge to [bus 14]
[    4.871206] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    4.871219] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.871242] pci 0000:00:17.2: PCI bridge to [bus 15]
[    4.871261] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    4.871274] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.871298] pci 0000:00:17.3: PCI bridge to [bus 16]
[    4.871316] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    4.871328] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.871352] pci 0000:00:17.4: PCI bridge to [bus 17]
[    4.871370] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    4.871382] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.871406] pci 0000:00:17.5: PCI bridge to [bus 18]
[    4.871425] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    4.871437] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.871478] pci 0000:00:17.6: PCI bridge to [bus 19]
[    4.871485] pci 0000:00:17.6:   bridge window [io  0xf000-0xffff]
[    4.871504] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    4.871517] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.871542] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    4.871549] pci 0000:00:17.7:   bridge window [io  0xe000-0xefff]
[    4.871568] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    4.871581] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.871606] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    4.871613] pci 0000:00:18.0:   bridge window [io  0xd000-0xdfff]
[    4.871632] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    4.871645] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.871670] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    4.871677] pci 0000:00:18.1:   bridge window [io  0xc000-0xcfff]
[    4.871696] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    4.871709] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.871734] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    4.871740] pci 0000:00:18.2:   bridge window [io  0xb000-0xbfff]
[    4.871760] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    4.871773] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.871798] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    4.871805] pci 0000:00:18.3:   bridge window [io  0xa000-0xafff]
[    4.871824] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    4.871837] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.871862] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    4.871868] pci 0000:00:18.4:   bridge window [io  0x9000-0x9fff]
[    4.871888] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    4.871901] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.871926] pci 0000:00:18.5: PCI bridge to [bus 20]
[    4.871933] pci 0000:00:18.5:   bridge window [io  0x8000-0x8fff]
[    4.871952] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    4.871965] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.871993] pci 0000:00:18.6: PCI bridge to [bus 21]
[    4.872000] pci 0000:00:18.6:   bridge window [io  0x7000-0x7fff]
[    4.872019] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    4.872032] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.872057] pci 0000:00:18.7: PCI bridge to [bus 22]
[    4.872064] pci 0000:00:18.7:   bridge window [io  0x6000-0x6fff]
[    4.872083] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    4.872097] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.872122] pci_bus 0000:00: resource 4 [io  0x0d00-0xffff window]
[    4.872123] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    4.872124] pci_bus 0000:00: resource 6 [mem 0xfef00000-0xffdfffff window]
[    4.872124] pci_bus 0000:00: resource 7 [mem 0xfed45000-0xfedfffff window]
[    4.872125] pci_bus 0000:00: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    4.872126] pci_bus 0000:00: resource 9 [mem 0xfa300000-0xfebfffff window]
[    4.872126] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    4.872127] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xefffffff window]
[    4.872128] pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
[    4.872128] pci_bus 0000:00: resource 13 [mem 0x000c4000-0x000c7fff window]
[    4.872129] pci_bus 0000:00: resource 14 [mem 0x000c8000-0x000cbfff window]
[    4.872129] pci_bus 0000:00: resource 15 [mem 0x000d4000-0x000d7fff window]
[    4.872130] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000dbfff window]
[    4.872131] pci_bus 0000:00: resource 17 [mem 0x000e4000-0x000e7fff window]
[    4.872131] pci_bus 0000:00: resource 18 [mem 0x000e8000-0x000ebfff window]
[    4.872132] pci_bus 0000:00: resource 19 [mem 0x000ec000-0x000effff window]
[    4.872133] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    4.872134] pci_bus 0000:02: resource 1 [mem 0xfc000000-0xfc9fffff]
[    4.872134] pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.872135] pci_bus 0000:02: resource 4 [io  0x0d00-0xffff window]
[    4.872135] pci_bus 0000:02: resource 5 [io  0x0000-0x0cf7 window]
[    4.872136] pci_bus 0000:02: resource 6 [mem 0xfef00000-0xffdfffff window]
[    4.872137] pci_bus 0000:02: resource 7 [mem 0xfed45000-0xfedfffff window]
[    4.872137] pci_bus 0000:02: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    4.872138] pci_bus 0000:02: resource 9 [mem 0xfa300000-0xfebfffff window]
[    4.872139] pci_bus 0000:02: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    4.872139] pci_bus 0000:02: resource 11 [mem 0xc0000000-0xefffffff window]
[    4.872140] pci_bus 0000:02: resource 12 [mem 0x000a0000-0x000bffff window]
[    4.872140] pci_bus 0000:02: resource 13 [mem 0x000c4000-0x000c7fff window]
[    4.872141] pci_bus 0000:02: resource 14 [mem 0x000c8000-0x000cbfff window]
[    4.872142] pci_bus 0000:02: resource 15 [mem 0x000d4000-0x000d7fff window]
[    4.872142] pci_bus 0000:02: resource 16 [mem 0x000d8000-0x000dbfff window]
[    4.872143] pci_bus 0000:02: resource 17 [mem 0x000e4000-0x000e7fff window]
[    4.872144] pci_bus 0000:02: resource 18 [mem 0x000e8000-0x000ebfff window]
[    4.872144] pci_bus 0000:02: resource 19 [mem 0x000ec000-0x000effff window]
[    4.872145] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    4.872145] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    4.872146] pci_bus 0000:03: resource 2 [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.872147] pci_bus 0000:04: resource 1 [mem 0xfe900000-0xfe9fffff]
[    4.872147] pci_bus 0000:04: resource 2 [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.872148] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]
[    4.872149] pci_bus 0000:05: resource 2 [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.872149] pci_bus 0000:06: resource 1 [mem 0xfe700000-0xfe7fffff]
[    4.872150] pci_bus 0000:06: resource 2 [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.872151] pci_bus 0000:07: resource 1 [mem 0xfe600000-0xfe6fffff]
[    4.872151] pci_bus 0000:07: resource 2 [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.872152] pci_bus 0000:08: resource 1 [mem 0xfe500000-0xfe5fffff]
[    4.872152] pci_bus 0000:08: resource 2 [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.872153] pci_bus 0000:09: resource 1 [mem 0xfe400000-0xfe4fffff]
[    4.872154] pci_bus 0000:09: resource 2 [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.872154] pci_bus 0000:0a: resource 1 [mem 0xfe300000-0xfe3fffff]
[    4.872155] pci_bus 0000:0a: resource 2 [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.872156] pci_bus 0000:0b: resource 0 [io  0x3000-0x3fff]
[    4.872156] pci_bus 0000:0b: resource 1 [mem 0xfe200000-0xfe2fffff]
[    4.872157] pci_bus 0000:0b: resource 2 [mem 0xff100000-0xff2fffff 64bit pref]
[    4.872157] pci_bus 0000:0c: resource 1 [mem 0xfe100000-0xfe1fffff]
[    4.872158] pci_bus 0000:0c: resource 2 [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.872159] pci_bus 0000:0d: resource 1 [mem 0xfe000000-0xfe0fffff]
[    4.872159] pci_bus 0000:0d: resource 2 [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.872160] pci_bus 0000:0e: resource 1 [mem 0xfdf00000-0xfdffffff]
[    4.872160] pci_bus 0000:0e: resource 2 [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.872161] pci_bus 0000:0f: resource 1 [mem 0xfde00000-0xfdefffff]
[    4.872162] pci_bus 0000:0f: resource 2 [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.872162] pci_bus 0000:10: resource 1 [mem 0xfdd00000-0xfddfffff]
[    4.872163] pci_bus 0000:10: resource 2 [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.872164] pci_bus 0000:11: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    4.872164] pci_bus 0000:11: resource 2 [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.872165] pci_bus 0000:12: resource 1 [mem 0xfdb00000-0xfdbfffff]
[    4.872165] pci_bus 0000:12: resource 2 [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.872166] pci_bus 0000:13: resource 1 [mem 0xfda00000-0xfdafffff]
[    4.872167] pci_bus 0000:13: resource 2 [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.872167] pci_bus 0000:14: resource 1 [mem 0xfd900000-0xfd9fffff]
[    4.872168] pci_bus 0000:14: resource 2 [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.872168] pci_bus 0000:15: resource 1 [mem 0xfd800000-0xfd8fffff]
[    4.872169] pci_bus 0000:15: resource 2 [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.872170] pci_bus 0000:16: resource 1 [mem 0xfd700000-0xfd7fffff]
[    4.872170] pci_bus 0000:16: resource 2 [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.872171] pci_bus 0000:17: resource 1 [mem 0xfd600000-0xfd6fffff]
[    4.872171] pci_bus 0000:17: resource 2 [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.872172] pci_bus 0000:18: resource 1 [mem 0xfd500000-0xfd5fffff]
[    4.872173] pci_bus 0000:18: resource 2 [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.872173] pci_bus 0000:19: resource 0 [io  0xf000-0xffff]
[    4.872174] pci_bus 0000:19: resource 1 [mem 0xfd400000-0xfd4fffff]
[    4.872175] pci_bus 0000:19: resource 2 [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.872175] pci_bus 0000:1a: resource 0 [io  0xe000-0xefff]
[    4.872176] pci_bus 0000:1a: resource 1 [mem 0xfd300000-0xfd3fffff]
[    4.872176] pci_bus 0000:1a: resource 2 [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.872177] pci_bus 0000:1b: resource 0 [io  0xd000-0xdfff]
[    4.872178] pci_bus 0000:1b: resource 1 [mem 0xfd200000-0xfd2fffff]
[    4.872178] pci_bus 0000:1b: resource 2 [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.872179] pci_bus 0000:1c: resource 0 [io  0xc000-0xcfff]
[    4.872179] pci_bus 0000:1c: resource 1 [mem 0xfd100000-0xfd1fffff]
[    4.872180] pci_bus 0000:1c: resource 2 [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.872181] pci_bus 0000:1d: resource 0 [io  0xb000-0xbfff]
[    4.872181] pci_bus 0000:1d: resource 1 [mem 0xfd000000-0xfd0fffff]
[    4.872182] pci_bus 0000:1d: resource 2 [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.872182] pci_bus 0000:1e: resource 0 [io  0xa000-0xafff]
[    4.872183] pci_bus 0000:1e: resource 1 [mem 0xfcf00000-0xfcffffff]
[    4.872184] pci_bus 0000:1e: resource 2 [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.872185] pci_bus 0000:1f: resource 0 [io  0x9000-0x9fff]
[    4.872185] pci_bus 0000:1f: resource 1 [mem 0xfce00000-0xfcefffff]
[    4.872186] pci_bus 0000:1f: resource 2 [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.872186] pci_bus 0000:20: resource 0 [io  0x8000-0x8fff]
[    4.872187] pci_bus 0000:20: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    4.872188] pci_bus 0000:20: resource 2 [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.872188] pci_bus 0000:21: resource 0 [io  0x7000-0x7fff]
[    4.872189] pci_bus 0000:21: resource 1 [mem 0xfcc00000-0xfccfffff]
[    4.872189] pci_bus 0000:21: resource 2 [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.872190] pci_bus 0000:22: resource 0 [io  0x6000-0x6fff]
[    4.872191] pci_bus 0000:22: resource 1 [mem 0xfcb00000-0xfcbfffff]
[    4.872191] pci_bus 0000:22: resource 2 [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.872249] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    4.872315] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.872562] PCI: CLS 32 bytes, default 64
[    4.872598] Trying to unpack rootfs image as initramfs...
[    5.838672] Freeing initrd memory: 72676K
[    5.838700] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    5.838703] software IO TLB: mapped [mem 0x00000000bc000000-0x00000000c0000000] (64MB)
[    5.886933] Initialise system trusted keyrings
[    5.886948] Key type blacklist registered
[    5.887261] workingset: timestamp_bits=36 max_order=28 bucket_order=0
[    5.890633] zbud: loaded
[    5.894306] integrity: Platform Keyring initialized
[    5.905723] NET: Registered protocol family 38
[    5.905727] Key type asymmetric registered
[    5.905728] Asymmetric key parser 'x509' registered
[    5.905736] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    5.906304] io scheduler mq-deadline registered
[    5.906305] io scheduler kyber registered
[    5.906359] io scheduler bfq registered
[    5.909978] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    5.910491] pcieport 0000:00:15.0: PME: Signaling with IRQ 24
[    5.910566] pcieport 0000:00:15.0: pciehp: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.911297] pcieport 0000:00:15.1: PME: Signaling with IRQ 25
[    5.911348] pcieport 0000:00:15.1: pciehp: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.912016] pcieport 0000:00:15.2: PME: Signaling with IRQ 26
[    5.912071] pcieport 0000:00:15.2: pciehp: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.912722] pcieport 0000:00:15.3: PME: Signaling with IRQ 27
[    5.912772] pcieport 0000:00:15.3: pciehp: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.913396] pcieport 0000:00:15.4: PME: Signaling with IRQ 28
[    5.913448] pcieport 0000:00:15.4: pciehp: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.914064] pcieport 0000:00:15.5: PME: Signaling with IRQ 29
[    5.914115] pcieport 0000:00:15.5: pciehp: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.914724] pcieport 0000:00:15.6: PME: Signaling with IRQ 30
[    5.914774] pcieport 0000:00:15.6: pciehp: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.915397] pcieport 0000:00:15.7: PME: Signaling with IRQ 31
[    5.915449] pcieport 0000:00:15.7: pciehp: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.916909] pcieport 0000:00:16.0: PME: Signaling with IRQ 32
[    5.916960] pcieport 0000:00:16.0: pciehp: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.917584] pcieport 0000:00:16.1: PME: Signaling with IRQ 33
[    5.917635] pcieport 0000:00:16.1: pciehp: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.918270] pcieport 0000:00:16.2: PME: Signaling with IRQ 34
[    5.918320] pcieport 0000:00:16.2: pciehp: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.919339] pcieport 0000:00:16.3: PME: Signaling with IRQ 35
[    5.919390] pcieport 0000:00:16.3: pciehp: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.920062] pcieport 0000:00:16.4: PME: Signaling with IRQ 36
[    5.920113] pcieport 0000:00:16.4: pciehp: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.920758] pcieport 0000:00:16.5: PME: Signaling with IRQ 37
[    5.920811] pcieport 0000:00:16.5: pciehp: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.921468] pcieport 0000:00:16.6: PME: Signaling with IRQ 38
[    5.921520] pcieport 0000:00:16.6: pciehp: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.922212] pcieport 0000:00:16.7: PME: Signaling with IRQ 39
[    5.922265] pcieport 0000:00:16.7: pciehp: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.922935] pcieport 0000:00:17.0: PME: Signaling with IRQ 40
[    5.922992] pcieport 0000:00:17.0: pciehp: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.923611] pcieport 0000:00:17.1: PME: Signaling with IRQ 41
[    5.923662] pcieport 0000:00:17.1: pciehp: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.924294] pcieport 0000:00:17.2: PME: Signaling with IRQ 42
[    5.924345] pcieport 0000:00:17.2: pciehp: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.924951] pcieport 0000:00:17.3: PME: Signaling with IRQ 43
[    5.925009] pcieport 0000:00:17.3: pciehp: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.925616] pcieport 0000:00:17.4: PME: Signaling with IRQ 44
[    5.925667] pcieport 0000:00:17.4: pciehp: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.926274] pcieport 0000:00:17.5: PME: Signaling with IRQ 45
[    5.926325] pcieport 0000:00:17.5: pciehp: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.926953] pcieport 0000:00:17.6: PME: Signaling with IRQ 46
[    5.927009] pcieport 0000:00:17.6: pciehp: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.927608] pcieport 0000:00:17.7: PME: Signaling with IRQ 47
[    5.927657] pcieport 0000:00:17.7: pciehp: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.928291] pcieport 0000:00:18.0: PME: Signaling with IRQ 48
[    5.928343] pcieport 0000:00:18.0: pciehp: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.928953] pcieport 0000:00:18.1: PME: Signaling with IRQ 49
[    5.929010] pcieport 0000:00:18.1: pciehp: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.929635] pcieport 0000:00:18.2: PME: Signaling with IRQ 50
[    5.929684] pcieport 0000:00:18.2: pciehp: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.930313] pcieport 0000:00:18.3: PME: Signaling with IRQ 51
[    5.930363] pcieport 0000:00:18.3: pciehp: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.931026] pcieport 0000:00:18.4: PME: Signaling with IRQ 52
[    5.931080] pcieport 0000:00:18.4: pciehp: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.931732] pcieport 0000:00:18.5: PME: Signaling with IRQ 53
[    5.931782] pcieport 0000:00:18.5: pciehp: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.932407] pcieport 0000:00:18.6: PME: Signaling with IRQ 54
[    5.932458] pcieport 0000:00:18.6: pciehp: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.933069] pcieport 0000:00:18.7: PME: Signaling with IRQ 55
[    5.933120] pcieport 0000:00:18.7: pciehp: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.933519] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    5.933548] efifb: probing for efifb
[    5.933836] efifb: framebuffer at 0xf0000000, using 3072k, total 3072k
[    5.933837] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    5.933838] efifb: scrolling: redraw
[    5.933839] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    5.933957] Console: switching to colour frame buffer device 128x48
[    5.936932] fb0: EFI VGA frame buffer device
[    5.936943] intel_idle: Please enable MWAIT in BIOS SETUP
[    5.937242] ACPI: AC Adapter [ACAD] (on-line)
[    5.937320] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    5.937368] ACPI: Power Button [PWRF]
[    5.954523] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    5.955019] Non-volatile memory driver v1.3
[    5.974363] rdac: device handler registered
[    5.974679] hp_sw: device handler registered
[    5.974694] emc: device handler registered
[    5.975607] alua: device handler registered
[    5.975798] libphy: Fixed MDIO Bus: probed
[    5.975874] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.975879] ehci-pci: EHCI PCI platform driver
[    5.975900] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.975904] ohci-pci: OHCI PCI platform driver
[    5.975924] uhci_hcd: USB Universal Host Controller Interface driver
[    5.976019] usbcore: registered new interface driver usbserial_generic
[    5.976027] usbserial: USB Serial support registered for generic
[    5.976116] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    5.980246] serio: i8042 KBD port at 0x60,0x64 irq 1
[    5.980255] serio: i8042 AUX port at 0x60,0x64 irq 12
[    5.980541] mousedev: PS/2 mouse device common for all mice
[    6.001763] rtc_cmos 00:01: registered as rtc0
[    6.002016] rtc_cmos 00:01: setting system clock to 2020-10-19T14:50:57 UTC (1603119057)
[    6.002061] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    6.002072] intel_pstate: CPU model not supported
[    6.002098] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    6.002675] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    6.002941] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    6.004041] EFI Variables Facility v0.08 2004-May-17
[    6.010636] hid: raw HID events driver (C) Jiri Kosina
[    6.010673] usbcore: registered new interface driver usbhid
[    6.010674] usbhid: USB HID core driver
[    6.011146] drop_monitor: Initializing network drop monitor service
[    6.011240] Initializing XFRM netlink socket
[    6.011370] NET: Registered protocol family 10
[    6.012274] Segment Routing with IPv6
[    6.012289] NET: Registered protocol family 17
[    6.012364] mpls_gso: MPLS GSO support
[    6.019980] IPI shorthand broadcast: enabled
[    6.019995] AVX2 version of gcm_enc/dec engaged.
[    6.019996] AES CTR mode by8 optimization enabled
[    6.035594] sched_clock: Marking stable (6025264865, 10320969)->(6232954483, -197368649)
[    6.036407] registered taskstats version 1
[    6.036433] Loading compiled-in X.509 certificates
[    6.064691] Loaded X.509 cert 'Build time autogenerated kernel key: 0cb8a19df3f6b289787301e8eaca88fd2a3053c8'
[    6.065781] zswap: loaded using pool lzo/zbud
[    6.070277] Key type encrypted registered
[    6.070634] integrity: Loading X.509 certificate: UEFI:db
[    6.070684] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    6.070685] integrity: Loading X.509 certificate: UEFI:db
[    6.070853] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    6.070854] integrity: Loading X.509 certificate: UEFI:db
[    6.070870] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    6.070870] integrity: Loading X.509 certificate: UEFI:db
[    6.070885] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    6.071520] integrity: Loading X.509 certificate: UEFI:MokListRT
[    6.071689] integrity: Loaded X.509 cert 'Red Hat Secure Boot (CA key 1): 4016841644ce3a810408050766e8f8a29c65f85c'
[    6.071691] ima: No TPM chip found, activating TPM-bypass!
[    6.071695] ima: Allocated hash algorithm: sha1
[    6.071703] ima: No architecture policies found
[    6.071726] evm: Initialising EVM extended attributes:
[    6.071726] evm: security.selinux
[    6.071727] evm: security.ima
[    6.071728] evm: security.capability
[    6.071729] evm: HMAC attrs: 0x1
[    6.078912] Freeing unused decrypted memory: 2036K
[    6.080156] Freeing unused kernel image (initmem) memory: 2352K
[    6.088092] Write protecting the kernel read-only data: 20480k
[    6.089711] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    6.090876] Freeing unused kernel image (rodata/data gap) memory: 1768K
[    6.091014] Run /init as init process
[    6.091015]   with arguments:
[    6.091016]     /init
[    6.091017]     rhgb
[    6.091018]   with environment:
[    6.091019]     HOME=/
[    6.091019]     TERM=linux
[    6.091020]     BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0
[    6.091021]     crashkernel=auto
[    6.114829] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    6.114855] systemd[1]: Detected virtualization vmware.
[    6.114859] systemd[1]: Detected architecture x86-64.
[    6.114861] systemd[1]: Running in initial RAM disk.
[    6.122779] systemd[1]: Set hostname to <localhost.localdomain>.
[    6.179855] random: systemd: uninitialized urandom read (16 bytes read)
[    6.179865] systemd[1]: Reached target Timers.
[    6.179905] random: systemd: uninitialized urandom read (16 bytes read)
[    6.179954] systemd[1]: Listening on udev Kernel Socket.
[    6.179963] random: systemd: uninitialized urandom read (16 bytes read)
[    6.180046] systemd[1]: Listening on Journal Socket.
[    6.180059] systemd[1]: Reached target Local File Systems.
[    6.181734] systemd[1]: Starting Create Volatile Files and Directories...
[    6.699072] VMware PVSCSI driver - version 1.0.7.0-k
[    6.699795] vmw_pvscsi: using 64bit dma
[    6.699940] vmw_pvscsi: max_id: 65
[    6.699942] vmw_pvscsi: setting ring_pages to 32
[    6.701440] vmw_pvscsi: enabling reqCallThreshold
[    6.704251] vmw_pvscsi: driver-based request coalescing enabled
[    6.704252] vmw_pvscsi: using MSI-X
[    6.704370] scsi host0: VMware PVSCSI storage adapter rev 2, req/cmp/msg rings: 32/32/1 pages, cmd_per_lun=254
[    6.704708] vmw_pvscsi 0000:03:00.0: VMware PVSCSI rev 2 host #0
[    6.705219] scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     2.0  PQ: 0 ANSI: 6
[    6.705582] VMware vmxnet3 virtual NIC driver - version 1.5.0.0-k-NAPI
[    6.705628] vmxnet3 0000:0b:00.0: # of Tx queues : 8, # of Rx queues : 8
[    6.705667] vmxnet3 0000:0b:00.0: enabling device (0000 -> 0003)
[    6.711730] vmxnet3 0000:0b:00.0 eth0: NIC Link is Up 10000 Mbps
[    6.720298] libata version 3.00 loaded.
[    6.724689] ata_piix 0000:00:07.1: version 2.13
[    6.725431] scsi host1: ata_piix
[    6.725710] scsi host2: ata_piix
[    6.725740] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x2050 irq 14
[    6.725741] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x2058 irq 15
[    6.840025] tsc: Refined TSC clocksource calibration: 2095.080 MHz
[    6.840120] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e3308baada, max_idle_ns: 440795237786 ns
[    6.840394] clocksource: Switched to clocksource tsc
[    6.930701] [drm] DMA map mode: Caching DMA mappings.
[    6.930875] [drm] Capabilities:
[    6.930876] [drm]   Rect copy.
[    6.930876] [drm]   Cursor.
[    6.930877] [drm]   Cursor bypass.
[    6.930877] [drm]   Cursor bypass 2.
[    6.930878] [drm]   8bit emulation.
[    6.930879] [drm]   Alpha cursor.
[    6.930879] [drm]   Extended Fifo.
[    6.930880] [drm]   Multimon.
[    6.930880] [drm]   Pitchlock.
[    6.930881] [drm]   Irq mask.
[    6.930881] [drm]   Display Topology.
[    6.930882] [drm]   GMR.
[    6.930882] [drm]   Traces.
[    6.930883] [drm]   GMR2.
[    6.930884] [drm]   Screen Object 2.
[    6.930884] [drm]   Command Buffers.
[    6.930885] [drm]   Command Buffers 2.
[    6.930886] [drm]   Guest Backed Resources.
[    6.930886] [drm]   DX Features.
[    6.930887] [drm]   HP Command Queue.
[    6.930887] [drm] Capabilities2:
[    6.930887] [drm]   Grow oTable.
[    6.930888] [drm]   IntraSurface copy.
[    6.930889] [drm] Max GMR ids is 64
[    6.930890] [drm] Max number of GMR pages is 65536
[    6.930891] [drm] Max dedicated hypervisor surface memory is 0 kiB
[    6.930891] [drm] Maximum display memory size is 8192 kiB
[    6.930892] [drm] VRAM at 0xf0000000 size is 8192 kiB
[    6.930893] [drm] MMIO at 0xfb800000 size is 256 kiB
[    6.930934] vmwgfx 0000:00:0f.0: BAR 1: can't reserve [mem 0xf0000000-0xf7ffffff pref]
[    6.930935] [drm] It appears like vesafb is loaded. Ignore above error if any.
[    6.932247] [TTM] Zone  kernel: Available graphics memory: 528423290 KiB
[    6.932249] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    6.932250] [TTM] Initializing pool allocator
[    6.932255] [TTM] Initializing DMA pool allocator
[    6.934048] [drm] Screen Target Display device initialized
[    6.934082] [drm] width 1024
[    6.934088] [drm] height 768
[    6.934093] [drm] bpp 32
[    6.938058] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
[    6.939031] [drm] Using command buffers with DMA pool.
[    6.939068] [drm] Atomic: yes.
[    6.948888] checking generic (f0000000 300000) vs hw (f0000000 800000)
[    6.948891] fb0: switching to svgadrmfb from EFI VGA
[    6.949012] Console: switching to colour dummy device 80x25
[    6.949110] fbcon: svgadrmfb (fb0) is primary device
[    6.950128] Console: switching to colour frame buffer device 128x48
[    6.955662] [drm] Initialized vmwgfx 2.18.0 20200114 for 0000:00:0f.0 on minor 0
[    7.035409] vmxnet3 0000:0b:00.0 ens192: renamed from eth0
[    7.051079] sd 0:0:0:0: [sda] 41943040 512-byte logical blocks: (21.5 GB/20.0 GiB)
[    7.051110] sd 0:0:0:0: [sda] Write Protect is off
[    7.051112] sd 0:0:0:0: [sda] Mode Sense: 61 00 00 00
[    7.051142] sd 0:0:0:0: [sda] Cache data unavailable
[    7.051143] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    7.065160]  sda: sda1 sda2
[    7.066474] sd 0:0:0:0: [sda] Attached SCSI disk
[    7.194203] random: fast init done
[    7.318611] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    7.436802] random: crng init done
[    7.436804] random: 7 urandom warning(s) missed due to ratelimiting
[    7.626569] systemd-journald[778]: Received SIGTERM from PID 1 (systemd).
[    7.655122] printk: systemd: 22 output lines suppressed due to ratelimiting
[    7.705045] SELinux:  Runtime disable is deprecated, use selinux=0 on the kernel cmdline.
[    7.705071] SELinux:  Disabled at runtime.
[    7.748093] audit: type=1404 audit(1603119059.245:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1
[    7.767805] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    7.767824] systemd[1]: Detected virtualization vmware.
[    7.767827] systemd[1]: Detected architecture x86-64.
[    7.768461] systemd[1]: Set hostname to <localhost.localdomain>.
[    7.813804] systemd[1]: Configuration file /usr/lib/systemd/system/rc-local.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    7.864656] systemd[1]: Stopped Switch Root.
[    7.864898] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[    7.864947] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    7.864989] systemd[1]: Stopped Journal Service.
[    7.865766] systemd[1]: Starting Journal Service...
[    7.880316] EXT4-fs (sda2): re-mounted. Opts: (null)
[    8.066874] systemd-journald[4295]: Received request to flush runtime journal from PID 1
[    8.202388] vmw_vmci 0000:00:07.7: enabling device (0000 -> 0003)
[    8.204721] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x12000, irq 16
[    8.204804] vmw_vmci 0000:00:07.7: Using capabilities 0x1c
[    8.208170] Guest personality initialized and is active
[    8.209299] VMCI host device registered (name=vmci, major=10, minor=61)
[    8.209299] Initialized host personality
[    8.236049] NET: Registered protocol family 40
[    8.255884] piix4_smbus 0000:00:07.3: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
[    8.258642] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    8.314079] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    8.468413] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    8.610226] vmxnet3 0000:0b:00.0 ens192: intr type 3, mode 0, 9 vectors allocated
[    8.611447] vmxnet3 0000:0b:00.0 ens192: NIC Link is Up 10000 Mbps

[-- Attachment #3: patch_dmesg.log --]
[-- Type: application/octet-stream, Size: 200262 bytes --]

[    0.000000] Linux version 5.9.0 (root@w1-hs1-mwenig-dhcp-175.eng.vmware.com) (gcc (GCC) 8.3.1 20190507 (Red Hat 8.3.1-4), GNU ld version 2.30-58.el8) #1 SMP Fri Oct 16 07:59:22 EDT 2020
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    0.000000] Disabled fast string operations
[    0.000000] ------------[ cut here ]------------
[    0.000000] XSAVE consistency problem, dumping leaves
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/fpu/xstate.c:657 fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.9.0 #1
[    0.000000] RIP: 0010:fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Code: 85 7c fd ff ff 44 3b 35 d5 45 22 00 74 2c 80 3d b0 03 bd ff 00 75 15 48 c7 c7 70 1e ce 9e c6 05 a0 03 bd ff 01 e8 9a 35 b8 fe <0f> 0b 83 3d 9e 39 69 ff 00 74 05 e8 6b f0 b7 fe 48 8b 35 90 3e c0
[    0.000000] RSP: 0000:ffffffff9f003e60 EFLAGS: 00010086 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: 0000000000000a88 RCX: 0000000000000000
[    0.000000] RDX: ffffffff9f003c70 RSI: 00000000ffff7fff RDI: ffffffff9fc23e8c
[    0.000000] RBP: 0000000000000010 R08: 0000000000000000 R09: c0000000ffff7fff
[    0.000000] R10: 0000000000000001 R11: ffffffff9f003c68 R12: 0000000000000a88
[    0.000000] R13: 0000000000000008 R14: 0000000000000988 R15: 0000000000000001
[    0.000000] FS:  0000000000000000(0000) GS:ffffffff9f957000(0000) knlGS:0000000000000000
[    0.000000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: ffff88800e0b0000 CR3: 000000a1de7ee000 CR4: 00000000000406a0
[    0.000000] Call Trace:
[    0.000000]  ? 0xffffffff9dc00000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xb8/0xbb
[    0.000000] random: get_random_bytes called from print_oops_end_marker+0x26/0x40 with crng_init=0
[    0.000000] ---[ end trace 92cf8a55da40bcc9 ]---
[    0.000000] CPUID[0d, 00]: eax=000002e7 ebx=00000a88 ecx=00000a88 edx=00000000
[    0.000000] CPUID[0d, 01]: eax=0000000f ebx=00000a88 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 02]: eax=00000100 ebx=00000240 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 03]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 04]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 05]: eax=00000040 ebx=00000440 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 06]: eax=00000200 ebx=00000480 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 07]: eax=00000400 ebx=00000680 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 08]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 09]: eax=00000008 ebx=00000a80 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0d]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0e]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0f]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 10]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 11]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 12]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 13]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 14]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 15]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 16]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 17]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 18]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 19]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2696 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000ef23fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000e0a1017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a1018-0x000000000e0a2857] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a2858-0x000000000e0a3017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a3018-0x000000000e0a5057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a5058-0x000000000e0a6017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a6018-0x000000000e0ae057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0ae058-0x000000000ef23fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] efi: EFI v2.31 by VMware, Inc.
[    0.000000] efi: SMBIOS=0xef42000 ACPI 2.0=0xff66000 MEMATTR=0xe564698 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.000000] vmware: hypercall mode: 0x02
[    0.000000] Hypervisor detected: VMware
[    0.000000] vmware: TSC freq read from hypervisor : 2095.078 MHz
[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[    0.000000] vmware: using clock offset of 7080480574 ns
[    0.000011] tsc: Detected 2095.078 MHz processor
[    0.002026] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.002028] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.002033] last_pfn = 0x10340000 max_arch_pfn = 0x400000000
[    0.002066] MTRR default type: uncachable
[    0.002066] MTRR fixed ranges enabled:
[    0.002067]   00000-9FFFF write-back
[    0.002068]   A0000-FFFFF uncachable
[    0.002068] MTRR variable ranges enabled:
[    0.002069]   0 base 000000000000 mask 1E0000000000 write-back
[    0.002070]   1 base 0000C0000000 mask 1FFFC0000000 uncachable
[    0.002071]   2 disabled
[    0.002071]   3 disabled
[    0.002071]   4 disabled
[    0.002072]   5 disabled
[    0.002072]   6 disabled
[    0.002073]   7 disabled
[    0.002084] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002103] total RAM covered: 2096128M
[    0.002154]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002155]  gran_size: 64K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002156]  gran_size: 64K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002157]  gran_size: 64K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002158]  gran_size: 64K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002159]  gran_size: 64K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002160]  gran_size: 64K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002160]  gran_size: 64K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002161]  gran_size: 64K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002162]  gran_size: 64K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002163]  gran_size: 64K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002164]  gran_size: 64K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002164]  gran_size: 64K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002165]  gran_size: 64K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002166]  gran_size: 64K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002167]  gran_size: 64K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002168]  gran_size: 128K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002168]  gran_size: 128K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002169]  gran_size: 128K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002170]  gran_size: 128K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002171]  gran_size: 128K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002172]  gran_size: 128K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002173]  gran_size: 128K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002173]  gran_size: 128K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002174]  gran_size: 128K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002175]  gran_size: 128K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002176]  gran_size: 128K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002177]  gran_size: 128K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002177]  gran_size: 128K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002178]  gran_size: 128K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002179]  gran_size: 128K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002180]  gran_size: 256K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002181]  gran_size: 256K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002181]  gran_size: 256K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002182]  gran_size: 256K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002183]  gran_size: 256K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002184]  gran_size: 256K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002185]  gran_size: 256K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002185]  gran_size: 256K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002186]  gran_size: 256K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002187]  gran_size: 256K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002188]  gran_size: 256K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002189]  gran_size: 256K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002189]  gran_size: 256K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002190]  gran_size: 256K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002191]  gran_size: 512K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002192]  gran_size: 512K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002193]  gran_size: 512K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002193]  gran_size: 512K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002194]  gran_size: 512K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002195]  gran_size: 512K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002196]  gran_size: 512K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002197]  gran_size: 512K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002197]  gran_size: 512K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002198]  gran_size: 512K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002199]  gran_size: 512K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002200]  gran_size: 512K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002201]  gran_size: 512K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002201]  gran_size: 1M 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002202]  gran_size: 1M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002203]  gran_size: 1M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002204]  gran_size: 1M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002205]  gran_size: 1M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002205]  gran_size: 1M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002206]  gran_size: 1M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002207]  gran_size: 1M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002208]  gran_size: 1M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002209]  gran_size: 1M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002210]  gran_size: 1M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002210]  gran_size: 1M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002211]  gran_size: 2M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002212]  gran_size: 2M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002213]  gran_size: 2M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002213]  gran_size: 2M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002214]  gran_size: 2M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002215]  gran_size: 2M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002216]  gran_size: 2M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002217]  gran_size: 2M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002217]  gran_size: 2M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002218]  gran_size: 2M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002219]  gran_size: 2M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002220]  gran_size: 4M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002221]  gran_size: 4M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002221]  gran_size: 4M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002222]  gran_size: 4M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002223]  gran_size: 4M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002224]  gran_size: 4M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002225]  gran_size: 4M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002225]  gran_size: 4M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002226]  gran_size: 4M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002227]  gran_size: 4M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002228]  gran_size: 8M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002229]  gran_size: 8M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002229]  gran_size: 8M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002230]  gran_size: 8M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002231]  gran_size: 8M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002232]  gran_size: 8M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002232]  gran_size: 8M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002233]  gran_size: 8M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002234]  gran_size: 8M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002235]  gran_size: 16M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002236]  gran_size: 16M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002236]  gran_size: 16M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002237]  gran_size: 16M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002238]  gran_size: 16M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002239]  gran_size: 16M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002240]  gran_size: 16M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002241]  gran_size: 16M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002241]  gran_size: 32M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002242]  gran_size: 32M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002243]  gran_size: 32M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002244]  gran_size: 32M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002245]  gran_size: 32M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002245]  gran_size: 32M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002246]  gran_size: 32M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002247]  gran_size: 64M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002248]  gran_size: 64M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002249]  gran_size: 64M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002250]  gran_size: 64M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002250]  gran_size: 64M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002251]  gran_size: 64M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002252]  gran_size: 128M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002253]  gran_size: 128M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002254]  gran_size: 128M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002255]  gran_size: 128M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002255]  gran_size: 128M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002256]  gran_size: 256M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002257]  gran_size: 256M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002258]  gran_size: 256M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002258]  gran_size: 256M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002259]  gran_size: 512M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002260]  gran_size: 512M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002261]  gran_size: 512M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002262]  gran_size: 1G 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002263]  gran_size: 1G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002263]  gran_size: 2G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1537G
[    0.002264] mtrr_cleanup: can not find optimal value
[    0.002264] please specify mtrr_gran_size/mtrr_chunk_size
[    0.002275] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.002280] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
[    0.007616] kexec: Reserving the low 1M of memory for crashkernel
[    0.007644] Using GB pages for direct mapping
[    0.008458] Secure boot disabled
[    0.008459] RAMDISK: [mem 0x0628f000-0x0a987fff]
[    0.008471] ACPI: Early table checksum verification disabled
[    0.008474] ACPI: RSDP 0x000000000FF66000 000024 (v02 VMWARE)
[    0.008477] ACPI: XSDT 0x000000000FF66064 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.008481] ACPI: SRAT 0x000000000FF660C0 000660 (v03 VMWARE EFISRAT  06040001 VMW  000007CE)
[    0.008485] ACPI: FACP 0x000000000FF7252C 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.008488] ACPI: DSDT 0x000000000FF66720 00BE0C (v01 PTLTD  Custom   00000000 INTL 20130823)
[    0.008490] ACPI: FACS 0x000000000FF76000 000040
[    0.008492] ACPI: FACS 0x000000000FF76000 000040
[    0.008493] ACPI: APIC 0x000000000FF72694 0004DA (v03 VMWARE EFIAPIC  06040001 VMW  000007CE)
[    0.008495] ACPI: MCFG 0x000000000FF72B6E 00003C (v01 VMWARE EFIMCFG  06040001 VMW  000007CE)
[    0.008497] ACPI: HPET 0x000000000FF72BAA 000038 (v01 VMWARE VMW HPET 00000000 VMW  00000000)
[    0.008499] ACPI: WAET 0x000000000FF72BE2 000028 (v01 VMWARE VMW WAET 06040001 VMW  00000001)
[    0.008501] ACPI: WSMT 0x000000000FF72C0A 000028 (v01 VMWARE VMW WSMT 06040001 VMW  00000001)
[    0.008506] ACPI: Local APIC address 0xfee00000
[    0.008538] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.008539] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.008540] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.008541] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.008542] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.008543] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.008544] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.008545] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.008546] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.008547] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.008548] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.008548] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.008549] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.008550] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.008551] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.008552] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[    0.008553] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.008554] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.008555] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.008556] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.008557] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.008558] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.008559] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[    0.008560] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[    0.008561] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[    0.008562] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.008563] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.008564] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.008565] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.008566] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.008566] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[    0.008567] SRAT: PXM 1 -> APIC 0x3e -> Node 1
[    0.008568] SRAT: PXM 1 -> APIC 0x40 -> Node 1
[    0.008569] SRAT: PXM 1 -> APIC 0x42 -> Node 1
[    0.008570] SRAT: PXM 1 -> APIC 0x44 -> Node 1
[    0.008571] SRAT: PXM 1 -> APIC 0x46 -> Node 1
[    0.008572] SRAT: PXM 1 -> APIC 0x48 -> Node 1
[    0.008573] SRAT: PXM 1 -> APIC 0x4a -> Node 1
[    0.008574] SRAT: PXM 1 -> APIC 0x4c -> Node 1
[    0.008575] SRAT: PXM 1 -> APIC 0x4e -> Node 1
[    0.008576] SRAT: PXM 1 -> APIC 0x50 -> Node 1
[    0.008577] SRAT: PXM 1 -> APIC 0x52 -> Node 1
[    0.008578] SRAT: PXM 1 -> APIC 0x54 -> Node 1
[    0.008579] SRAT: PXM 1 -> APIC 0x56 -> Node 1
[    0.008580] SRAT: PXM 1 -> APIC 0x58 -> Node 1
[    0.008581] SRAT: PXM 1 -> APIC 0x5a -> Node 1
[    0.008582] SRAT: PXM 1 -> APIC 0x5c -> Node 1
[    0.008582] SRAT: PXM 1 -> APIC 0x5e -> Node 1
[    0.008583] SRAT: PXM 1 -> APIC 0x60 -> Node 1
[    0.008584] SRAT: PXM 1 -> APIC 0x62 -> Node 1
[    0.008585] SRAT: PXM 1 -> APIC 0x64 -> Node 1
[    0.008586] SRAT: PXM 1 -> APIC 0x66 -> Node 1
[    0.008587] SRAT: PXM 1 -> APIC 0x68 -> Node 1
[    0.008588] SRAT: PXM 1 -> APIC 0x6a -> Node 1
[    0.008589] SRAT: PXM 1 -> APIC 0x6c -> Node 1
[    0.008590] SRAT: PXM 1 -> APIC 0x6e -> Node 1
[    0.008591] SRAT: PXM 2 -> APIC 0x70 -> Node 2
[    0.008592] SRAT: PXM 2 -> APIC 0x72 -> Node 2
[    0.008593] SRAT: PXM 2 -> APIC 0x74 -> Node 2
[    0.008594] SRAT: PXM 2 -> APIC 0x76 -> Node 2
[    0.008595] SRAT: PXM 2 -> APIC 0x78 -> Node 2
[    0.008596] SRAT: PXM 2 -> APIC 0x7a -> Node 2
[    0.008596] SRAT: PXM 2 -> APIC 0x7c -> Node 2
[    0.008597] SRAT: PXM 2 -> APIC 0x7e -> Node 2
[    0.008598] SRAT: PXM 2 -> APIC 0x80 -> Node 2
[    0.008599] SRAT: PXM 2 -> APIC 0x82 -> Node 2
[    0.008600] SRAT: PXM 2 -> APIC 0x84 -> Node 2
[    0.008601] SRAT: PXM 2 -> APIC 0x86 -> Node 2
[    0.008602] SRAT: PXM 2 -> APIC 0x88 -> Node 2
[    0.008603] SRAT: PXM 2 -> APIC 0x8a -> Node 2
[    0.008604] SRAT: PXM 2 -> APIC 0x8c -> Node 2
[    0.008605] SRAT: PXM 2 -> APIC 0x8e -> Node 2
[    0.008606] SRAT: PXM 2 -> APIC 0x90 -> Node 2
[    0.008607] SRAT: PXM 2 -> APIC 0x92 -> Node 2
[    0.008608] SRAT: PXM 2 -> APIC 0x94 -> Node 2
[    0.008609] SRAT: PXM 2 -> APIC 0x96 -> Node 2
[    0.008609] SRAT: PXM 2 -> APIC 0x98 -> Node 2
[    0.008610] SRAT: PXM 2 -> APIC 0x9a -> Node 2
[    0.008611] SRAT: PXM 2 -> APIC 0x9c -> Node 2
[    0.008612] SRAT: PXM 2 -> APIC 0x9e -> Node 2
[    0.008613] SRAT: PXM 2 -> APIC 0xa0 -> Node 2
[    0.008614] SRAT: PXM 2 -> APIC 0xa2 -> Node 2
[    0.008615] SRAT: PXM 2 -> APIC 0xa4 -> Node 2
[    0.008616] SRAT: PXM 2 -> APIC 0xa6 -> Node 2
[    0.008619] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.008621] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[    0.008622] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x55ffffffff]
[    0.008623] ACPI: SRAT: Node 1 PXM 1 [mem 0x5600000000-0xaaffffffff]
[    0.008624] ACPI: SRAT: Node 2 PXM 2 [mem 0xab00000000-0xfcffffffff]
[    0.008626] ACPI: SRAT: Node 2 PXM 2 [mem 0x10000000000-0x1033fffffff]
[    0.008628] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xbfffffff] -> [mem 0x00000000-0xbfffffff]
[    0.008630] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x55ffffffff] -> [mem 0x00000000-0x55ffffffff]
[    0.008632] NUMA: Node 2 [mem 0xab00000000-0xfcffffffff] + [mem 0x10000000000-0x1033fffffff] -> [mem 0xab00000000-0x1033fffffff]
[    0.008641] NODE_DATA(0) allocated [mem 0x55fffd6000-0x55ffffffff]
[    0.009005] NODE_DATA(1) allocated [mem 0xaafffd6000-0xaaffffffff]
[    0.009602] NODE_DATA(2) allocated [mem 0x1033ffd5000-0x1033fffefff]
[    0.009700] crashkernel: memory value expected
[    0.010448] Zone ranges:
[    0.010448]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.010449]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.010450]   Normal   [mem 0x0000000100000000-0x000001033fffffff]
[    0.010451]   Device   empty
[    0.010452] Movable zone start for each node
[    0.010454] Early memory node ranges
[    0.010454]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.010455]   node   0: [mem 0x0000000000100000-0x000000000ef23fff]
[    0.010456]   node   0: [mem 0x000000000ef2d000-0x000000000ef3bfff]
[    0.010456]   node   0: [mem 0x000000000ef48000-0x000000000ef60fff]
[    0.010457]   node   0: [mem 0x000000000ef66000-0x000000000fee6fff]
[    0.010457]   node   0: [mem 0x000000000ff77000-0x00000000bfffffff]
[    0.010458]   node   0: [mem 0x0000000100000000-0x00000055ffffffff]
[    0.010473]   node   1: [mem 0x0000005600000000-0x000000aaffffffff]
[    0.010488]   node   2: [mem 0x000000ab00000000-0x000000fcffffffff]
[    0.010502]   node   2: [mem 0x0000010000000000-0x000001033fffffff]
[    0.011230] Zeroed struct page in unavailable ranges: 267 pages
[    0.011231] Initmem setup node 0 [mem 0x0000000000001000-0x00000055ffffffff]
[    0.011232] On node 0 totalpages: 89915125
[    0.011233]   DMA zone: 64 pages used for memmap
[    0.011234]   DMA zone: 159 pages reserved
[    0.011235]   DMA zone: 3999 pages, LIFO batch:0
[    0.011255]   DMA32 zone: 12222 pages used for memmap
[    0.011256]   DMA32 zone: 782166 pages, LIFO batch:63
[    0.022609]   Normal zone: 1392640 pages used for memmap
[    0.022611]   Normal zone: 89128960 pages, LIFO batch:63
[    0.023126] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.023128] On node 1 totalpages: 89128960
[    0.023129]   Normal zone: 1392640 pages used for memmap
[    0.023130]   Normal zone: 89128960 pages, LIFO batch:63
[    0.023893] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.023895] On node 2 totalpages: 89391104
[    0.023896]   Normal zone: 1445888 pages used for memmap
[    0.023897]   Normal zone: 89391104 pages, LIFO batch:63
[    0.026744] ACPI: PM-Timer IO Port: 0x448
[    0.026747] ACPI: Local APIC address 0xfee00000
[    0.026771] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.026772] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.026773] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.026774] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.026775] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.026776] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.026777] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.026778] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.026779] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.026781] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.026781] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.026782] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.026783] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.026784] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.026784] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.026785] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.026786] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.026786] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.026787] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.026788] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.026788] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.026789] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.026790] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.026791] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.026791] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.026792] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.026793] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.026794] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.026795] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.026795] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.026796] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.026797] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.026797] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.026798] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.026799] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.026799] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.026800] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.026800] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.026801] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.026802] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.026802] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.026803] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.026803] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.026804] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.026805] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.026805] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.026806] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.026806] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.026807] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    0.026808] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    0.026808] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    0.026809] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    0.026810] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    0.026811] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    0.026812] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    0.026812] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    0.026813] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    0.026814] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    0.026815] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    0.026815] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    0.026816] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[    0.026816] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    0.026817] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[    0.026818] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[    0.026818] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[    0.026819] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[    0.026819] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[    0.026820] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[    0.026821] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[    0.026821] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[    0.026822] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[    0.026823] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[    0.026823] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[    0.026824] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[    0.026824] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[    0.026825] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[    0.026826] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[    0.026826] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[    0.026827] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[    0.026828] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[    0.026828] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[    0.026829] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[    0.026829] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[    0.026830] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[    0.026866] IOAPIC[0]: apic_id 84, version 32, address 0xfec00000, GSI 0-23
[    0.026869] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    0.026871] ACPI: IRQ0 used by override.
[    0.026872] ACPI: IRQ9 used by override.
[    0.026875] Using ACPI (MADT) for SMP configuration information
[    0.026877] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[    0.026893] TSC deadline timer available
[    0.026895] smpboot: Allowing 84 CPUs, 0 hotplug CPUs
[    0.026929] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.026931] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.026931] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.026933] PM: hibernation: Registered nosave memory: [mem 0x0e0a1000-0x0e0a1fff]
[    0.026933] PM: hibernation: Registered nosave memory: [mem 0x0e0a2000-0x0e0a2fff]
[    0.026934] PM: hibernation: Registered nosave memory: [mem 0x0e0a3000-0x0e0a3fff]
[    0.026935] PM: hibernation: Registered nosave memory: [mem 0x0e0a5000-0x0e0a5fff]
[    0.026936] PM: hibernation: Registered nosave memory: [mem 0x0e0a6000-0x0e0a6fff]
[    0.026938] PM: hibernation: Registered nosave memory: [mem 0x0e0ae000-0x0e0aefff]
[    0.026939] PM: hibernation: Registered nosave memory: [mem 0x0ef24000-0x0ef2cfff]
[    0.026941] PM: hibernation: Registered nosave memory: [mem 0x0ef3c000-0x0ef41fff]
[    0.026941] PM: hibernation: Registered nosave memory: [mem 0x0ef42000-0x0ef47fff]
[    0.026943] PM: hibernation: Registered nosave memory: [mem 0x0ef61000-0x0ef65fff]
[    0.026944] PM: hibernation: Registered nosave memory: [mem 0x0fee7000-0x0ff56fff]
[    0.026944] PM: hibernation: Registered nosave memory: [mem 0x0ff57000-0x0ff72fff]
[    0.026945] PM: hibernation: Registered nosave memory: [mem 0x0ff73000-0x0ff76fff]
[    0.026946] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xffbfffff]
[    0.026946] PM: hibernation: Registered nosave memory: [mem 0xffc00000-0xffc29fff]
[    0.026947] PM: hibernation: Registered nosave memory: [mem 0xffc2a000-0xffffffff]
[    0.026948] PM: hibernation: Registered nosave memory: [mem 0xfd00000000-0xffffffffff]
[    0.026950] [mem 0xc0000000-0xffbfffff] available for PCI devices
[    0.026952] Booting paravirtualized kernel on VMware hypervisor
[    0.026955] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.030250] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:84 nr_cpu_ids:84 nr_node_ids:3
[    0.038769] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
[    0.038776] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
[    0.038778] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.038785] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
[    0.038792] pcpu-alloc: [1] 28 29 30 31 32 33 34 35 [1] 36 37 38 39 40 41 42 43 
[    0.038798] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 [1] 52 53 54 55 -- -- -- -- 
[    0.038803] pcpu-alloc: [2] 56 57 58 59 60 61 62 63 [2] 64 65 66 67 68 69 70 71 
[    0.038809] pcpu-alloc: [2] 72 73 74 75 76 77 78 79 [2] 80 81 82 83 -- -- -- -- 
[    0.038853] Built 3 zonelists, mobility grouping on.  Total pages: 264191576
[    0.038854] Policy zone: Normal
[    0.038856] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    0.039806] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.261983] BUG: Bad page state in process swapper  pfn:ab08001
[    0.261989] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08001
[    0.261991] flags: 0x0()
[    0.261993] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261994] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261994] page dumped because: nonzero mapcount
[    0.261995] Modules linked in:
[    0.261999] CPU: 0 PID: 0 Comm: swapper Tainted: G        W         5.9.0 #1
[    0.262000] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262000] Call Trace:
[    0.262013]  dump_stack+0x57/0x6a
[    0.262017]  bad_page.cold.119+0x63/0x93
[    0.262023]  __free_pages_ok+0x31f/0x330
[    0.262028]  memblock_free_all+0x153/0x1bf
[    0.262033]  mem_init+0x23/0x1f2
[    0.262038]  start_kernel+0x299/0x57a
[    0.262043]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262046] Disabling lock debugging due to kernel taint
[    0.262047] BUG: Bad page state in process swapper  pfn:ab08002
[    0.262048] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08002
[    0.262049] flags: 0x0()
[    0.262050] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262051] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262052] page dumped because: nonzero mapcount
[    0.262052] Modules linked in:
[    0.262053] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262054] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262054] Call Trace:
[    0.262056]  dump_stack+0x57/0x6a
[    0.262057]  bad_page.cold.119+0x63/0x93
[    0.262058]  __free_pages_ok+0x31f/0x330
[    0.262059]  memblock_free_all+0x153/0x1bf
[    0.262060]  mem_init+0x23/0x1f2
[    0.262061]  start_kernel+0x299/0x57a
[    0.262063]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262064] BUG: Bad page state in process swapper  pfn:ab08003
[    0.262065] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08003
[    0.262065] flags: 0x0()
[    0.262066] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262067] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262067] page dumped because: nonzero mapcount
[    0.262067] Modules linked in:
[    0.262068] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262069] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262069] Call Trace:
[    0.262070]  dump_stack+0x57/0x6a
[    0.262071]  bad_page.cold.119+0x63/0x93
[    0.262072]  __free_pages_ok+0x31f/0x330
[    0.262073]  memblock_free_all+0x153/0x1bf
[    0.262075]  mem_init+0x23/0x1f2
[    0.262076]  start_kernel+0x299/0x57a
[    0.262077]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262078] BUG: Bad page state in process swapper  pfn:ab08004
[    0.262079] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08004
[    0.262079] flags: 0x0()
[    0.262080] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262081] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262081] page dumped because: nonzero mapcount
[    0.262081] Modules linked in:
[    0.262082] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262083] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262084] Call Trace:
[    0.262085]  dump_stack+0x57/0x6a
[    0.262086]  bad_page.cold.119+0x63/0x93
[    0.262087]  __free_pages_ok+0x31f/0x330
[    0.262088]  memblock_free_all+0x153/0x1bf
[    0.262090]  mem_init+0x23/0x1f2
[    0.262091]  start_kernel+0x299/0x57a
[    0.262092]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262093] BUG: Bad page state in process swapper  pfn:ab08005
[    0.262094] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08005
[    0.262095] flags: 0x0()
[    0.262095] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262096] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262096] page dumped because: nonzero mapcount
[    0.262097] Modules linked in:
[    0.262098] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262098] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262098] Call Trace:
[    0.262100]  dump_stack+0x57/0x6a
[    0.262100]  bad_page.cold.119+0x63/0x93
[    0.262101]  __free_pages_ok+0x31f/0x330
[    0.262102]  memblock_free_all+0x153/0x1bf
[    0.262104]  mem_init+0x23/0x1f2
[    0.262105]  start_kernel+0x299/0x57a
[    0.262106]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262107] BUG: Bad page state in process swapper  pfn:ab08006
[    0.262108] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08006
[    0.262108] flags: 0x0()
[    0.262109] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262110] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262110] page dumped because: nonzero mapcount
[    0.262111] Modules linked in:
[    0.262112] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262112] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262113] Call Trace:
[    0.262114]  dump_stack+0x57/0x6a
[    0.262115]  bad_page.cold.119+0x63/0x93
[    0.262116]  __free_pages_ok+0x31f/0x330
[    0.262117]  memblock_free_all+0x153/0x1bf
[    0.262118]  mem_init+0x23/0x1f2
[    0.262119]  start_kernel+0x299/0x57a
[    0.262120]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262121] BUG: Bad page state in process swapper  pfn:ab08007
[    0.262122] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08007
[    0.262122] flags: 0x0()
[    0.262123] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262124] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262124] page dumped because: nonzero mapcount
[    0.262125] Modules linked in:
[    0.262126] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262127] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262127] Call Trace:
[    0.262129]  dump_stack+0x57/0x6a
[    0.262129]  bad_page.cold.119+0x63/0x93
[    0.262131]  __free_pages_ok+0x31f/0x330
[    0.262132]  memblock_free_all+0x153/0x1bf
[    0.262133]  mem_init+0x23/0x1f2
[    0.262134]  start_kernel+0x299/0x57a
[    0.262135]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262136] BUG: Bad page state in process swapper  pfn:ab08008
[    0.262137] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08008
[    0.262137] flags: 0x0()
[    0.262138] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262139] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262139] page dumped because: nonzero mapcount
[    0.262139] Modules linked in:
[    0.262140] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262140] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262141] Call Trace:
[    0.262142]  dump_stack+0x57/0x6a
[    0.262143]  bad_page.cold.119+0x63/0x93
[    0.262144]  __free_pages_ok+0x31f/0x330
[    0.262145]  memblock_free_all+0x153/0x1bf
[    0.262146]  mem_init+0x23/0x1f2
[    0.262147]  start_kernel+0x299/0x57a
[    0.262148]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262149] BUG: Bad page state in process swapper  pfn:ab08009
[    0.262150] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08009
[    0.262150] flags: 0x0()
[    0.262151] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262152] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262152] page dumped because: nonzero mapcount
[    0.262152] Modules linked in:
[    0.262153] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262154] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262154] Call Trace:
[    0.262155]  dump_stack+0x57/0x6a
[    0.262156]  bad_page.cold.119+0x63/0x93
[    0.262157]  __free_pages_ok+0x31f/0x330
[    0.262158]  memblock_free_all+0x153/0x1bf
[    0.262159]  mem_init+0x23/0x1f2
[    0.262160]  start_kernel+0x299/0x57a
[    0.262161]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262162] BUG: Bad page state in process swapper  pfn:ab0800a
[    0.262163] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800a
[    0.262164] flags: 0x0()
[    0.262165] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262166] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262166] page dumped because: nonzero mapcount
[    0.262167] Modules linked in:
[    0.262168] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262168] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262169] Call Trace:
[    0.262170]  dump_stack+0x57/0x6a
[    0.262171]  bad_page.cold.119+0x63/0x93
[    0.262172]  __free_pages_ok+0x31f/0x330
[    0.262173]  memblock_free_all+0x153/0x1bf
[    0.262174]  mem_init+0x23/0x1f2
[    0.262175]  start_kernel+0x299/0x57a
[    0.262176]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262178] BUG: Bad page state in process swapper  pfn:ab0800b
[    0.262178] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800b
[    0.262179] flags: 0x0()
[    0.262179] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262180] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262181] page dumped because: nonzero mapcount
[    0.262181] Modules linked in:
[    0.262182] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262182] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262182] Call Trace:
[    0.262184]  dump_stack+0x57/0x6a
[    0.262184]  bad_page.cold.119+0x63/0x93
[    0.262185]  __free_pages_ok+0x31f/0x330
[    0.262186]  memblock_free_all+0x153/0x1bf
[    0.262188]  mem_init+0x23/0x1f2
[    0.262188]  start_kernel+0x299/0x57a
[    0.262190]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262191] BUG: Bad page state in process swapper  pfn:ab0800c
[    0.262191] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800c
[    0.262192] flags: 0x0()
[    0.262193] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262193] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262194] page dumped because: nonzero mapcount
[    0.262194] Modules linked in:
[    0.262195] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262195] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262195] Call Trace:
[    0.262197]  dump_stack+0x57/0x6a
[    0.262197]  bad_page.cold.119+0x63/0x93
[    0.262198]  __free_pages_ok+0x31f/0x330
[    0.262200]  memblock_free_all+0x153/0x1bf
[    0.262201]  mem_init+0x23/0x1f2
[    0.262202]  start_kernel+0x299/0x57a
[    0.262203]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262205] BUG: Bad page state in process swapper  pfn:ab0800d
[    0.262205] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800d
[    0.262206] flags: 0x0()
[    0.262207] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262208] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262208] page dumped because: nonzero mapcount
[    0.262208] Modules linked in:
[    0.262209] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262210] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262210] Call Trace:
[    0.262211]  dump_stack+0x57/0x6a
[    0.262212]  bad_page.cold.119+0x63/0x93
[    0.262213]  __free_pages_ok+0x31f/0x330
[    0.262214]  memblock_free_all+0x153/0x1bf
[    0.262215]  mem_init+0x23/0x1f2
[    0.262216]  start_kernel+0x299/0x57a
[    0.262217]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262218] BUG: Bad page state in process swapper  pfn:ab0800e
[    0.262219] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800e
[    0.262220] flags: 0x0()
[    0.262220] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262221] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262221] page dumped because: nonzero mapcount
[    0.262222] Modules linked in:
[    0.262222] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262223] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262223] Call Trace:
[    0.262225]  dump_stack+0x57/0x6a
[    0.262225]  bad_page.cold.119+0x63/0x93
[    0.262226]  __free_pages_ok+0x31f/0x330
[    0.262227]  memblock_free_all+0x153/0x1bf
[    0.262228]  mem_init+0x23/0x1f2
[    0.262229]  start_kernel+0x299/0x57a
[    0.262230]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262232] BUG: Bad page state in process swapper  pfn:ab0800f
[    0.262232] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800f
[    0.262233] flags: 0x0()
[    0.262233] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262234] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262234] page dumped because: nonzero mapcount
[    0.262235] Modules linked in:
[    0.262236] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262236] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262236] Call Trace:
[    0.262238]  dump_stack+0x57/0x6a
[    0.262238]  bad_page.cold.119+0x63/0x93
[    0.262239]  __free_pages_ok+0x31f/0x330
[    0.262240]  memblock_free_all+0x153/0x1bf
[    0.262241]  mem_init+0x23/0x1f2
[    0.262242]  start_kernel+0x299/0x57a
[    0.262243]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262245] BUG: Bad page state in process swapper  pfn:ab08010
[    0.262245] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08010
[    0.262246] flags: 0x0()
[    0.262246] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262247] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262247] page dumped because: nonzero mapcount
[    0.262248] Modules linked in:
[    0.262249] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262249] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262249] Call Trace:
[    0.262251]  dump_stack+0x57/0x6a
[    0.262251]  bad_page.cold.119+0x63/0x93
[    0.262252]  __free_pages_ok+0x31f/0x330
[    0.262253]  memblock_free_all+0x153/0x1bf
[    0.262254]  mem_init+0x23/0x1f2
[    0.262255]  start_kernel+0x299/0x57a
[    0.262256]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262258] BUG: Bad page state in process swapper  pfn:ab08011
[    0.262258] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08011
[    0.262259] flags: 0x0()
[    0.262259] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262260] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262260] page dumped because: nonzero mapcount
[    0.262261] Modules linked in:
[    0.262262] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262262] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262262] Call Trace:
[    0.262264]  dump_stack+0x57/0x6a
[    0.262264]  bad_page.cold.119+0x63/0x93
[    0.262265]  __free_pages_ok+0x31f/0x330
[    0.262266]  memblock_free_all+0x153/0x1bf
[    0.262268]  mem_init+0x23/0x1f2
[    0.262268]  start_kernel+0x299/0x57a
[    0.262269]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262271] BUG: Bad page state in process swapper  pfn:ab08012
[    0.262271] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08012
[    0.262272] flags: 0x0()
[    0.262273] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262273] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262274] page dumped because: nonzero mapcount
[    0.262274] Modules linked in:
[    0.262275] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262275] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262276] Call Trace:
[    0.262277]  dump_stack+0x57/0x6a
[    0.262278]  bad_page.cold.119+0x63/0x93
[    0.262278]  __free_pages_ok+0x31f/0x330
[    0.262280]  memblock_free_all+0x153/0x1bf
[    0.262281]  mem_init+0x23/0x1f2
[    0.262282]  start_kernel+0x299/0x57a
[    0.262283]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262284] BUG: Bad page state in process swapper  pfn:ab08013
[    0.262285] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08013
[    0.262285] flags: 0x0()
[    0.262286] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262286] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262287] page dumped because: nonzero mapcount
[    0.262287] Modules linked in:
[    0.262288] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262288] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262289] Call Trace:
[    0.262290]  dump_stack+0x57/0x6a
[    0.262291]  bad_page.cold.119+0x63/0x93
[    0.262292]  __free_pages_ok+0x31f/0x330
[    0.262293]  memblock_free_all+0x153/0x1bf
[    0.262294]  mem_init+0x23/0x1f2
[    0.262295]  start_kernel+0x299/0x57a
[    0.262296]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262297] BUG: Bad page state in process swapper  pfn:ab08014
[    0.262298] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08014
[    0.262298] flags: 0x0()
[    0.262299] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262300] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262300] page dumped because: nonzero mapcount
[    0.262300] Modules linked in:
[    0.262301] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262301] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262302] Call Trace:
[    0.262303]  dump_stack+0x57/0x6a
[    0.262304]  bad_page.cold.119+0x63/0x93
[    0.262305]  __free_pages_ok+0x31f/0x330
[    0.262306]  memblock_free_all+0x153/0x1bf
[    0.262307]  mem_init+0x23/0x1f2
[    0.262308]  start_kernel+0x299/0x57a
[    0.262309]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262310] BUG: Bad page state in process swapper  pfn:ab08015
[    0.262311] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08015
[    0.262311] flags: 0x0()
[    0.262312] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262313] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262313] page dumped because: nonzero mapcount
[    0.262313] Modules linked in:
[    0.262314] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262315] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262315] Call Trace:
[    0.262316]  dump_stack+0x57/0x6a
[    0.262317]  bad_page.cold.119+0x63/0x93
[    0.262318]  __free_pages_ok+0x31f/0x330
[    0.262319]  memblock_free_all+0x153/0x1bf
[    0.262320]  mem_init+0x23/0x1f2
[    0.262321]  start_kernel+0x299/0x57a
[    0.262322]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262323] BUG: Bad page state in process swapper  pfn:ab08016
[    0.262324] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08016
[    0.262324] flags: 0x0()
[    0.262325] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262326] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262326] page dumped because: nonzero mapcount
[    0.262326] Modules linked in:
[    0.262327] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262328] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262328] Call Trace:
[    0.262329]  dump_stack+0x57/0x6a
[    0.262330]  bad_page.cold.119+0x63/0x93
[    0.262331]  __free_pages_ok+0x31f/0x330
[    0.262332]  memblock_free_all+0x153/0x1bf
[    0.262333]  mem_init+0x23/0x1f2
[    0.262334]  start_kernel+0x299/0x57a
[    0.262335]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262336] BUG: Bad page state in process swapper  pfn:ab08017
[    0.262337] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08017
[    0.262337] flags: 0x0()
[    0.262338] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262339] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262339] page dumped because: nonzero mapcount
[    0.262340] Modules linked in:
[    0.262340] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262341] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262341] Call Trace:
[    0.262342]  dump_stack+0x57/0x6a
[    0.262343]  bad_page.cold.119+0x63/0x93
[    0.262344]  __free_pages_ok+0x31f/0x330
[    0.262345]  memblock_free_all+0x153/0x1bf
[    0.262346]  mem_init+0x23/0x1f2
[    0.262347]  start_kernel+0x299/0x57a
[    0.262348]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262350] BUG: Bad page state in process swapper  pfn:ab08018
[    0.262350] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08018
[    0.262351] flags: 0x0()
[    0.262351] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262352] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262352] page dumped because: nonzero mapcount
[    0.262353] Modules linked in:
[    0.262354] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262354] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262354] Call Trace:
[    0.262356]  dump_stack+0x57/0x6a
[    0.262356]  bad_page.cold.119+0x63/0x93
[    0.262357]  __free_pages_ok+0x31f/0x330
[    0.262358]  memblock_free_all+0x153/0x1bf
[    0.262360]  mem_init+0x23/0x1f2
[    0.262360]  start_kernel+0x299/0x57a
[    0.262361]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262363] BUG: Bad page state in process swapper  pfn:ab08019
[    0.262363] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08019
[    0.262364] flags: 0x0()
[    0.262364] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262365] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262366] page dumped because: nonzero mapcount
[    0.262366] Modules linked in:
[    0.262367] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262367] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262367] Call Trace:
[    0.262369]  dump_stack+0x57/0x6a
[    0.262369]  bad_page.cold.119+0x63/0x93
[    0.262370]  __free_pages_ok+0x31f/0x330
[    0.262371]  memblock_free_all+0x153/0x1bf
[    0.262373]  mem_init+0x23/0x1f2
[    0.262373]  start_kernel+0x299/0x57a
[    0.262374]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262376] BUG: Bad page state in process swapper  pfn:ab0801a
[    0.262376] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801a
[    0.262377] flags: 0x0()
[    0.262377] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262378] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262379] page dumped because: nonzero mapcount
[    0.262379] Modules linked in:
[    0.262380] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262380] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262380] Call Trace:
[    0.262382]  dump_stack+0x57/0x6a
[    0.262382]  bad_page.cold.119+0x63/0x93
[    0.262383]  __free_pages_ok+0x31f/0x330
[    0.262384]  memblock_free_all+0x153/0x1bf
[    0.262386]  mem_init+0x23/0x1f2
[    0.262386]  start_kernel+0x299/0x57a
[    0.262387]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262389] BUG: Bad page state in process swapper  pfn:ab0801b
[    0.262389] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801b
[    0.262390] flags: 0x0()
[    0.262390] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262391] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262391] page dumped because: nonzero mapcount
[    0.262392] Modules linked in:
[    0.262393] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262393] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262393] Call Trace:
[    0.262395]  dump_stack+0x57/0x6a
[    0.262395]  bad_page.cold.119+0x63/0x93
[    0.262396]  __free_pages_ok+0x31f/0x330
[    0.262398]  memblock_free_all+0x153/0x1bf
[    0.262399]  mem_init+0x23/0x1f2
[    0.262400]  start_kernel+0x299/0x57a
[    0.262401]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262402] BUG: Bad page state in process swapper  pfn:ab0801c
[    0.262403] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801c
[    0.262403] flags: 0x0()
[    0.262404] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262404] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262405] page dumped because: nonzero mapcount
[    0.262405] Modules linked in:
[    0.262406] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262406] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262407] Call Trace:
[    0.262408]  dump_stack+0x57/0x6a
[    0.262408]  bad_page.cold.119+0x63/0x93
[    0.262409]  __free_pages_ok+0x31f/0x330
[    0.262411]  memblock_free_all+0x153/0x1bf
[    0.262412]  mem_init+0x23/0x1f2
[    0.262413]  start_kernel+0x299/0x57a
[    0.262414]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262415] BUG: Bad page state in process swapper  pfn:ab0801d
[    0.262416] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801d
[    0.262416] flags: 0x0()
[    0.262417] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262418] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262418] page dumped because: nonzero mapcount
[    0.262418] Modules linked in:
[    0.262419] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262420] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262420] Call Trace:
[    0.262421]  dump_stack+0x57/0x6a
[    0.262422]  bad_page.cold.119+0x63/0x93
[    0.262423]  __free_pages_ok+0x31f/0x330
[    0.262424]  memblock_free_all+0x153/0x1bf
[    0.262425]  mem_init+0x23/0x1f2
[    0.262426]  start_kernel+0x299/0x57a
[    0.262427]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262428] BUG: Bad page state in process swapper  pfn:ab0801e
[    0.262429] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801e
[    0.262429] flags: 0x0()
[    0.262430] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262431] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262431] page dumped because: nonzero mapcount
[    0.262431] Modules linked in:
[    0.262432] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262433] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262433] Call Trace:
[    0.262434]  dump_stack+0x57/0x6a
[    0.262435]  bad_page.cold.119+0x63/0x93
[    0.262436]  __free_pages_ok+0x31f/0x330
[    0.262437]  memblock_free_all+0x153/0x1bf
[    0.262438]  mem_init+0x23/0x1f2
[    0.262439]  start_kernel+0x299/0x57a
[    0.262440]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262441] BUG: Bad page state in process swapper  pfn:ab0801f
[    0.262442] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801f
[    0.262442] flags: 0x0()
[    0.262443] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262444] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262444] page dumped because: nonzero mapcount
[    0.262444] Modules linked in:
[    0.262445] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262446] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262446] Call Trace:
[    0.262447]  dump_stack+0x57/0x6a
[    0.262448]  bad_page.cold.119+0x63/0x93
[    0.262449]  __free_pages_ok+0x31f/0x330
[    0.262450]  memblock_free_all+0x153/0x1bf
[    0.262451]  mem_init+0x23/0x1f2
[    0.262452]  start_kernel+0x299/0x57a
[    0.262453]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262454] BUG: Bad page state in process swapper  pfn:ab08020
[    0.262455] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08020
[    0.262456] flags: 0x0()
[    0.262456] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262457] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262457] page dumped because: nonzero mapcount
[    0.262458] Modules linked in:
[    0.262458] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262459] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262459] Call Trace:
[    0.262460]  dump_stack+0x57/0x6a
[    0.262461]  bad_page.cold.119+0x63/0x93
[    0.262462]  __free_pages_ok+0x31f/0x330
[    0.262463]  memblock_free_all+0x153/0x1bf
[    0.262464]  mem_init+0x23/0x1f2
[    0.262465]  start_kernel+0x299/0x57a
[    0.262466]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262467] BUG: Bad page state in process swapper  pfn:ab08021
[    0.262468] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08021
[    0.262469] flags: 0x0()
[    0.262469] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262470] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262470] page dumped because: nonzero mapcount
[    0.262470] Modules linked in:
[    0.262471] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262472] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262472] Call Trace:
[    0.262473]  dump_stack+0x57/0x6a
[    0.262474]  bad_page.cold.119+0x63/0x93
[    0.262475]  __free_pages_ok+0x31f/0x330
[    0.262476]  memblock_free_all+0x153/0x1bf
[    0.262477]  mem_init+0x23/0x1f2
[    0.262478]  start_kernel+0x299/0x57a
[    0.262479]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262480] BUG: Bad page state in process swapper  pfn:ab08022
[    0.262481] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08022
[    0.262482] flags: 0x0()
[    0.262482] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262483] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262483] page dumped because: nonzero mapcount
[    0.262484] Modules linked in:
[    0.262484] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262485] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262485] Call Trace:
[    0.262486]  dump_stack+0x57/0x6a
[    0.262487]  bad_page.cold.119+0x63/0x93
[    0.262488]  __free_pages_ok+0x31f/0x330
[    0.262489]  memblock_free_all+0x153/0x1bf
[    0.262490]  mem_init+0x23/0x1f2
[    0.262491]  start_kernel+0x299/0x57a
[    0.262492]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262493] BUG: Bad page state in process swapper  pfn:ab08023
[    0.262494] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08023
[    0.262495] flags: 0x0()
[    0.262495] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262496] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262496] page dumped because: nonzero mapcount
[    0.262497] Modules linked in:
[    0.262497] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262498] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262498] Call Trace:
[    0.262499]  dump_stack+0x57/0x6a
[    0.262500]  bad_page.cold.119+0x63/0x93
[    0.262501]  __free_pages_ok+0x31f/0x330
[    0.262502]  memblock_free_all+0x153/0x1bf
[    0.262503]  mem_init+0x23/0x1f2
[    0.262504]  start_kernel+0x299/0x57a
[    0.262505]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262506] BUG: Bad page state in process swapper  pfn:ab08024
[    0.262507] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08024
[    0.262508] flags: 0x0()
[    0.262508] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262509] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262509] page dumped because: nonzero mapcount
[    0.262510] Modules linked in:
[    0.262511] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262511] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262511] Call Trace:
[    0.262512]  dump_stack+0x57/0x6a
[    0.262513]  bad_page.cold.119+0x63/0x93
[    0.262514]  __free_pages_ok+0x31f/0x330
[    0.262515]  memblock_free_all+0x153/0x1bf
[    0.262516]  mem_init+0x23/0x1f2
[    0.262517]  start_kernel+0x299/0x57a
[    0.262518]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262520] BUG: Bad page state in process swapper  pfn:ab08025
[    0.262520] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08025
[    0.262521] flags: 0x0()
[    0.262521] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262522] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262522] page dumped because: nonzero mapcount
[    0.262523] Modules linked in:
[    0.262524] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262524] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262524] Call Trace:
[    0.262526]  dump_stack+0x57/0x6a
[    0.262526]  bad_page.cold.119+0x63/0x93
[    0.262527]  __free_pages_ok+0x31f/0x330
[    0.262528]  memblock_free_all+0x153/0x1bf
[    0.262530]  mem_init+0x23/0x1f2
[    0.262530]  start_kernel+0x299/0x57a
[    0.262532]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262533] BUG: Bad page state in process swapper  pfn:ab08026
[    0.262533] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08026
[    0.262534] flags: 0x0()
[    0.262535] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262535] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262536] page dumped because: nonzero mapcount
[    0.262536] Modules linked in:
[    0.262537] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262537] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262538] Call Trace:
[    0.262539]  dump_stack+0x57/0x6a
[    0.262539]  bad_page.cold.119+0x63/0x93
[    0.262540]  __free_pages_ok+0x31f/0x330
[    0.262541]  memblock_free_all+0x153/0x1bf
[    0.262543]  mem_init+0x23/0x1f2
[    0.262544]  start_kernel+0x299/0x57a
[    0.262545]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262546] BUG: Bad page state in process swapper  pfn:ab08027
[    0.262547] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08027
[    0.262547] flags: 0x0()
[    0.262548] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262548] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262549] page dumped because: nonzero mapcount
[    0.262549] Modules linked in:
[    0.262550] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262550] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262551] Call Trace:
[    0.262552]  dump_stack+0x57/0x6a
[    0.262552]  bad_page.cold.119+0x63/0x93
[    0.262553]  __free_pages_ok+0x31f/0x330
[    0.262555]  memblock_free_all+0x153/0x1bf
[    0.262556]  mem_init+0x23/0x1f2
[    0.262557]  start_kernel+0x299/0x57a
[    0.262558]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262559] BUG: Bad page state in process swapper  pfn:ab08028
[    0.262560] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08028
[    0.262560] flags: 0x0()
[    0.262561] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262561] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262562] page dumped because: nonzero mapcount
[    0.262562] Modules linked in:
[    0.262563] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262563] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262564] Call Trace:
[    0.262565]  dump_stack+0x57/0x6a
[    0.262566]  bad_page.cold.119+0x63/0x93
[    0.262566]  __free_pages_ok+0x31f/0x330
[    0.262568]  memblock_free_all+0x153/0x1bf
[    0.262569]  mem_init+0x23/0x1f2
[    0.262570]  start_kernel+0x299/0x57a
[    0.262571]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262572] BUG: Bad page state in process swapper  pfn:ab08029
[    0.262573] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08029
[    0.262573] flags: 0x0()
[    0.262574] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262574] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262575] page dumped because: nonzero mapcount
[    0.262575] Modules linked in:
[    0.262576] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262576] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262577] Call Trace:
[    0.262578]  dump_stack+0x57/0x6a
[    0.262579]  bad_page.cold.119+0x63/0x93
[    0.262580]  __free_pages_ok+0x31f/0x330
[    0.262581]  memblock_free_all+0x153/0x1bf
[    0.262582]  mem_init+0x23/0x1f2
[    0.262583]  start_kernel+0x299/0x57a
[    0.262584]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262585] BUG: Bad page state in process swapper  pfn:ab0802a
[    0.262586] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802a
[    0.262586] flags: 0x0()
[    0.262587] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262587] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262588] page dumped because: nonzero mapcount
[    0.262588] Modules linked in:
[    0.262589] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262589] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262590] Call Trace:
[    0.262591]  dump_stack+0x57/0x6a
[    0.262592]  bad_page.cold.119+0x63/0x93
[    0.262593]  __free_pages_ok+0x31f/0x330
[    0.262594]  memblock_free_all+0x153/0x1bf
[    0.262595]  mem_init+0x23/0x1f2
[    0.262596]  start_kernel+0x299/0x57a
[    0.262597]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262598] BUG: Bad page state in process swapper  pfn:ab0802b
[    0.262599] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802b
[    0.262599] flags: 0x0()
[    0.262600] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262601] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262601] page dumped because: nonzero mapcount
[    0.262601] Modules linked in:
[    0.262602] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262603] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262603] Call Trace:
[    0.262604]  dump_stack+0x57/0x6a
[    0.262605]  bad_page.cold.119+0x63/0x93
[    0.262606]  __free_pages_ok+0x31f/0x330
[    0.262607]  memblock_free_all+0x153/0x1bf
[    0.262608]  mem_init+0x23/0x1f2
[    0.262609]  start_kernel+0x299/0x57a
[    0.262610]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262611] BUG: Bad page state in process swapper  pfn:ab0802c
[    0.262612] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802c
[    0.262612] flags: 0x0()
[    0.262613] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262614] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262614] page dumped because: nonzero mapcount
[    0.262614] Modules linked in:
[    0.262615] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262615] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262616] Call Trace:
[    0.262617]  dump_stack+0x57/0x6a
[    0.262618]  bad_page.cold.119+0x63/0x93
[    0.262619]  __free_pages_ok+0x31f/0x330
[    0.262620]  memblock_free_all+0x153/0x1bf
[    0.262621]  mem_init+0x23/0x1f2
[    0.262622]  start_kernel+0x299/0x57a
[    0.262623]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262624] BUG: Bad page state in process swapper  pfn:ab0802d
[    0.262625] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802d
[    0.262625] flags: 0x0()
[    0.262626] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262627] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262627] page dumped because: nonzero mapcount
[    0.262627] Modules linked in:
[    0.262628] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262629] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262629] Call Trace:
[    0.262630]  dump_stack+0x57/0x6a
[    0.262631]  bad_page.cold.119+0x63/0x93
[    0.262632]  __free_pages_ok+0x31f/0x330
[    0.262633]  memblock_free_all+0x153/0x1bf
[    0.262634]  mem_init+0x23/0x1f2
[    0.262635]  start_kernel+0x299/0x57a
[    0.262636]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262637] BUG: Bad page state in process swapper  pfn:ab0802e
[    0.262638] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802e
[    0.262638] flags: 0x0()
[    0.262639] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262640] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262640] page dumped because: nonzero mapcount
[    0.262640] Modules linked in:
[    0.262641] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262642] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262642] Call Trace:
[    0.262643]  dump_stack+0x57/0x6a
[    0.262644]  bad_page.cold.119+0x63/0x93
[    0.262645]  __free_pages_ok+0x31f/0x330
[    0.262646]  memblock_free_all+0x153/0x1bf
[    0.262647]  mem_init+0x23/0x1f2
[    0.262648]  start_kernel+0x299/0x57a
[    0.262649]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262650] BUG: Bad page state in process swapper  pfn:ab0802f
[    0.262651] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802f
[    0.262651] flags: 0x0()
[    0.262652] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262653] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262653] page dumped because: nonzero mapcount
[    0.262653] Modules linked in:
[    0.262654] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262655] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262655] Call Trace:
[    0.262656]  dump_stack+0x57/0x6a
[    0.262657]  bad_page.cold.119+0x63/0x93
[    0.262658]  __free_pages_ok+0x31f/0x330
[    0.262659]  memblock_free_all+0x153/0x1bf
[    0.262660]  mem_init+0x23/0x1f2
[    0.262661]  start_kernel+0x299/0x57a
[    0.262662]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262663] BUG: Bad page state in process swapper  pfn:ab08030
[    0.262664] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08030
[    0.262664] flags: 0x0()
[    0.262665] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262666] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262666] page dumped because: nonzero mapcount
[    0.262667] Modules linked in:
[    0.262667] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262668] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262668] Call Trace:
[    0.262669]  dump_stack+0x57/0x6a
[    0.262670]  bad_page.cold.119+0x63/0x93
[    0.262671]  __free_pages_ok+0x31f/0x330
[    0.262672]  memblock_free_all+0x153/0x1bf
[    0.262673]  mem_init+0x23/0x1f2
[    0.262674]  start_kernel+0x299/0x57a
[    0.262675]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262676] BUG: Bad page state in process swapper  pfn:ab08031
[    0.262677] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08031
[    0.262678] flags: 0x0()
[    0.262678] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262679] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262679] page dumped because: nonzero mapcount
[    0.262680] Modules linked in:
[    0.262681] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262681] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262681] Call Trace:
[    0.262682]  dump_stack+0x57/0x6a
[    0.262683]  bad_page.cold.119+0x63/0x93
[    0.262684]  __free_pages_ok+0x31f/0x330
[    0.262685]  memblock_free_all+0x153/0x1bf
[    0.262686]  mem_init+0x23/0x1f2
[    0.262687]  start_kernel+0x299/0x57a
[    0.262688]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262690] BUG: Bad page state in process swapper  pfn:ab08032
[    0.262690] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08032
[    0.262691] flags: 0x0()
[    0.262691] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262692] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262692] page dumped because: nonzero mapcount
[    0.262693] Modules linked in:
[    0.262694] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262694] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262694] Call Trace:
[    0.262695]  dump_stack+0x57/0x6a
[    0.262696]  bad_page.cold.119+0x63/0x93
[    0.262697]  __free_pages_ok+0x31f/0x330
[    0.262698]  memblock_free_all+0x153/0x1bf
[    0.262699]  mem_init+0x23/0x1f2
[    0.262700]  start_kernel+0x299/0x57a
[    0.262701]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262703] BUG: Bad page state in process swapper  pfn:ab08033
[    0.262703] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08033
[    0.262704] flags: 0x0()
[    0.262704] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262705] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262705] page dumped because: nonzero mapcount
[    0.262706] Modules linked in:
[    0.262707] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262707] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262707] Call Trace:
[    0.262708]  dump_stack+0x57/0x6a
[    0.262709]  bad_page.cold.119+0x63/0x93
[    0.262710]  __free_pages_ok+0x31f/0x330
[    0.262711]  memblock_free_all+0x153/0x1bf
[    0.262712]  mem_init+0x23/0x1f2
[    0.262713]  start_kernel+0x299/0x57a
[    0.262714]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262716] BUG: Bad page state in process swapper  pfn:ab08034
[    0.262716] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08034
[    0.262717] flags: 0x0()
[    0.262717] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262718] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262718] page dumped because: nonzero mapcount
[    0.262719] Modules linked in:
[    0.262720] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262720] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262720] Call Trace:
[    0.262722]  dump_stack+0x57/0x6a
[    0.262722]  bad_page.cold.119+0x63/0x93
[    0.262723]  __free_pages_ok+0x31f/0x330
[    0.262724]  memblock_free_all+0x153/0x1bf
[    0.262726]  mem_init+0x23/0x1f2
[    0.262726]  start_kernel+0x299/0x57a
[    0.262727]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262729] BUG: Bad page state in process swapper  pfn:ab08035
[    0.262729] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08035
[    0.262730] flags: 0x0()
[    0.262730] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262731] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262732] page dumped because: nonzero mapcount
[    0.262732] Modules linked in:
[    0.262733] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262733] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262733] Call Trace:
[    0.262735]  dump_stack+0x57/0x6a
[    0.262735]  bad_page.cold.119+0x63/0x93
[    0.262736]  __free_pages_ok+0x31f/0x330
[    0.262737]  memblock_free_all+0x153/0x1bf
[    0.262739]  mem_init+0x23/0x1f2
[    0.262740]  start_kernel+0x299/0x57a
[    0.262741]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262742] BUG: Bad page state in process swapper  pfn:ab08036
[    0.262743] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08036
[    0.262743] flags: 0x0()
[    0.262744] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262744] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262745] page dumped because: nonzero mapcount
[    0.262745] Modules linked in:
[    0.262746] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262746] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262747] Call Trace:
[    0.262748]  dump_stack+0x57/0x6a
[    0.262748]  bad_page.cold.119+0x63/0x93
[    0.262749]  __free_pages_ok+0x31f/0x330
[    0.262751]  memblock_free_all+0x153/0x1bf
[    0.262752]  mem_init+0x23/0x1f2
[    0.262753]  start_kernel+0x299/0x57a
[    0.262754]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262755] BUG: Bad page state in process swapper  pfn:ab08037
[    0.262756] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08037
[    0.262756] flags: 0x0()
[    0.262757] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262757] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262758] page dumped because: nonzero mapcount
[    0.262758] Modules linked in:
[    0.262759] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262759] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262760] Call Trace:
[    0.262761]  dump_stack+0x57/0x6a
[    0.262761]  bad_page.cold.119+0x63/0x93
[    0.262762]  __free_pages_ok+0x31f/0x330
[    0.262764]  memblock_free_all+0x153/0x1bf
[    0.262765]  mem_init+0x23/0x1f2
[    0.262766]  start_kernel+0x299/0x57a
[    0.262767]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262768] BUG: Bad page state in process swapper  pfn:ab08038
[    0.262769] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08038
[    0.262769] flags: 0x0()
[    0.262770] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262770] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262771] page dumped because: nonzero mapcount
[    0.262771] Modules linked in:
[    0.262772] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262772] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262773] Call Trace:
[    0.262774]  dump_stack+0x57/0x6a
[    0.262774]  bad_page.cold.119+0x63/0x93
[    0.262775]  __free_pages_ok+0x31f/0x330
[    0.262777]  memblock_free_all+0x153/0x1bf
[    0.262778]  mem_init+0x23/0x1f2
[    0.262779]  start_kernel+0x299/0x57a
[    0.262780]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262781] BUG: Bad page state in process swapper  pfn:ab08039
[    0.262782] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08039
[    0.262782] flags: 0x0()
[    0.262783] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262783] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262784] page dumped because: nonzero mapcount
[    0.262784] Modules linked in:
[    0.262785] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262785] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262786] Call Trace:
[    0.262787]  dump_stack+0x57/0x6a
[    0.262787]  bad_page.cold.119+0x63/0x93
[    0.262788]  __free_pages_ok+0x31f/0x330
[    0.262790]  memblock_free_all+0x153/0x1bf
[    0.262791]  mem_init+0x23/0x1f2
[    0.262792]  start_kernel+0x299/0x57a
[    0.262793]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262794] BUG: Bad page state in process swapper  pfn:ab0803a
[    0.262795] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0803a
[    0.262795] flags: 0x0()
[    0.262796] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262796] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262797] page dumped because: nonzero mapcount
[    0.262797] Modules linked in:
[    0.262798] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262798] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262799] Call Trace:
[    0.262800]  dump_stack+0x57/0x6a
[    0.262801]  bad_page.cold.119+0x63/0x93
[    0.262802]  __free_pages_ok+0x31f/0x330
[    0.262803]  memblock_free_all+0x153/0x1bf
[    0.262804]  mem_init+0x23/0x1f2
[    0.262805]  start_kernel+0x299/0x57a
[    0.262806]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262807] BUG: Bad page state in process swapper  pfn:ab0803b
[    0.262808] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0803b
[    0.262808] flags: 0x0()
[    0.262809] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262809] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262810] page dumped because: nonzero mapcount
[    0.262810] Modules linked in:
[    0.262811] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262812] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262812] Call Trace:
[    0.262813]  dump_stack+0x57/0x6a
[    0.262814]  bad_page.cold.119+0x63/0x93
[    0.262815]  __free_pages_ok+0x31f/0x330
[    0.262816]  memblock_free_all+0x153/0x1bf
[    0.262817]  mem_init+0x23/0x1f2
[    0.262818]  start_kernel+0x299/0x57a
[    0.262819]  secondary_startup_64_no_verify+0xb8/0xbb
[    0.262820] BUG: Bad page state in process swapper  pfn:ab0803c
[    0.262821] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0803c
[    0.262821] flags: 0x0()
[    0.262822] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262823] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262823] page dumped because: nonzero mapcount
[    0.262823] Modules linked in:
[    0.262824] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.9.0 #1
[    0.262825] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262825] Call Trace:
[    0.262826]  dump_stack+0x57/0x6a
[    0.262827]  bad_page.cold.119+0x63/0x93
[    0.262828]  __free_pages_ok+0x31f/0x330
[    0.262829]  memblock_free_all+0x153/0x1bf
[    0.262830]  mem_init+0x23/0x1f2
[    0.262831]  start_kernel+0x299/0x57a
[    0.262832]  secondary_startup_64_no_verify+0xb8/0xbb
[    3.758185] Memory: 3374072K/1073740756K available (12297K kernel code, 5778K rwdata, 4376K rodata, 2352K init, 6480K bss, 16999716K reserved, 0K cma-reserved)
[    3.760140] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=84, Nodes=3
[    3.760186] Kernel/User page tables isolation: enabled
[    3.760233] ftrace: allocating 39515 entries in 155 pages
[    3.774449] ftrace: allocated 155 pages with 5 groups
[    3.775774] rcu: Hierarchical RCU implementation.
[    3.775776] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=84.
[    3.775777] 	Rude variant of Tasks RCU enabled.
[    3.775779] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    3.775780] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=84
[    3.778297] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    3.779009] Console: colour dummy device 80x25
[    3.779129] printk: console [tty0] enabled
[    3.779355] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    3.779359] ACPI: Core revision 20200925
[    3.783630] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    3.783737] APIC: Switch to symmetric I/O mode setup
[    3.785204] x2apic enabled
[    3.786832] Switched APIC routing to physical x2apic.
[    3.791215] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    3.791253] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e3306b9ada, max_idle_ns: 440795224413 ns
[    3.791256] Calibrating delay loop (skipped) preset value.. 4190.15 BogoMIPS (lpj=2095078)
[    3.791259] pid_max: default: 86016 minimum: 672
[    3.793217] LSM: Security Framework initializing
[    3.793258] Yama: becoming mindful.
[    3.793297] SELinux:  Initializing.
[    3.884263] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes, vmalloc)
[    3.933458] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc)
[    3.934294] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.935543] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.937813] Disabled fast string operations
[    3.937972] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    3.937972] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    3.937982] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    3.937984] Spectre V2 : Mitigation: Full generic retpoline
[    3.937985] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    3.937986] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    3.937988] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    3.937989] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    3.937993] MDS: Mitigation: Clear CPU buffers
[    3.938381] Freeing SMP alternatives memory: 32K
[    3.939663] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8176 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x4)
[    3.939840] Performance Events: Skylake events, core PMU driver.
[    3.939899] core: CPUID marked event: 'cpu cycles' unavailable
[    3.939900] core: CPUID marked event: 'instructions' unavailable
[    3.939900] core: CPUID marked event: 'bus cycles' unavailable
[    3.939901] core: CPUID marked event: 'cache references' unavailable
[    3.939902] core: CPUID marked event: 'cache misses' unavailable
[    3.939902] core: CPUID marked event: 'branch instructions' unavailable
[    3.939903] core: CPUID marked event: 'branch misses' unavailable
[    3.939905] ... version:                1
[    3.939906] ... bit width:              48
[    3.939906] ... generic registers:      4
[    3.939907] ... value mask:             0000ffffffffffff
[    3.939908] ... max period:             000000007fffffff
[    3.939908] ... fixed-purpose events:   0
[    3.939909] ... event mask:             000000000000000f
[    3.940057] rcu: Hierarchical SRCU implementation.
[    3.940204] NMI watchdog: Perf NMI watchdog permanently disabled
[    3.942031] smp: Bringing up secondary CPUs ...
[    3.942121] x86: Booting SMP configuration:
[    3.942123] .... node  #0, CPUs:        #1
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 1 Converting physical 2 to logical package 1
[    0.010417] smpboot: CPU 1 Converting physical 0 to logical die 1
[    3.943300]   #2
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 2 Converting physical 4 to logical package 2
[    0.010417] smpboot: CPU 2 Converting physical 0 to logical die 2
[    3.944101]   #3
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 3 Converting physical 6 to logical package 3
[    0.010417] smpboot: CPU 3 Converting physical 0 to logical die 3
[    3.944950]   #4
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 4 Converting physical 8 to logical package 4
[    0.010417] smpboot: CPU 4 Converting physical 0 to logical die 4
[    3.945824]   #5
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 5 Converting physical 10 to logical package 5
[    0.010417] smpboot: CPU 5 Converting physical 0 to logical die 5
[    3.946329]   #6
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 6 Converting physical 12 to logical package 6
[    0.010417] smpboot: CPU 6 Converting physical 0 to logical die 6
[    3.947269]   #7
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 7 Converting physical 14 to logical package 7
[    0.010417] smpboot: CPU 7 Converting physical 0 to logical die 7
[    3.948294]   #8
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 8 Converting physical 16 to logical package 8
[    0.010417] smpboot: CPU 8 Converting physical 0 to logical die 8
[    3.949042]   #9
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 9 Converting physical 18 to logical package 9
[    0.010417] smpboot: CPU 9 Converting physical 0 to logical die 9
[    3.949930]  #10
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 10 Converting physical 20 to logical package 10
[    0.010417] smpboot: CPU 10 Converting physical 0 to logical die 10
[    3.950352]  #11
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 11 Converting physical 22 to logical package 11
[    0.010417] smpboot: CPU 11 Converting physical 0 to logical die 11
[    3.951328]  #12
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 12 Converting physical 24 to logical package 12
[    0.010417] smpboot: CPU 12 Converting physical 0 to logical die 12
[    3.952053]  #13
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 13 Converting physical 26 to logical package 13
[    0.010417] smpboot: CPU 13 Converting physical 0 to logical die 13
[    3.952953]  #14
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 14 Converting physical 28 to logical package 14
[    0.010417] smpboot: CPU 14 Converting physical 0 to logical die 14
[    3.953791]  #15
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 15 Converting physical 30 to logical package 15
[    0.010417] smpboot: CPU 15 Converting physical 0 to logical die 15
[    3.954586]  #16
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 16 Converting physical 32 to logical package 16
[    0.010417] smpboot: CPU 16 Converting physical 0 to logical die 16
[    3.955329]  #17
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 17 Converting physical 34 to logical package 17
[    0.010417] smpboot: CPU 17 Converting physical 0 to logical die 17
[    3.956059]  #18
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 18 Converting physical 36 to logical package 18
[    0.010417] smpboot: CPU 18 Converting physical 0 to logical die 18
[    3.956978]  #19
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 19 Converting physical 38 to logical package 19
[    0.010417] smpboot: CPU 19 Converting physical 0 to logical die 19
[    3.958326]  #20
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 20 Converting physical 40 to logical package 20
[    0.010417] smpboot: CPU 20 Converting physical 0 to logical die 20
[    3.958921]  #21
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 21 Converting physical 42 to logical package 21
[    0.010417] smpboot: CPU 21 Converting physical 0 to logical die 21
[    3.959328]  #22
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 22 Converting physical 44 to logical package 22
[    0.010417] smpboot: CPU 22 Converting physical 0 to logical die 22
[    3.959931]  #23
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 23 Converting physical 46 to logical package 23
[    0.010417] smpboot: CPU 23 Converting physical 0 to logical die 23
[    3.960828]  #24
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 24 Converting physical 48 to logical package 24
[    0.010417] smpboot: CPU 24 Converting physical 0 to logical die 24
[    3.961327]  #25
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 25 Converting physical 50 to logical package 25
[    0.010417] smpboot: CPU 25 Converting physical 0 to logical die 25
[    3.961923]  #26
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 26 Converting physical 52 to logical package 26
[    0.010417] smpboot: CPU 26 Converting physical 0 to logical die 26
[    3.962717]  #27
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 27 Converting physical 54 to logical package 27
[    0.010417] smpboot: CPU 27 Converting physical 0 to logical die 27

[    3.963346] .... node  #1, CPUs:   #28
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 28 Converting physical 56 to logical package 28
[    0.010417] smpboot: CPU 28 Converting physical 0 to logical die 28
[    3.964342]  #29
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 29 Converting physical 58 to logical package 29
[    0.010417] smpboot: CPU 29 Converting physical 0 to logical die 29
[    3.965339]  #30
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 30 Converting physical 60 to logical package 30
[    0.010417] smpboot: CPU 30 Converting physical 0 to logical die 30
[    3.966345]  #31
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 31 Converting physical 62 to logical package 31
[    0.010417] smpboot: CPU 31 Converting physical 0 to logical die 31
[    3.967268]  #32
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 32 Converting physical 64 to logical package 32
[    0.010417] smpboot: CPU 32 Converting physical 0 to logical die 32
[    3.967924]  #33
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 33 Converting physical 66 to logical package 33
[    0.010417] smpboot: CPU 33 Converting physical 0 to logical die 33
[    3.968730]  #34
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 34 Converting physical 68 to logical package 34
[    0.010417] smpboot: CPU 34 Converting physical 0 to logical die 34
[    3.969339]  #35
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 35 Converting physical 70 to logical package 35
[    0.010417] smpboot: CPU 35 Converting physical 0 to logical die 35
[    3.970279]  #36
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 36 Converting physical 72 to logical package 36
[    0.010417] smpboot: CPU 36 Converting physical 0 to logical die 36
[    3.970890]  #37
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 37 Converting physical 74 to logical package 37
[    0.010417] smpboot: CPU 37 Converting physical 0 to logical die 37
[    3.971346]  #38
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 38 Converting physical 76 to logical package 38
[    0.010417] smpboot: CPU 38 Converting physical 0 to logical die 38
[    3.972300]  #39
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 39 Converting physical 78 to logical package 39
[    0.010417] smpboot: CPU 39 Converting physical 0 to logical die 39
[    3.973032]  #40
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 40 Converting physical 80 to logical package 40
[    0.010417] smpboot: CPU 40 Converting physical 0 to logical die 40
[    3.973867]  #41
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 41 Converting physical 82 to logical package 41
[    0.010417] smpboot: CPU 41 Converting physical 0 to logical die 41
[    3.974326]  #42
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 42 Converting physical 84 to logical package 42
[    0.010417] smpboot: CPU 42 Converting physical 0 to logical die 42
[    3.974926]  #43
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 43 Converting physical 86 to logical package 43
[    0.010417] smpboot: CPU 43 Converting physical 0 to logical die 43
[    3.975788]  #44
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 44 Converting physical 88 to logical package 44
[    0.010417] smpboot: CPU 44 Converting physical 0 to logical die 44
[    3.976334]  #45
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 45 Converting physical 90 to logical package 45
[    0.010417] smpboot: CPU 45 Converting physical 0 to logical die 45
[    3.976952]  #46
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 46 Converting physical 92 to logical package 46
[    0.010417] smpboot: CPU 46 Converting physical 0 to logical die 46
[    3.977740]  #47
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 47 Converting physical 94 to logical package 47
[    0.010417] smpboot: CPU 47 Converting physical 0 to logical die 47
[    3.978446]  #48
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 48 Converting physical 96 to logical package 48
[    0.010417] smpboot: CPU 48 Converting physical 0 to logical die 48
[    3.979346]  #49
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 49 Converting physical 98 to logical package 49
[    0.010417] smpboot: CPU 49 Converting physical 0 to logical die 49
[    3.979925]  #50
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 50 Converting physical 100 to logical package 50
[    0.010417] smpboot: CPU 50 Converting physical 0 to logical die 50
[    3.980721]  #51
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 51 Converting physical 102 to logical package 51
[    0.010417] smpboot: CPU 51 Converting physical 0 to logical die 51
[    3.982305]  #52
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 52 Converting physical 104 to logical package 52
[    0.010417] smpboot: CPU 52 Converting physical 0 to logical die 52
[    3.983345]  #53
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 53 Converting physical 106 to logical package 53
[    0.010417] smpboot: CPU 53 Converting physical 0 to logical die 53
[    3.983900]  #54
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 54 Converting physical 108 to logical package 54
[    0.010417] smpboot: CPU 54 Converting physical 0 to logical die 54
[    3.984492]  #55
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 55 Converting physical 110 to logical package 55
[    0.010417] smpboot: CPU 55 Converting physical 0 to logical die 55

[    3.985360] .... node  #2, CPUs:   #56
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 56 Converting physical 112 to logical package 56
[    0.010417] smpboot: CPU 56 Converting physical 0 to logical die 56
[    3.986407]  #57
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 57 Converting physical 114 to logical package 57
[    0.010417] smpboot: CPU 57 Converting physical 0 to logical die 57
[    3.987450]  #58
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 58 Converting physical 116 to logical package 58
[    0.010417] smpboot: CPU 58 Converting physical 0 to logical die 58
[    3.988726]  #59
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 59 Converting physical 118 to logical package 59
[    0.010417] smpboot: CPU 59 Converting physical 0 to logical die 59
[    3.989346]  #60
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 60 Converting physical 120 to logical package 60
[    0.010417] smpboot: CPU 60 Converting physical 0 to logical die 60
[    3.989991]  #61
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 61 Converting physical 122 to logical package 61
[    0.010417] smpboot: CPU 61 Converting physical 0 to logical die 61
[    3.990964]  #62
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 62 Converting physical 124 to logical package 62
[    0.010417] smpboot: CPU 62 Converting physical 0 to logical die 62
[    3.991749]  #63
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 63 Converting physical 126 to logical package 63
[    0.010417] smpboot: CPU 63 Converting physical 0 to logical die 63
[    3.992546]  #64
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 64 Converting physical 128 to logical package 64
[    0.010417] smpboot: CPU 64 Converting physical 0 to logical die 64
[    3.993360]  #65
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 65 Converting physical 130 to logical package 65
[    0.010417] smpboot: CPU 65 Converting physical 0 to logical die 65
[    3.994956]  #66
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 66 Converting physical 132 to logical package 66
[    0.010417] smpboot: CPU 66 Converting physical 0 to logical die 66
[    3.995820]  #67
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 67 Converting physical 134 to logical package 67
[    0.010417] smpboot: CPU 67 Converting physical 0 to logical die 67
[    3.996527]  #68
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 68 Converting physical 136 to logical package 68
[    0.010417] smpboot: CPU 68 Converting physical 0 to logical die 68
[    3.997407]  #69
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 69 Converting physical 138 to logical package 69
[    0.010417] smpboot: CPU 69 Converting physical 0 to logical die 69
[    3.998344]  #70
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 70 Converting physical 140 to logical package 70
[    0.010417] smpboot: CPU 70 Converting physical 0 to logical die 70
[    3.998940]  #71
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 71 Converting physical 142 to logical package 71
[    0.010417] smpboot: CPU 71 Converting physical 0 to logical die 71
[    3.999864]  #72
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 72 Converting physical 144 to logical package 72
[    0.010417] smpboot: CPU 72 Converting physical 0 to logical die 72
[    4.000503]  #73
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 73 Converting physical 146 to logical package 73
[    0.010417] smpboot: CPU 73 Converting physical 0 to logical die 73
[    4.001339]  #74
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 74 Converting physical 148 to logical package 74
[    0.010417] smpboot: CPU 74 Converting physical 0 to logical die 74
[    4.001923]  #75
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 75 Converting physical 150 to logical package 75
[    0.010417] smpboot: CPU 75 Converting physical 0 to logical die 75
[    4.002784]  #76
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 76 Converting physical 152 to logical package 76
[    0.010417] smpboot: CPU 76 Converting physical 0 to logical die 76
[    4.003502]  #77
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 77 Converting physical 154 to logical package 77
[    0.010417] smpboot: CPU 77 Converting physical 0 to logical die 77
[    4.004335]  #78
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 78 Converting physical 156 to logical package 78
[    0.010417] smpboot: CPU 78 Converting physical 0 to logical die 78
[    4.006033]  #79
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 79 Converting physical 158 to logical package 79
[    0.010417] smpboot: CPU 79 Converting physical 0 to logical die 79
[    4.006947]  #80
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 80 Converting physical 160 to logical package 80
[    0.010417] smpboot: CPU 80 Converting physical 0 to logical die 80
[    4.007704]  #81
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 81 Converting physical 162 to logical package 81
[    0.010417] smpboot: CPU 81 Converting physical 0 to logical die 81
[    4.008443]  #82
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 82 Converting physical 164 to logical package 82
[    0.010417] smpboot: CPU 82 Converting physical 0 to logical die 82
[    4.009342]  #83
[    0.010417] Disabled fast string operations
[    0.010417] smpboot: CPU 83 Converting physical 166 to logical package 83
[    0.010417] smpboot: CPU 83 Converting physical 0 to logical die 83
[    4.010706] smp: Brought up 3 nodes, 84 CPUs
[    4.010710] smpboot: Max logical packages: 84
[    4.010717] smpboot: Total of 84 processors activated (351973.10 BogoMIPS)
[    4.043682] node 2 deferred pages initialised in 28ms
[    4.149133] node 0 deferred pages initialised in 133ms
[    4.280311] node 1 deferred pages initialised in 265ms
[    4.308260] devtmpfs: initialized
[    4.308312] x86/mm: Memory block size: 1024MB
[    4.315605] PM: Registering ACPI NVS region [mem 0x00000000-0x00000fff] (4096 bytes)
[    4.315607] PM: Registering ACPI NVS region [mem 0x0ef42000-0x0ef47fff] (24576 bytes)
[    4.315609] PM: Registering ACPI NVS region [mem 0x0ff73000-0x0ff76fff] (16384 bytes)
[    4.316620] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    4.316620] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    4.318159] pinctrl core: initialized pinctrl subsystem
[    4.318921] NET: Registered protocol family 16
[    4.319040] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    4.319050] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    4.319061] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    4.319071] audit: initializing netlink subsys (disabled)
[    4.319129] audit: type=2000 audit(1603116543.530:1): state=initialized audit_enabled=0 res=1
[    4.319320] thermal_sys: Registered thermal governor 'fair_share'
[    4.319321] thermal_sys: Registered thermal governor 'bang_bang'
[    4.319322] thermal_sys: Registered thermal governor 'step_wise'
[    4.319323] thermal_sys: Registered thermal governor 'user_space'
[    4.319392] cpuidle: using governor menu
[    4.319480] ACPI: bus type PCI registered
[    4.319481] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    4.319787] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    4.319790] PCI: not using MMCONFIG
[    4.319792] PCI: Using configuration type 1 for base access
[    4.324688] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    4.324688] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    4.354272] cryptd: max_cpu_qlen set to 1000
[    4.373356] ACPI: Added _OSI(Module Device)
[    4.373358] ACPI: Added _OSI(Processor Device)
[    4.373359] ACPI: Added _OSI(3.0 _SCP Extensions)
[    4.373359] ACPI: Added _OSI(Processor Aggregator Device)
[    4.373361] ACPI: Added _OSI(Linux-Dell-Video)
[    4.373362] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    4.373363] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    4.377052] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    4.377977] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    4.377982] ACPI: BIOS _OSI(Darwin) query ignored
[    4.386964] ACPI: Interpreter enabled
[    4.386977] ACPI: (supports S0 S1 S4 S5)
[    4.386978] ACPI: Using IOAPIC for interrupt routing
[    4.386996] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    4.387575] PCI: MMCONFIG at [mem 0xe0000000-0xe7ffffff] reserved in ACPI motherboard resources
[    4.387580] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    4.387717] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    4.388100] ACPI: Enabled 4 GPEs in block 00 to 0F
[    4.405426] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    4.405432] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.405572] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[    4.405697] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    4.406357] PCI host bridge to bus 0000:00
[    4.406358] pci_bus 0000:00: Unknown NUMA node; performance will be reduced
[    4.406360] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    4.406362] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    4.406363] pci_bus 0000:00: root bus resource [mem 0xfef00000-0xffdfffff window]
[    4.406364] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfedfffff window]
[    4.406365] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfed3ffff window]
[    4.406366] pci_bus 0000:00: root bus resource [mem 0xfa300000-0xfebfffff window]
[    4.406367] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfa2fffff pref window]
[    4.406368] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xefffffff window]
[    4.406369] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.406369] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    4.406370] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    4.406371] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    4.406372] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    4.406372] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    4.406373] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    4.406374] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    4.406375] pci_bus 0000:00: root bus resource [bus 00-7f]
[    4.406468] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    4.407015] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    4.407511] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    4.408133] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    4.411258] pci 0000:00:07.1: reg 0x20: [io  0x2050-0x205f]
[    4.412726] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    4.412728] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    4.412728] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    4.412729] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    4.412922] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    4.413286] pci 0000:00:07.3: quirk: [io  0x0440-0x047f] claimed by PIIX4 ACPI
[    4.413593] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    4.413687] pci 0000:00:07.7: reg 0x10: [io  0x2000-0x203f]
[    4.413762] pci 0000:00:07.7: reg 0x14: [mem 0xffbf0000-0xffbf1fff 64bit]
[    4.414433] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    4.416258] pci 0000:00:0f.0: reg 0x10: [io  0x2040-0x204f]
[    4.418258] pci 0000:00:0f.0: reg 0x14: [mem 0xf0000000-0xf7ffffff pref]
[    4.420257] pci 0000:00:0f.0: reg 0x18: [mem 0xfb800000-0xfbffffff]
[    4.428259] pci 0000:00:0f.0: reg 0x30: [mem 0xffff8000-0xffffffff pref]
[    4.428294] pci 0000:00:0f.0: BAR 1: assigned to efifb
[    4.428727] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    4.429477] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    4.430229] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    4.430585] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    4.431338] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    4.431692] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    4.432440] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    4.432795] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    4.433577] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    4.433937] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    4.434668] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    4.435007] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    4.435725] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    4.436069] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    4.436808] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    4.437148] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    4.437886] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    4.438237] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    4.438964] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    4.439306] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    4.440044] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    4.440385] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    4.441113] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    4.441464] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    4.442200] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    4.442535] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    4.443275] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    4.443614] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    4.444344] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    4.444692] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    4.445415] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    4.445756] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    4.446470] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    4.446811] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    4.447538] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    4.447882] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    4.448621] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    4.448963] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    4.449685] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    4.450039] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    4.450768] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    4.451119] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    4.451890] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    4.452232] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    4.452964] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    4.453297] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    4.454027] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    4.454373] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    4.455101] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    4.455446] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    4.456184] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    4.456518] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    4.457254] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    4.457591] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    4.458336] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    4.458669] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    4.459400] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    4.459737] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    4.460462] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    4.460803] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    4.461526] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    4.461870] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    4.462597] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    4.462947] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    4.463664] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    4.464018] pci_bus 0000:01: extended config space not accessible
[    4.464061] pci 0000:00:01.0: PCI bridge to [bus 01]
[    4.464245] pci_bus 0000:02: extended config space not accessible
[    4.464415] acpiphp: Slot [32] registered
[    4.464424] acpiphp: Slot [33] registered
[    4.464433] acpiphp: Slot [34] registered
[    4.464441] acpiphp: Slot [35] registered
[    4.464449] acpiphp: Slot [36] registered
[    4.464457] acpiphp: Slot [37] registered
[    4.464464] acpiphp: Slot [38] registered
[    4.464472] acpiphp: Slot [39] registered
[    4.464481] acpiphp: Slot [40] registered
[    4.464488] acpiphp: Slot [41] registered
[    4.464496] acpiphp: Slot [42] registered
[    4.464504] acpiphp: Slot [43] registered
[    4.464512] acpiphp: Slot [44] registered
[    4.464519] acpiphp: Slot [45] registered
[    4.464528] acpiphp: Slot [46] registered
[    4.464536] acpiphp: Slot [47] registered
[    4.464544] acpiphp: Slot [48] registered
[    4.464552] acpiphp: Slot [49] registered
[    4.464559] acpiphp: Slot [50] registered
[    4.464567] acpiphp: Slot [51] registered
[    4.464575] acpiphp: Slot [52] registered
[    4.464583] acpiphp: Slot [53] registered
[    4.464592] acpiphp: Slot [54] registered
[    4.464600] acpiphp: Slot [55] registered
[    4.464608] acpiphp: Slot [56] registered
[    4.464615] acpiphp: Slot [57] registered
[    4.464623] acpiphp: Slot [58] registered
[    4.464631] acpiphp: Slot [59] registered
[    4.464639] acpiphp: Slot [60] registered
[    4.464646] acpiphp: Slot [61] registered
[    4.464654] acpiphp: Slot [62] registered
[    4.464662] acpiphp: Slot [63] registered
[    4.464696] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    4.464715] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    4.464733] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    4.464767] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.464768] pci 0000:00:11.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    4.464769] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    4.464770] pci 0000:00:11.0:   bridge window [mem 0xfef00000-0xffdfffff window] (subtractive decode)
[    4.464770] pci 0000:00:11.0:   bridge window [mem 0xfed45000-0xfedfffff window] (subtractive decode)
[    4.464771] pci 0000:00:11.0:   bridge window [mem 0xfec10000-0xfed3ffff window] (subtractive decode)
[    4.464772] pci 0000:00:11.0:   bridge window [mem 0xfa300000-0xfebfffff window] (subtractive decode)
[    4.464773] pci 0000:00:11.0:   bridge window [mem 0xf0000000-0xfa2fffff pref window] (subtractive decode)
[    4.464774] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xefffffff window] (subtractive decode)
[    4.464775] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    4.464776] pci 0000:00:11.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    4.464777] pci 0000:00:11.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    4.464778] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    4.464778] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    4.464779] pci 0000:00:11.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    4.464780] pci 0000:00:11.0:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    4.464781] pci 0000:00:11.0:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    4.465136] pci 0000:03:00.0: [15ad:07c0] type 00 class 0x010700
[    4.466257] pci 0000:03:00.0: reg 0x10: [io  0x4000-0x4007]
[    4.468257] pci 0000:03:00.0: reg 0x14: [mem 0xfea10000-0xfea17fff 64bit]
[    4.476259] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    4.476696] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    4.476986] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    4.477033] pci 0000:00:15.0: PCI bridge to [bus 03]
[    4.477059] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    4.477078] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.477347] pci 0000:00:15.1: PCI bridge to [bus 04]
[    4.477381] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.477415] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.477656] pci 0000:00:15.2: PCI bridge to [bus 05]
[    4.477690] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    4.477724] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.477961] pci 0000:00:15.3: PCI bridge to [bus 06]
[    4.477996] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    4.478028] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.478259] pci 0000:00:15.4: PCI bridge to [bus 07]
[    4.478294] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    4.478327] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.478558] pci 0000:00:15.5: PCI bridge to [bus 08]
[    4.478591] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    4.478624] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.478853] pci 0000:00:15.6: PCI bridge to [bus 09]
[    4.478888] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    4.478922] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.479158] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    4.479192] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    4.479226] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.479576] pci 0000:0b:00.0: [15ad:07b0] type 00 class 0x020000
[    4.479681] pci 0000:0b:00.0: reg 0x10: [mem 0xfe213000-0xfe213fff]
[    4.479725] pci 0000:0b:00.0: reg 0x14: [mem 0xfe212000-0xfe212fff]
[    4.479767] pci 0000:0b:00.0: reg 0x18: [mem 0xfe210000-0xfe211fff]
[    4.479809] pci 0000:0b:00.0: reg 0x1c: [io  0x3000-0x300f]
[    4.479933] pci 0000:0b:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    4.480352] pci 0000:0b:00.0: supports D1 D2
[    4.480353] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    4.480687] pci 0000:0b:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    4.480732] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    4.480750] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    4.480769] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    4.481046] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    4.481080] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    4.481115] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.481353] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    4.481387] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    4.481420] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.481651] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    4.481685] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    4.481717] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.481949] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    4.481983] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    4.482017] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.482252] pci 0000:00:16.5: PCI bridge to [bus 10]
[    4.482281] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    4.482315] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.482555] pci 0000:00:16.6: PCI bridge to [bus 11]
[    4.482589] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    4.482623] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.482859] pci 0000:00:16.7: PCI bridge to [bus 12]
[    4.482894] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    4.482928] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.483165] pci 0000:00:17.0: PCI bridge to [bus 13]
[    4.483198] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    4.483233] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.483466] pci 0000:00:17.1: PCI bridge to [bus 14]
[    4.483500] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    4.483534] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.483773] pci 0000:00:17.2: PCI bridge to [bus 15]
[    4.483808] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    4.483842] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.484082] pci 0000:00:17.3: PCI bridge to [bus 16]
[    4.484115] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    4.484148] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.484381] pci 0000:00:17.4: PCI bridge to [bus 17]
[    4.484414] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    4.484447] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.484677] pci 0000:00:17.5: PCI bridge to [bus 18]
[    4.484711] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    4.484746] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.484980] pci 0000:00:17.6: PCI bridge to [bus 19]
[    4.485014] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    4.485048] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.485282] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    4.485315] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    4.485349] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.485587] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    4.485621] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    4.485654] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.485885] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    4.485920] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    4.485953] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.486183] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    4.486219] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    4.486253] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.486480] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    4.486515] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    4.486550] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.486788] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    4.486823] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    4.486857] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.487092] pci 0000:00:18.5: PCI bridge to [bus 20]
[    4.487126] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    4.487159] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.487392] pci 0000:00:18.6: PCI bridge to [bus 21]
[    4.487427] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    4.487461] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.487696] pci 0000:00:18.7: PCI bridge to [bus 22]
[    4.487731] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    4.487765] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.489409] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.489477] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.489538] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.489600] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.503720] iommu: Default domain type: Passthrough 
[    4.503720] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[    4.503720] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.503720] pci 0000:00:0f.0: vgaarb: bridge control possible
[    4.503720] vgaarb: loaded
[    4.503720] SCSI subsystem initialized
[    4.503720] ACPI: bus type USB registered
[    4.503720] usbcore: registered new interface driver usbfs
[    4.503720] usbcore: registered new interface driver hub
[    4.504853] usbcore: registered new device driver usb
[    4.504873] pps_core: LinuxPPS API ver. 1 registered
[    4.504874] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    4.504876] PTP clock support registered
[    4.506129] EDAC MC: Ver: 3.0.0
[    4.507339] Registered efivars operations
[    4.507482] NetLabel: Initializing
[    4.507483] NetLabel:  domain hash size = 128
[    4.507484] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.507495] NetLabel:  unlabeled traffic allowed by default
[    4.507497] PCI: Using ACPI for IRQ routing
[    4.510334] PCI: pci_cache_line_size set to 64 bytes
[    4.511063] e820: reserve RAM buffer [mem 0x0e0a1018-0x0fffffff]
[    4.511065] e820: reserve RAM buffer [mem 0x0e0a3018-0x0fffffff]
[    4.511066] e820: reserve RAM buffer [mem 0x0e0a6018-0x0fffffff]
[    4.511067] e820: reserve RAM buffer [mem 0x0ef24000-0x0fffffff]
[    4.511068] e820: reserve RAM buffer [mem 0x0ef3c000-0x0fffffff]
[    4.511069] e820: reserve RAM buffer [mem 0x0ef61000-0x0fffffff]
[    4.511070] e820: reserve RAM buffer [mem 0x0fee7000-0x0fffffff]
[    4.511095] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    4.511095] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    4.512971] clocksource: Switched to clocksource tsc-early
[    4.529750] VFS: Disk quotas dquot_6.6.0
[    4.529891] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.530228] pnp: PnP ACPI init
[    4.530522] system 00:00: [io  0x0440-0x047f] has been reserved
[    4.530530] system 00:00: [io  0x5658-0x5659] has been reserved
[    4.530531] system 00:00: [io  0x5670] has been reserved
[    4.530532] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    4.530553] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.530590] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.530604] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    4.530630] pnp 00:03: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
[    4.530811] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    4.530813] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    4.531894] system 00:05: [io  0x0400-0x041f] has been reserved
[    4.531896] system 00:05: [mem 0xe0000000-0xe7ffffff] has been reserved
[    4.531897] system 00:05: [mem 0xffc00000-0xffdfffff] could not be reserved
[    4.531899] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.532730] pnp: PnP ACPI: found 6 devices
[    4.539936] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.540092] NET: Registered protocol family 2
[    4.540654] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.540982] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    4.541797] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.541983] TCP: Hash tables configured (established 524288 bind 65536)
[    4.542178] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    4.543200] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    4.543731] NET: Registered protocol family 1
[    4.543736] NET: Registered protocol family 44
[    4.543751] pci 0000:00:0f.0: can't claim BAR 6 [mem 0xffff8000-0xffffffff pref]: no compatible bridge window
[    4.543753] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    4.543754] pci 0000:0b:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    4.543761] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    4.543763] pci 0000:00:15.1: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    4.543764] pci 0000:00:15.2: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    4.543766] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    4.543767] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    4.543769] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    4.543770] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    4.543772] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    4.543773] pci 0000:00:16.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    4.543775] pci 0000:00:16.1: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    4.543776] pci 0000:00:16.2: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    4.543778] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    4.543779] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    4.543781] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    4.543782] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    4.543784] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    4.543785] pci 0000:00:17.0: bridge window [io  0x1000-0x0fff] to [bus 13] add_size 1000
[    4.543787] pci 0000:00:17.1: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    4.543788] pci 0000:00:17.2: bridge window [io  0x1000-0x0fff] to [bus 15] add_size 1000
[    4.543789] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    4.543791] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    4.543792] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    4.543793] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    4.543795] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    4.543796] pci 0000:00:18.0: bridge window [io  0x1000-0x0fff] to [bus 1b] add_size 1000
[    4.543798] pci 0000:00:18.1: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
[    4.543799] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    4.543800] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    4.543802] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    4.543803] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    4.543804] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    4.543807] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    4.543825] pci 0000:00:15.0: BAR 15: assigned [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.543829] pci 0000:00:16.0: BAR 15: assigned [mem 0xff100000-0xff2fffff 64bit pref]
[    4.543831] pci 0000:00:0f.0: BAR 6: assigned [mem 0xff300000-0xff307fff pref]
[    4.543832] pci 0000:00:15.1: BAR 13: assigned [io  0x6000-0x6fff]
[    4.543833] pci 0000:00:15.2: BAR 13: assigned [io  0x7000-0x7fff]
[    4.543834] pci 0000:00:15.3: BAR 13: assigned [io  0x8000-0x8fff]
[    4.543835] pci 0000:00:15.4: BAR 13: assigned [io  0x9000-0x9fff]
[    4.543835] pci 0000:00:15.5: BAR 13: assigned [io  0xa000-0xafff]
[    4.543836] pci 0000:00:15.6: BAR 13: assigned [io  0xb000-0xbfff]
[    4.543837] pci 0000:00:15.7: BAR 13: assigned [io  0xc000-0xcfff]
[    4.543838] pci 0000:00:16.1: BAR 13: assigned [io  0xd000-0xdfff]
[    4.543839] pci 0000:00:16.2: BAR 13: assigned [io  0xe000-0xefff]
[    4.543839] pci 0000:00:16.3: BAR 13: assigned [io  0xf000-0xffff]
[    4.543841] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    4.543842] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    4.543844] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    4.543844] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    4.543846] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    4.543846] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    4.543848] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    4.543848] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    4.543849] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    4.543850] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    4.543851] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    4.543852] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    4.543853] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    4.543854] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    4.543855] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    4.543855] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    4.543857] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    4.543857] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    4.543859] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    4.543859] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    4.543860] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    4.543861] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    4.543862] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    4.543863] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    4.543864] pci 0000:00:18.0: BAR 13: no space for [io  size 0x1000]
[    4.543865] pci 0000:00:18.0: BAR 13: failed to assign [io  size 0x1000]
[    4.543866] pci 0000:00:18.1: BAR 13: no space for [io  size 0x1000]
[    4.543866] pci 0000:00:18.1: BAR 13: failed to assign [io  size 0x1000]
[    4.543868] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    4.543868] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    4.543869] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    4.543870] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    4.543871] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    4.543872] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    4.543873] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    4.543874] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    4.543876] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    4.543876] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    4.543877] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    4.543878] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    4.543881] pci 0000:00:18.7: BAR 13: assigned [io  0x6000-0x6fff]
[    4.543882] pci 0000:00:18.6: BAR 13: assigned [io  0x7000-0x7fff]
[    4.543883] pci 0000:00:18.5: BAR 13: assigned [io  0x8000-0x8fff]
[    4.543884] pci 0000:00:18.4: BAR 13: assigned [io  0x9000-0x9fff]
[    4.543885] pci 0000:00:18.3: BAR 13: assigned [io  0xa000-0xafff]
[    4.543885] pci 0000:00:18.2: BAR 13: assigned [io  0xb000-0xbfff]
[    4.543886] pci 0000:00:18.1: BAR 13: assigned [io  0xc000-0xcfff]
[    4.543887] pci 0000:00:18.0: BAR 13: assigned [io  0xd000-0xdfff]
[    4.543888] pci 0000:00:17.7: BAR 13: assigned [io  0xe000-0xefff]
[    4.543889] pci 0000:00:17.6: BAR 13: assigned [io  0xf000-0xffff]
[    4.543890] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    4.543891] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    4.543892] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    4.543893] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    4.543894] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    4.543894] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    4.543896] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    4.543896] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    4.543897] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    4.543898] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    4.543899] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    4.543900] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    4.543901] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    4.543902] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    4.543903] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    4.543904] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    4.543905] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    4.543905] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    4.543907] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    4.543907] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    4.543908] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    4.543909] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    4.543910] pci 0000:00:16.2: BAR 13: no space for [io  size 0x1000]
[    4.543911] pci 0000:00:16.2: BAR 13: failed to assign [io  size 0x1000]
[    4.543912] pci 0000:00:16.1: BAR 13: no space for [io  size 0x1000]
[    4.543913] pci 0000:00:16.1: BAR 13: failed to assign [io  size 0x1000]
[    4.543914] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    4.543914] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    4.543916] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    4.543916] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    4.543918] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    4.543918] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    4.543919] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    4.543920] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    4.543921] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    4.543922] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
[    4.543923] pci 0000:00:15.2: BAR 13: no space for [io  size 0x1000]
[    4.543923] pci 0000:00:15.2: BAR 13: failed to assign [io  size 0x1000]
[    4.543925] pci 0000:00:15.1: BAR 13: no space for [io  size 0x1000]
[    4.543925] pci 0000:00:15.1: BAR 13: failed to assign [io  size 0x1000]
[    4.543928] pci 0000:00:01.0: PCI bridge to [bus 01]
[    4.543999] pci 0000:00:11.0: PCI bridge to [bus 02]
[    4.544007] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    4.544031] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    4.544044] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.544069] pci 0000:03:00.0: BAR 6: assigned [mem 0xfea00000-0xfea0ffff pref]
[    4.544070] pci 0000:00:15.0: PCI bridge to [bus 03]
[    4.544077] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    4.544095] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.544107] pci 0000:00:15.0:   bridge window [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.544132] pci 0000:00:15.1: PCI bridge to [bus 04]
[    4.544150] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.544163] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.544187] pci 0000:00:15.2: PCI bridge to [bus 05]
[    4.544205] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    4.544218] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.544242] pci 0000:00:15.3: PCI bridge to [bus 06]
[    4.544266] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    4.544279] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.544303] pci 0000:00:15.4: PCI bridge to [bus 07]
[    4.544322] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    4.544334] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.544359] pci 0000:00:15.5: PCI bridge to [bus 08]
[    4.544377] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    4.544390] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.544414] pci 0000:00:15.6: PCI bridge to [bus 09]
[    4.544433] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    4.544445] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.544469] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    4.544487] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    4.544500] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.544524] pci 0000:0b:00.0: BAR 6: assigned [mem 0xfe200000-0xfe20ffff pref]
[    4.544525] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    4.544532] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    4.544550] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    4.544563] pci 0000:00:16.0:   bridge window [mem 0xff100000-0xff2fffff 64bit pref]
[    4.544586] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    4.544604] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    4.544617] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.544641] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    4.544659] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    4.544671] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.544695] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    4.544713] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    4.544726] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.544750] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    4.544768] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    4.544780] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.544804] pci 0000:00:16.5: PCI bridge to [bus 10]
[    4.544822] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    4.544834] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.544858] pci 0000:00:16.6: PCI bridge to [bus 11]
[    4.544877] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    4.544889] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.544913] pci 0000:00:16.7: PCI bridge to [bus 12]
[    4.544932] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    4.544944] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.544968] pci 0000:00:17.0: PCI bridge to [bus 13]
[    4.544986] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    4.544998] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.545022] pci 0000:00:17.1: PCI bridge to [bus 14]
[    4.545040] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    4.545053] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.545076] pci 0000:00:17.2: PCI bridge to [bus 15]
[    4.545095] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    4.545107] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.545131] pci 0000:00:17.3: PCI bridge to [bus 16]
[    4.545149] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    4.545162] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.545186] pci 0000:00:17.4: PCI bridge to [bus 17]
[    4.545204] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    4.545216] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.545240] pci 0000:00:17.5: PCI bridge to [bus 18]
[    4.545262] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    4.545274] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.545298] pci 0000:00:17.6: PCI bridge to [bus 19]
[    4.545305] pci 0000:00:17.6:   bridge window [io  0xf000-0xffff]
[    4.545323] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    4.545336] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.545360] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    4.545366] pci 0000:00:17.7:   bridge window [io  0xe000-0xefff]
[    4.545384] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    4.545397] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.545420] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    4.545427] pci 0000:00:18.0:   bridge window [io  0xd000-0xdfff]
[    4.545445] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    4.545458] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.545482] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    4.545488] pci 0000:00:18.1:   bridge window [io  0xc000-0xcfff]
[    4.545506] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    4.545518] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.545542] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    4.545549] pci 0000:00:18.2:   bridge window [io  0xb000-0xbfff]
[    4.545567] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    4.545579] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.545603] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    4.545610] pci 0000:00:18.3:   bridge window [io  0xa000-0xafff]
[    4.545628] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    4.545640] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.545664] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    4.545671] pci 0000:00:18.4:   bridge window [io  0x9000-0x9fff]
[    4.545689] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    4.545701] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.545725] pci 0000:00:18.5: PCI bridge to [bus 20]
[    4.545731] pci 0000:00:18.5:   bridge window [io  0x8000-0x8fff]
[    4.545750] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    4.545762] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.545786] pci 0000:00:18.6: PCI bridge to [bus 21]
[    4.545793] pci 0000:00:18.6:   bridge window [io  0x7000-0x7fff]
[    4.545811] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    4.545823] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.545847] pci 0000:00:18.7: PCI bridge to [bus 22]
[    4.545854] pci 0000:00:18.7:   bridge window [io  0x6000-0x6fff]
[    4.545872] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    4.545884] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.545909] pci_bus 0000:00: resource 4 [io  0x0d00-0xffff window]
[    4.545910] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    4.545910] pci_bus 0000:00: resource 6 [mem 0xfef00000-0xffdfffff window]
[    4.545911] pci_bus 0000:00: resource 7 [mem 0xfed45000-0xfedfffff window]
[    4.545911] pci_bus 0000:00: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    4.545912] pci_bus 0000:00: resource 9 [mem 0xfa300000-0xfebfffff window]
[    4.545913] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    4.545913] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xefffffff window]
[    4.545914] pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
[    4.545915] pci_bus 0000:00: resource 13 [mem 0x000c4000-0x000c7fff window]
[    4.545915] pci_bus 0000:00: resource 14 [mem 0x000c8000-0x000cbfff window]
[    4.545916] pci_bus 0000:00: resource 15 [mem 0x000d4000-0x000d7fff window]
[    4.545916] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000dbfff window]
[    4.545917] pci_bus 0000:00: resource 17 [mem 0x000e4000-0x000e7fff window]
[    4.545918] pci_bus 0000:00: resource 18 [mem 0x000e8000-0x000ebfff window]
[    4.545918] pci_bus 0000:00: resource 19 [mem 0x000ec000-0x000effff window]
[    4.545919] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    4.545920] pci_bus 0000:02: resource 1 [mem 0xfc000000-0xfc9fffff]
[    4.545920] pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.545921] pci_bus 0000:02: resource 4 [io  0x0d00-0xffff window]
[    4.545922] pci_bus 0000:02: resource 5 [io  0x0000-0x0cf7 window]
[    4.545922] pci_bus 0000:02: resource 6 [mem 0xfef00000-0xffdfffff window]
[    4.545923] pci_bus 0000:02: resource 7 [mem 0xfed45000-0xfedfffff window]
[    4.545923] pci_bus 0000:02: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    4.545924] pci_bus 0000:02: resource 9 [mem 0xfa300000-0xfebfffff window]
[    4.545924] pci_bus 0000:02: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    4.545925] pci_bus 0000:02: resource 11 [mem 0xc0000000-0xefffffff window]
[    4.545926] pci_bus 0000:02: resource 12 [mem 0x000a0000-0x000bffff window]
[    4.545926] pci_bus 0000:02: resource 13 [mem 0x000c4000-0x000c7fff window]
[    4.545927] pci_bus 0000:02: resource 14 [mem 0x000c8000-0x000cbfff window]
[    4.545927] pci_bus 0000:02: resource 15 [mem 0x000d4000-0x000d7fff window]
[    4.545928] pci_bus 0000:02: resource 16 [mem 0x000d8000-0x000dbfff window]
[    4.545929] pci_bus 0000:02: resource 17 [mem 0x000e4000-0x000e7fff window]
[    4.545929] pci_bus 0000:02: resource 18 [mem 0x000e8000-0x000ebfff window]
[    4.545930] pci_bus 0000:02: resource 19 [mem 0x000ec000-0x000effff window]
[    4.545931] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    4.545931] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    4.545932] pci_bus 0000:03: resource 2 [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.545933] pci_bus 0000:04: resource 1 [mem 0xfe900000-0xfe9fffff]
[    4.545933] pci_bus 0000:04: resource 2 [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.545934] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]
[    4.545935] pci_bus 0000:05: resource 2 [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.545935] pci_bus 0000:06: resource 1 [mem 0xfe700000-0xfe7fffff]
[    4.545936] pci_bus 0000:06: resource 2 [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.545937] pci_bus 0000:07: resource 1 [mem 0xfe600000-0xfe6fffff]
[    4.545937] pci_bus 0000:07: resource 2 [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.545938] pci_bus 0000:08: resource 1 [mem 0xfe500000-0xfe5fffff]
[    4.545939] pci_bus 0000:08: resource 2 [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.545940] pci_bus 0000:09: resource 1 [mem 0xfe400000-0xfe4fffff]
[    4.545940] pci_bus 0000:09: resource 2 [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.545941] pci_bus 0000:0a: resource 1 [mem 0xfe300000-0xfe3fffff]
[    4.545942] pci_bus 0000:0a: resource 2 [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.545942] pci_bus 0000:0b: resource 0 [io  0x3000-0x3fff]
[    4.545943] pci_bus 0000:0b: resource 1 [mem 0xfe200000-0xfe2fffff]
[    4.545943] pci_bus 0000:0b: resource 2 [mem 0xff100000-0xff2fffff 64bit pref]
[    4.545944] pci_bus 0000:0c: resource 1 [mem 0xfe100000-0xfe1fffff]
[    4.545945] pci_bus 0000:0c: resource 2 [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.545946] pci_bus 0000:0d: resource 1 [mem 0xfe000000-0xfe0fffff]
[    4.545946] pci_bus 0000:0d: resource 2 [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.545947] pci_bus 0000:0e: resource 1 [mem 0xfdf00000-0xfdffffff]
[    4.545947] pci_bus 0000:0e: resource 2 [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.545948] pci_bus 0000:0f: resource 1 [mem 0xfde00000-0xfdefffff]
[    4.545949] pci_bus 0000:0f: resource 2 [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.545950] pci_bus 0000:10: resource 1 [mem 0xfdd00000-0xfddfffff]
[    4.545950] pci_bus 0000:10: resource 2 [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.545951] pci_bus 0000:11: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    4.545952] pci_bus 0000:11: resource 2 [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.545953] pci_bus 0000:12: resource 1 [mem 0xfdb00000-0xfdbfffff]
[    4.545953] pci_bus 0000:12: resource 2 [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.545954] pci_bus 0000:13: resource 1 [mem 0xfda00000-0xfdafffff]
[    4.545954] pci_bus 0000:13: resource 2 [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.545955] pci_bus 0000:14: resource 1 [mem 0xfd900000-0xfd9fffff]
[    4.545956] pci_bus 0000:14: resource 2 [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.545957] pci_bus 0000:15: resource 1 [mem 0xfd800000-0xfd8fffff]
[    4.545957] pci_bus 0000:15: resource 2 [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.545958] pci_bus 0000:16: resource 1 [mem 0xfd700000-0xfd7fffff]
[    4.545958] pci_bus 0000:16: resource 2 [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.545959] pci_bus 0000:17: resource 1 [mem 0xfd600000-0xfd6fffff]
[    4.545960] pci_bus 0000:17: resource 2 [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.545961] pci_bus 0000:18: resource 1 [mem 0xfd500000-0xfd5fffff]
[    4.545961] pci_bus 0000:18: resource 2 [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.545962] pci_bus 0000:19: resource 0 [io  0xf000-0xffff]
[    4.545962] pci_bus 0000:19: resource 1 [mem 0xfd400000-0xfd4fffff]
[    4.545963] pci_bus 0000:19: resource 2 [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.545964] pci_bus 0000:1a: resource 0 [io  0xe000-0xefff]
[    4.545964] pci_bus 0000:1a: resource 1 [mem 0xfd300000-0xfd3fffff]
[    4.545965] pci_bus 0000:1a: resource 2 [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.545966] pci_bus 0000:1b: resource 0 [io  0xd000-0xdfff]
[    4.545966] pci_bus 0000:1b: resource 1 [mem 0xfd200000-0xfd2fffff]
[    4.545967] pci_bus 0000:1b: resource 2 [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.545968] pci_bus 0000:1c: resource 0 [io  0xc000-0xcfff]
[    4.545968] pci_bus 0000:1c: resource 1 [mem 0xfd100000-0xfd1fffff]
[    4.545969] pci_bus 0000:1c: resource 2 [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.545970] pci_bus 0000:1d: resource 0 [io  0xb000-0xbfff]
[    4.545970] pci_bus 0000:1d: resource 1 [mem 0xfd000000-0xfd0fffff]
[    4.545971] pci_bus 0000:1d: resource 2 [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.545971] pci_bus 0000:1e: resource 0 [io  0xa000-0xafff]
[    4.545972] pci_bus 0000:1e: resource 1 [mem 0xfcf00000-0xfcffffff]
[    4.545973] pci_bus 0000:1e: resource 2 [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.545973] pci_bus 0000:1f: resource 0 [io  0x9000-0x9fff]
[    4.545974] pci_bus 0000:1f: resource 1 [mem 0xfce00000-0xfcefffff]
[    4.545975] pci_bus 0000:1f: resource 2 [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.545975] pci_bus 0000:20: resource 0 [io  0x8000-0x8fff]
[    4.545976] pci_bus 0000:20: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    4.545976] pci_bus 0000:20: resource 2 [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.545977] pci_bus 0000:21: resource 0 [io  0x7000-0x7fff]
[    4.545978] pci_bus 0000:21: resource 1 [mem 0xfcc00000-0xfccfffff]
[    4.545978] pci_bus 0000:21: resource 2 [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.545979] pci_bus 0000:22: resource 0 [io  0x6000-0x6fff]
[    4.545980] pci_bus 0000:22: resource 1 [mem 0xfcb00000-0xfcbfffff]
[    4.545980] pci_bus 0000:22: resource 2 [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.546055] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    4.546121] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.546361] PCI: CLS 32 bytes, default 64
[    4.546394] Trying to unpack rootfs image as initramfs...
[    5.494475] Freeing initrd memory: 72676K
[    5.494479] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    5.494480] software IO TLB: mapped [mem 0x00000000bc000000-0x00000000c0000000] (64MB)
[    5.534200] Initialise system trusted keyrings
[    5.534206] Key type blacklist registered
[    5.534563] workingset: timestamp_bits=36 max_order=28 bucket_order=0
[    5.535509] zbud: loaded
[    5.538094] integrity: Platform Keyring initialized
[    5.546140] NET: Registered protocol family 38
[    5.546143] Key type asymmetric registered
[    5.546144] Asymmetric key parser 'x509' registered
[    5.546152] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    5.546715] io scheduler mq-deadline registered
[    5.546716] io scheduler kyber registered
[    5.546769] io scheduler bfq registered
[    5.549392] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    5.549887] pcieport 0000:00:15.0: PME: Signaling with IRQ 24
[    5.549969] pcieport 0000:00:15.0: pciehp: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.550795] pcieport 0000:00:15.1: PME: Signaling with IRQ 25
[    5.550866] pcieport 0000:00:15.1: pciehp: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.551676] pcieport 0000:00:15.2: PME: Signaling with IRQ 26
[    5.551747] pcieport 0000:00:15.2: pciehp: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.552551] pcieport 0000:00:15.3: PME: Signaling with IRQ 27
[    5.552622] pcieport 0000:00:15.3: pciehp: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.553434] pcieport 0000:00:15.4: PME: Signaling with IRQ 28
[    5.553504] pcieport 0000:00:15.4: pciehp: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.554321] pcieport 0000:00:15.5: PME: Signaling with IRQ 29
[    5.554391] pcieport 0000:00:15.5: pciehp: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.555305] pcieport 0000:00:15.6: PME: Signaling with IRQ 30
[    5.555374] pcieport 0000:00:15.6: pciehp: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.556159] pcieport 0000:00:15.7: PME: Signaling with IRQ 31
[    5.556229] pcieport 0000:00:15.7: pciehp: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.557034] pcieport 0000:00:16.0: PME: Signaling with IRQ 32
[    5.557102] pcieport 0000:00:16.0: pciehp: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.557875] pcieport 0000:00:16.1: PME: Signaling with IRQ 33
[    5.557943] pcieport 0000:00:16.1: pciehp: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.558732] pcieport 0000:00:16.2: PME: Signaling with IRQ 34
[    5.558800] pcieport 0000:00:16.2: pciehp: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.559557] pcieport 0000:00:16.3: PME: Signaling with IRQ 35
[    5.559625] pcieport 0000:00:16.3: pciehp: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.560422] pcieport 0000:00:16.4: PME: Signaling with IRQ 36
[    5.560490] pcieport 0000:00:16.4: pciehp: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.561278] pcieport 0000:00:16.5: PME: Signaling with IRQ 37
[    5.561347] pcieport 0000:00:16.5: pciehp: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.562199] pcieport 0000:00:16.6: PME: Signaling with IRQ 38
[    5.562275] pcieport 0000:00:16.6: pciehp: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.563068] pcieport 0000:00:16.7: PME: Signaling with IRQ 39
[    5.563136] pcieport 0000:00:16.7: pciehp: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.563926] pcieport 0000:00:17.0: PME: Signaling with IRQ 40
[    5.563993] pcieport 0000:00:17.0: pciehp: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.564742] pcieport 0000:00:17.1: PME: Signaling with IRQ 41
[    5.564812] pcieport 0000:00:17.1: pciehp: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.565604] pcieport 0000:00:17.2: PME: Signaling with IRQ 42
[    5.565675] pcieport 0000:00:17.2: pciehp: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.566463] pcieport 0000:00:17.3: PME: Signaling with IRQ 43
[    5.566533] pcieport 0000:00:17.3: pciehp: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.567297] pcieport 0000:00:17.4: PME: Signaling with IRQ 44
[    5.567367] pcieport 0000:00:17.4: pciehp: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.568237] pcieport 0000:00:17.5: PME: Signaling with IRQ 45
[    5.568314] pcieport 0000:00:17.5: pciehp: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.569108] pcieport 0000:00:17.6: PME: Signaling with IRQ 46
[    5.569179] pcieport 0000:00:17.6: pciehp: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.569995] pcieport 0000:00:17.7: PME: Signaling with IRQ 47
[    5.570063] pcieport 0000:00:17.7: pciehp: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.573053] pcieport 0000:00:18.0: PME: Signaling with IRQ 48
[    5.573116] pcieport 0000:00:18.0: pciehp: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.573803] pcieport 0000:00:18.1: PME: Signaling with IRQ 49
[    5.573857] pcieport 0000:00:18.1: pciehp: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.574466] pcieport 0000:00:18.2: PME: Signaling with IRQ 50
[    5.574520] pcieport 0000:00:18.2: pciehp: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.575194] pcieport 0000:00:18.3: PME: Signaling with IRQ 51
[    5.575269] pcieport 0000:00:18.3: pciehp: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.575935] pcieport 0000:00:18.4: PME: Signaling with IRQ 52
[    5.575991] pcieport 0000:00:18.4: pciehp: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.576646] pcieport 0000:00:18.5: PME: Signaling with IRQ 53
[    5.576701] pcieport 0000:00:18.5: pciehp: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.577362] pcieport 0000:00:18.6: PME: Signaling with IRQ 54
[    5.577417] pcieport 0000:00:18.6: pciehp: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.578065] pcieport 0000:00:18.7: PME: Signaling with IRQ 55
[    5.578120] pcieport 0000:00:18.7: pciehp: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.578554] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    5.578579] efifb: probing for efifb
[    5.578815] efifb: framebuffer at 0xf0000000, using 3072k, total 3072k
[    5.578816] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    5.578817] efifb: scrolling: redraw
[    5.578818] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    5.579361] Console: switching to colour frame buffer device 128x48
[    5.582248] fb0: EFI VGA frame buffer device
[    5.582263] intel_idle: Please enable MWAIT in BIOS SETUP
[    5.582546] ACPI: AC Adapter [ACAD] (on-line)
[    5.582619] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    5.582664] ACPI: Power Button [PWRF]
[    5.598683] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    5.599330] Non-volatile memory driver v1.3
[    5.611106] rdac: device handler registered
[    5.611218] hp_sw: device handler registered
[    5.611219] emc: device handler registered
[    5.611818] alua: device handler registered
[    5.611914] libphy: Fixed MDIO Bus: probed
[    5.611988] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.611990] ehci-pci: EHCI PCI platform driver
[    5.612001] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.612003] ohci-pci: OHCI PCI platform driver
[    5.612012] uhci_hcd: USB Universal Host Controller Interface driver
[    5.612056] usbcore: registered new interface driver usbserial_generic
[    5.612060] usbserial: USB Serial support registered for generic
[    5.612103] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    5.614248] serio: i8042 KBD port at 0x60,0x64 irq 1
[    5.614252] serio: i8042 AUX port at 0x60,0x64 irq 12
[    5.614432] mousedev: PS/2 mouse device common for all mice
[    5.635017] rtc_cmos 00:01: registered as rtc0
[    5.635483] rtc_cmos 00:01: setting system clock to 2020-10-19T14:09:05 UTC (1603116545)
[    5.635524] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    5.635559] intel_pstate: CPU model not supported
[    5.635812] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    5.636536] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    5.636872] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    5.637055] EFI Variables Facility v0.08 2004-May-17
[    5.643291] hid: raw HID events driver (C) Jiri Kosina
[    5.643331] usbcore: registered new interface driver usbhid
[    5.643331] usbhid: USB HID core driver
[    5.643793] drop_monitor: Initializing network drop monitor service
[    5.643881] Initializing XFRM netlink socket
[    5.644005] NET: Registered protocol family 10
[    5.644838] Segment Routing with IPv6
[    5.644851] NET: Registered protocol family 17
[    5.644923] mpls_gso: MPLS GSO support
[    5.652389] IPI shorthand broadcast: enabled
[    5.652425] AVX2 version of gcm_enc/dec engaged.
[    5.652426] AES CTR mode by8 optimization enabled
[    5.668292] sched_clock: Marking stable (5658865903, 9417764)->(5865457555, -197173888)
[    5.669039] registered taskstats version 1
[    5.669057] Loading compiled-in X.509 certificates
[    5.695971] Loaded X.509 cert 'Build time autogenerated kernel key: 0cb8a19df3f6b289787301e8eaca88fd2a3053c8'
[    5.696055] zswap: loaded using pool lzo/zbud
[    5.700864] Key type encrypted registered
[    5.701385] integrity: Loading X.509 certificate: UEFI:db
[    5.701511] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    5.701513] integrity: Loading X.509 certificate: UEFI:db
[    5.701824] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    5.701824] integrity: Loading X.509 certificate: UEFI:db
[    5.701840] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    5.701841] integrity: Loading X.509 certificate: UEFI:db
[    5.701856] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    5.702532] integrity: Loading X.509 certificate: UEFI:MokListRT
[    5.702954] integrity: Loaded X.509 cert 'Red Hat Secure Boot (CA key 1): 4016841644ce3a810408050766e8f8a29c65f85c'
[    5.702956] ima: No TPM chip found, activating TPM-bypass!
[    5.702960] ima: Allocated hash algorithm: sha1
[    5.702966] ima: No architecture policies found
[    5.703002] evm: Initialising EVM extended attributes:
[    5.703002] evm: security.selinux
[    5.703003] evm: security.ima
[    5.703004] evm: security.capability
[    5.703004] evm: HMAC attrs: 0x1
[    5.709954] Freeing unused decrypted memory: 2036K
[    5.710795] Freeing unused kernel image (initmem) memory: 2352K
[    5.715316] Write protecting the kernel read-only data: 20480k
[    5.716483] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    5.717386] Freeing unused kernel image (rodata/data gap) memory: 1768K
[    5.717512] Run /init as init process
[    5.717513]   with arguments:
[    5.717514]     /init
[    5.717515]     rhgb
[    5.717515]   with environment:
[    5.717516]     HOME=/
[    5.717517]     TERM=linux
[    5.717518]     BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0
[    5.717518]     crashkernel=auto
[    5.742666] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    5.742690] systemd[1]: Detected virtualization vmware.
[    5.742693] systemd[1]: Detected architecture x86-64.
[    5.742695] systemd[1]: Running in initial RAM disk.
[    5.754374] systemd[1]: Set hostname to <localhost.localdomain>.
[    5.805516] random: systemd: uninitialized urandom read (16 bytes read)
[    5.805588] systemd[1]: Listening on udev Control Socket.
[    5.805623] random: systemd: uninitialized urandom read (16 bytes read)
[    5.805629] systemd[1]: Reached target Timers.
[    5.805636] random: systemd: uninitialized urandom read (16 bytes read)
[    5.805640] systemd[1]: Reached target Local File Systems.
[    5.805649] systemd[1]: Reached target Swap.
[    5.805726] systemd[1]: Listening on Journal Socket.
[    6.300911] VMware PVSCSI driver - version 1.0.7.0-k
[    6.301741] vmw_pvscsi: using 64bit dma
[    6.301904] vmw_pvscsi: max_id: 65
[    6.301905] vmw_pvscsi: setting ring_pages to 32
[    6.303318] vmw_pvscsi: enabling reqCallThreshold
[    6.305698] vmw_pvscsi: driver-based request coalescing enabled
[    6.305699] vmw_pvscsi: using MSI-X
[    6.305816] scsi host0: VMware PVSCSI storage adapter rev 2, req/cmp/msg rings: 32/32/1 pages, cmd_per_lun=254
[    6.306107] VMware vmxnet3 virtual NIC driver - version 1.5.0.0-k-NAPI
[    6.306150] vmxnet3 0000:0b:00.0: # of Tx queues : 8, # of Rx queues : 8
[    6.306191] vmxnet3 0000:0b:00.0: enabling device (0000 -> 0003)
[    6.306196] vmw_pvscsi 0000:03:00.0: VMware PVSCSI rev 2 host #0
[    6.311696] scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     2.0  PQ: 0 ANSI: 6
[    6.311976] vmxnet3 0000:0b:00.0 eth0: NIC Link is Up 10000 Mbps
[    6.322685] libata version 3.00 loaded.
[    6.326417] ata_piix 0000:00:07.1: version 2.13
[    6.327398] scsi host1: ata_piix
[    6.327607] scsi host2: ata_piix
[    6.327638] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x2050 irq 14
[    6.327639] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x2058 irq 15
[    6.508875] tsc: Refined TSC clocksource calibration: 2095.078 MHz
[    6.508981] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e3306b9ada, max_idle_ns: 440795224413 ns
[    6.509240] clocksource: Switched to clocksource tsc
[    6.526211] [drm] DMA map mode: Caching DMA mappings.
[    6.526485] [drm] Capabilities:
[    6.526485] [drm]   Rect copy.
[    6.526486] [drm]   Cursor.
[    6.526486] [drm]   Cursor bypass.
[    6.526487] [drm]   Cursor bypass 2.
[    6.526487] [drm]   8bit emulation.
[    6.526488] [drm]   Alpha cursor.
[    6.526488] [drm]   Extended Fifo.
[    6.526489] [drm]   Multimon.
[    6.526490] [drm]   Pitchlock.
[    6.526491] [drm]   Irq mask.
[    6.526491] [drm]   Display Topology.
[    6.526492] [drm]   GMR.
[    6.526493] [drm]   Traces.
[    6.526493] [drm]   GMR2.
[    6.526494] [drm]   Screen Object 2.
[    6.526494] [drm]   Command Buffers.
[    6.526495] [drm]   Command Buffers 2.
[    6.526496] [drm]   Guest Backed Resources.
[    6.526497] [drm]   DX Features.
[    6.526497] [drm]   HP Command Queue.
[    6.526498] [drm] Capabilities2:
[    6.526499] [drm]   Grow oTable.
[    6.526499] [drm]   IntraSurface copy.
[    6.526501] [drm] Max GMR ids is 64
[    6.526502] [drm] Max number of GMR pages is 65536
[    6.526503] [drm] Max dedicated hypervisor surface memory is 0 kiB
[    6.526504] [drm] Maximum display memory size is 8192 kiB
[    6.526506] [drm] VRAM at 0xf0000000 size is 8192 kiB
[    6.526506] [drm] MMIO at 0xfb800000 size is 256 kiB
[    6.526555] vmwgfx 0000:00:0f.0: BAR 1: can't reserve [mem 0xf0000000-0xf7ffffff pref]
[    6.526556] [drm] It appears like vesafb is loaded. Ignore above error if any.
[    6.527816] [TTM] Zone  kernel: Available graphics memory: 528423290 KiB
[    6.527817] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    6.527818] [TTM] Initializing pool allocator
[    6.527822] [TTM] Initializing DMA pool allocator
[    6.530822] [drm] Screen Target Display device initialized
[    6.530860] [drm] width 1024
[    6.530865] [drm] height 768
[    6.530871] [drm] bpp 32
[    6.535246] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
[    6.536124] [drm] Using command buffers with DMA pool.
[    6.536132] [drm] Atomic: yes.
[    6.542738] checking generic (f0000000 300000) vs hw (f0000000 800000)
[    6.542740] fb0: switching to svgadrmfb from EFI VGA
[    6.542877] Console: switching to colour dummy device 80x25
[    6.543098] fbcon: svgadrmfb (fb0) is primary device
[    6.544152] Console: switching to colour frame buffer device 128x48
[    6.549957] [drm] Initialized vmwgfx 2.18.0 20200114 for 0000:00:0f.0 on minor 0
[    6.640693] vmxnet3 0000:0b:00.0 ens192: renamed from eth0
[    6.655460] sd 0:0:0:0: [sda] 41943040 512-byte logical blocks: (21.5 GB/20.0 GiB)
[    6.655476] sd 0:0:0:0: [sda] Write Protect is off
[    6.655477] sd 0:0:0:0: [sda] Mode Sense: 61 00 00 00
[    6.655492] sd 0:0:0:0: [sda] Cache data unavailable
[    6.655493] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    6.667972]  sda: sda1 sda2
[    6.668998] sd 0:0:0:0: [sda] Attached SCSI disk
[    6.798194] random: fast init done
[    6.930735] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    7.049332] random: crng init done
[    7.049333] random: 7 urandom warning(s) missed due to ratelimiting
[    7.235375] systemd-journald[776]: Received SIGTERM from PID 1 (systemd).
[    7.262587] printk: systemd: 22 output lines suppressed due to ratelimiting
[    7.309343] SELinux:  Runtime disable is deprecated, use selinux=0 on the kernel cmdline.
[    7.309368] SELinux:  Disabled at runtime.
[    7.342342] audit: type=1404 audit(1603116547.207:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1
[    7.361656] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    7.361677] systemd[1]: Detected virtualization vmware.
[    7.361681] systemd[1]: Detected architecture x86-64.
[    7.362285] systemd[1]: Set hostname to <localhost.localdomain>.
[    7.406026] systemd[1]: Configuration file /usr/lib/systemd/system/rc-local.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    7.453683] systemd[1]: Stopped Switch Root.
[    7.453878] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[    7.453921] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    7.453929] systemd[1]: Stopped Journal Service.
[    7.454667] systemd[1]: Starting Journal Service...
[    7.473424] EXT4-fs (sda2): re-mounted. Opts: (null)
[    7.669193] systemd-journald[4314]: Received request to flush runtime journal from PID 1
[    7.806696] vmw_vmci 0000:00:07.7: enabling device (0000 -> 0003)
[    7.808993] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x12000, irq 16
[    7.809074] vmw_vmci 0000:00:07.7: Using capabilities 0x1c
[    7.809678] Guest personality initialized and is active
[    7.809825] VMCI host device registered (name=vmci, major=10, minor=61)
[    7.809826] Initialized host personality
[    7.824105] piix4_smbus 0000:00:07.3: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
[    7.834174] NET: Registered protocol family 40
[    7.846315] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    7.919542] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    8.064630] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    8.080153] vmxnet3 0000:0b:00.0 ens192: intr type 3, mode 0, 9 vectors allocated
[    8.081097] vmxnet3 0000:0b:00.0 ens192: NIC Link is Up 10000 Mbps

[-- Attachment #4: vanilla_dmesg_memblock_debug.log --]
[-- Type: application/octet-stream, Size: 195165 bytes --]

[    0.000000] Linux version 5.9.0 (root@w1-hs1-mwenig-dhcp-175.eng.vmware.com) (gcc (GCC) 8.3.1 20190507 (Red Hat 8.3.1-4), GNU ld version 2.30-58.el8) #1 SMP Mon Oct 19 07:32:15 EDT 2020
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet memblock=debug
[    0.000000] Disabled fast string operations
[    0.000000] ------------[ cut here ]------------
[    0.000000] XSAVE consistency problem, dumping leaves
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/fpu/xstate.c:657 fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.9.0 #1
[    0.000000] RIP: 0010:fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Code: 85 7c fd ff ff 44 3b 35 d5 45 22 00 74 2c 80 3d b0 03 bd ff 00 75 15 48 c7 c7 80 1e 6e 95 c6 05 a0 03 bd ff 01 e8 9a 35 b8 fe <0f> 0b 83 3d 9e 39 69 ff 00 74 05 e8 6b f0 b7 fe 48 8b 35 90 3e c0
[    0.000000] RSP: 0000:ffffffff95a03e60 EFLAGS: 00010086 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: 0000000000000a88 RCX: 0000000000000000
[    0.000000] RDX: ffffffff95a03c70 RSI: 00000000ffff7fff RDI: ffffffff96623e8c
[    0.000000] RBP: 0000000000000010 R08: 0000000000000000 R09: c0000000ffff7fff
[    0.000000] R10: 0000000000000001 R11: ffffffff95a03c68 R12: 0000000000000a88
[    0.000000] R13: 0000000000000008 R14: 0000000000000988 R15: 0000000000000001
[    0.000000] FS:  0000000000000000(0000) GS:ffffffff96357000(0000) knlGS:0000000000000000
[    0.000000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: ffff88800e0b0000 CR3: 000000cad8fee000 CR4: 00000000000406a0
[    0.000000] Call Trace:
[    0.000000]  ? 0xffffffff94600000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xb8/0xbb
[    0.000000] random: get_random_bytes called from print_oops_end_marker+0x26/0x40 with crng_init=0
[    0.000000] ---[ end trace 6be75c488a775129 ]---
[    0.000000] CPUID[0d, 00]: eax=000002e7 ebx=00000a88 ecx=00000a88 edx=00000000
[    0.000000] CPUID[0d, 01]: eax=0000000f ebx=00000a88 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 02]: eax=00000100 ebx=00000240 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 03]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 04]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 05]: eax=00000040 ebx=00000440 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 06]: eax=00000200 ebx=00000480 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 07]: eax=00000400 ebx=00000680 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 08]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 09]: eax=00000008 ebx=00000a80 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0d]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0e]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0f]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 10]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 11]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 12]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 13]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 14]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 15]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 16]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 17]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 18]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 19]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2696 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000ef23fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] memblock_reserve: [0x000000000e0a0018-0x000000000e0a0767] efi_memblock_x86_reserve_range+0x15b/0x184
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] memblock_reserve: [0x000000000e0a6018-0x000000000e0ae057] setup_arch+0x3e4/0xc9b
[    0.000000] memblock_reserve: [0x000000000e0a3018-0x000000000e0a5057] setup_arch+0x3e4/0xc9b
[    0.000000] memblock_reserve: [0x000000000e0a1018-0x000000000e0a2857] setup_arch+0x3e4/0xc9b
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000e0a1017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a1018-0x000000000e0a2857] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a2858-0x000000000e0a3017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a3018-0x000000000e0a5057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a5058-0x000000000e0a6017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a6018-0x000000000e0ae057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0ae058-0x000000000ef23fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] efi: EFI v2.31 by VMware, Inc.
[    0.000000] efi: SMBIOS=0xef42000 ACPI 2.0=0xff66000 MEMATTR=0xfda1018 
[    0.000000] memblock_reserve: [0x000000000fda1018-0x000000000fda14d7] efi_memattr_init+0x75/0x8f
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.000000] vmware: hypercall mode: 0x02
[    0.000000] Hypervisor detected: VMware
[    0.000000] vmware: TSC freq read from hypervisor : 2095.078 MHz
[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[    0.000000] vmware: using clock offset of 7927506498 ns
[    0.000011] tsc: Detected 2095.078 MHz processor
[    0.002041] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.002043] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.002048] last_pfn = 0x10340000 max_arch_pfn = 0x400000000
[    0.002086] MTRR default type: uncachable
[    0.002086] MTRR fixed ranges enabled:
[    0.002087]   00000-9FFFF write-back
[    0.002088]   A0000-FFFFF uncachable
[    0.002088] MTRR variable ranges enabled:
[    0.002089]   0 base 000000000000 mask 1E0000000000 write-back
[    0.002090]   1 base 0000C0000000 mask 1FFFC0000000 uncachable
[    0.002090]   2 disabled
[    0.002091]   3 disabled
[    0.002091]   4 disabled
[    0.002092]   5 disabled
[    0.002092]   6 disabled
[    0.002092]   7 disabled
[    0.002104] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002125] total RAM covered: 2096128M
[    0.002177]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002178]  gran_size: 64K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002179]  gran_size: 64K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002180]  gran_size: 64K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002180]  gran_size: 64K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002181]  gran_size: 64K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002182]  gran_size: 64K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002183]  gran_size: 64K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002184]  gran_size: 64K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002185]  gran_size: 64K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002185]  gran_size: 64K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002186]  gran_size: 64K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002187]  gran_size: 64K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002188]  gran_size: 64K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002189]  gran_size: 64K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002190]  gran_size: 64K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002191]  gran_size: 128K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002192]  gran_size: 128K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002193]  gran_size: 128K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002193]  gran_size: 128K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002194]  gran_size: 128K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002195]  gran_size: 128K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002196]  gran_size: 128K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002197]  gran_size: 128K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002197]  gran_size: 128K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002198]  gran_size: 128K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002199]  gran_size: 128K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002200]  gran_size: 128K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002201]  gran_size: 128K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002201]  gran_size: 128K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002202]  gran_size: 128K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002203]  gran_size: 256K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002204]  gran_size: 256K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002205]  gran_size: 256K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002205]  gran_size: 256K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002206]  gran_size: 256K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002207]  gran_size: 256K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002208]  gran_size: 256K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002209]  gran_size: 256K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002209]  gran_size: 256K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002210]  gran_size: 256K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002211]  gran_size: 256K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002212]  gran_size: 256K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002213]  gran_size: 256K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002213]  gran_size: 256K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002214]  gran_size: 512K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002215]  gran_size: 512K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002216]  gran_size: 512K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002216]  gran_size: 512K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002217]  gran_size: 512K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002218]  gran_size: 512K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002219]  gran_size: 512K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002220]  gran_size: 512K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002220]  gran_size: 512K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002221]  gran_size: 512K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002222]  gran_size: 512K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002223]  gran_size: 512K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002224]  gran_size: 512K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002225]  gran_size: 1M 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002225]  gran_size: 1M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002226]  gran_size: 1M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002227]  gran_size: 1M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002228]  gran_size: 1M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002229]  gran_size: 1M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002229]  gran_size: 1M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002230]  gran_size: 1M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002231]  gran_size: 1M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002232]  gran_size: 1M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002233]  gran_size: 1M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002233]  gran_size: 1M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002234]  gran_size: 2M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002235]  gran_size: 2M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002236]  gran_size: 2M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002237]  gran_size: 2M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002237]  gran_size: 2M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002238]  gran_size: 2M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002239]  gran_size: 2M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002240]  gran_size: 2M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002241]  gran_size: 2M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002241]  gran_size: 2M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002242]  gran_size: 2M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002243]  gran_size: 4M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002244]  gran_size: 4M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002245]  gran_size: 4M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002245]  gran_size: 4M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002246]  gran_size: 4M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002247]  gran_size: 4M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002248]  gran_size: 4M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002249]  gran_size: 4M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002249]  gran_size: 4M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002250]  gran_size: 4M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002251]  gran_size: 8M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002252]  gran_size: 8M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002252]  gran_size: 8M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002253]  gran_size: 8M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002254]  gran_size: 8M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002255]  gran_size: 8M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002256]  gran_size: 8M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002256]  gran_size: 8M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002257]  gran_size: 8M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002258]  gran_size: 16M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002259]  gran_size: 16M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002260]  gran_size: 16M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002261]  gran_size: 16M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002261]  gran_size: 16M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002262]  gran_size: 16M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002263]  gran_size: 16M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002268]  gran_size: 16M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002269]  gran_size: 32M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002270]  gran_size: 32M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002271]  gran_size: 32M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002272]  gran_size: 32M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002273]  gran_size: 32M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002274]  gran_size: 32M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002274]  gran_size: 32M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002275]  gran_size: 64M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002276]  gran_size: 64M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002277]  gran_size: 64M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002277]  gran_size: 64M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002278]  gran_size: 64M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002279]  gran_size: 64M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002280]  gran_size: 128M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002281]  gran_size: 128M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002282]  gran_size: 128M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002282]  gran_size: 128M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002283]  gran_size: 128M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002284]  gran_size: 256M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002285]  gran_size: 256M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002286]  gran_size: 256M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002286]  gran_size: 256M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002287]  gran_size: 512M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002288]  gran_size: 512M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002289]  gran_size: 512M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002290]  gran_size: 1G 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002290]  gran_size: 1G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002291]  gran_size: 2G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1537G
[    0.002292] mtrr_cleanup: can not find optimal value
[    0.002292] please specify mtrr_gran_size/mtrr_chunk_size
[    0.002304] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.002309] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
[    0.007599] memblock_reserve: [0x000000cad9800000-0x000000cad980efff] setup_arch+0x629/0xc9b
[    0.007602] memblock_add: [0x0000000000001000-0x000000000009ffff] e820__memblock_setup+0x65/0x7d
[    0.007603] memblock_add: [0x0000000000100000-0x000000000e0a1017] e820__memblock_setup+0x65/0x7d
[    0.007605] memblock_add: [0x000000000e0a1018-0x000000000e0a2857] e820__memblock_setup+0x65/0x7d
[    0.007606] memblock_add: [0x000000000e0a2858-0x000000000e0a3017] e820__memblock_setup+0x65/0x7d
[    0.007607] memblock_add: [0x000000000e0a3018-0x000000000e0a5057] e820__memblock_setup+0x65/0x7d
[    0.007608] memblock_add: [0x000000000e0a5058-0x000000000e0a6017] e820__memblock_setup+0x65/0x7d
[    0.007609] memblock_add: [0x000000000e0a6018-0x000000000e0ae057] e820__memblock_setup+0x65/0x7d
[    0.007610] memblock_add: [0x000000000e0ae058-0x000000000ef23fff] e820__memblock_setup+0x65/0x7d
[    0.007611] memblock_add: [0x000000000ef2d000-0x000000000ef3bfff] e820__memblock_setup+0x65/0x7d
[    0.007613] memblock_add: [0x000000000ef48000-0x000000000ef60fff] e820__memblock_setup+0x65/0x7d
[    0.007614] memblock_add: [0x000000000ef66000-0x000000000fee6fff] e820__memblock_setup+0x65/0x7d
[    0.007615] memblock_add: [0x000000000ff77000-0x00000000bfffffff] e820__memblock_setup+0x65/0x7d
[    0.007616] memblock_add: [0x0000000100000000-0x000000fcffffffff] e820__memblock_setup+0x65/0x7d
[    0.007618] memblock_add: [0x0000010000000000-0x000001033fffffff] e820__memblock_setup+0x65/0x7d
[    0.007618] MEMBLOCK configuration:
[    0.007619]  memory size = 0x000000ffffef5000 reserved size = 0x0000000006d134d0
[    0.007620]  memory.cnt  = 0x8
[    0.007621]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes flags: 0x0
[    0.007621]  memory[0x1]	[0x0000000000100000-0x000000000ef23fff], 0x000000000ee24000 bytes flags: 0x0
[    0.007622]  memory[0x2]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes flags: 0x0
[    0.007623]  memory[0x3]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes flags: 0x0
[    0.007623]  memory[0x4]	[0x000000000ef66000-0x000000000fee6fff], 0x0000000000f81000 bytes flags: 0x0
[    0.007624]  memory[0x5]	[0x000000000ff77000-0x00000000bfffffff], 0x00000000b0089000 bytes flags: 0x0
[    0.007625]  memory[0x6]	[0x0000000100000000-0x000000fcffffffff], 0x000000fc00000000 bytes flags: 0x0
[    0.007625]  memory[0x7]	[0x0000010000000000-0x000001033fffffff], 0x0000000340000000 bytes flags: 0x0
[    0.007626]  reserved.cnt  = 0x8
[    0.007627]  reserved[0x0]	[0x0000000000000000-0x0000000000000fff], 0x0000000000001000 bytes flags: 0x0
[    0.007627]  reserved[0x1]	[0x0000000006291000-0x000000000a987fff], 0x00000000046f7000 bytes flags: 0x0
[    0.007628]  reserved[0x2]	[0x000000000e0a0018-0x000000000e0a0767], 0x0000000000000750 bytes flags: 0x0
[    0.007628]  reserved[0x3]	[0x000000000e0a1018-0x000000000e0a2857], 0x0000000000001840 bytes flags: 0x0
[    0.007629]  reserved[0x4]	[0x000000000e0a3018-0x000000000e0a5057], 0x0000000000002040 bytes flags: 0x0
[    0.007630]  reserved[0x5]	[0x000000000e0a6018-0x000000000e0ae057], 0x0000000000008040 bytes flags: 0x0
[    0.007630]  reserved[0x6]	[0x000000000fda1018-0x000000000fda14d7], 0x00000000000004c0 bytes flags: 0x0
[    0.007631]  reserved[0x7]	[0x000000cad7200000-0x000000cad980efff], 0x000000000260f000 bytes flags: 0x0
[    0.007632] memblock_reserve: [0x000000000009f000-0x00000000000fffff] setup_arch+0x64d/0xc9b
[    0.007634] memblock_reserve: [0x000000000df93000-0x000000000df93fff] efi_reserve_boot_services+0x85/0xd0
[    0.007636] memblock_reserve: [0x000000000e0b1000-0x000000000e0b1fff] efi_reserve_boot_services+0x85/0xd0
[    0.007637] memblock_reserve: [0x000000000e0b3000-0x000000000e749fff] efi_reserve_boot_services+0x85/0xd0
[    0.007638] memblock_reserve: [0x000000000e74a000-0x000000000e8dffff] efi_reserve_boot_services+0x85/0xd0
[    0.007639] memblock_reserve: [0x000000000e8e0000-0x000000000eee1fff] efi_reserve_boot_services+0x85/0xd0
[    0.007640] memblock_reserve: [0x000000000eee2000-0x000000000ef23fff] efi_reserve_boot_services+0x85/0xd0
[    0.007641] memblock_reserve: [0x000000000ef2d000-0x000000000ef3bfff] efi_reserve_boot_services+0x85/0xd0
[    0.007643] memblock_reserve: [0x000000000ef48000-0x000000000ef60fff] efi_reserve_boot_services+0x85/0xd0
[    0.007644] memblock_reserve: [0x000000000ef66000-0x000000000ef8ffff] efi_reserve_boot_services+0x85/0xd0
[    0.007645] memblock_reserve: [0x000000000fdf7000-0x000000000fee6fff] efi_reserve_boot_services+0x85/0xd0
[    0.007646] memblock_reserve: [0x000000000ff77000-0x000000000ffbefff] efi_reserve_boot_services+0x85/0xd0
[    0.007647] memblock_reserve: [0x000000000ffbf000-0x000000000fffffff] efi_reserve_boot_services+0x85/0xd0
[    0.007650] memblock_reserve: [0x0000000000099000-0x000000000009efff] reserve_real_mode+0x6f/0x88
[    0.007653] memblock_reserve: [0x0000000000000000-0x00000000000fffff] crash_reserve_low_1M+0x2c/0x39
[    0.007653] kexec: Reserving the low 1M of memory for crashkernel
[    0.007669] memblock_reserve: [0x0000000000000000-0x000000000000ffff] setup_arch+0x692/0xc9b
[    0.007675] Using GB pages for direct mapping
[    0.008065] Secure boot disabled
[    0.008066] RAMDISK: [mem 0x06291000-0x0a987fff]
[    0.008078] ACPI: Early table checksum verification disabled
[    0.008080] ACPI: RSDP 0x000000000FF66000 000024 (v02 VMWARE)
[    0.008083] ACPI: XSDT 0x000000000FF66064 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.008087] ACPI: SRAT 0x000000000FF660C0 000660 (v03 VMWARE EFISRAT  06040001 VMW  000007CE)
[    0.008090] ACPI: FACP 0x000000000FF7252C 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.008094] ACPI: DSDT 0x000000000FF66720 00BE0C (v01 PTLTD  Custom   00000000 INTL 20130823)
[    0.008096] ACPI: FACS 0x000000000FF76000 000040
[    0.008097] ACPI: FACS 0x000000000FF76000 000040
[    0.008099] ACPI: APIC 0x000000000FF72694 0004DA (v03 VMWARE EFIAPIC  06040001 VMW  000007CE)
[    0.008101] ACPI: MCFG 0x000000000FF72B6E 00003C (v01 VMWARE EFIMCFG  06040001 VMW  000007CE)
[    0.008103] ACPI: HPET 0x000000000FF72BAA 000038 (v01 VMWARE VMW HPET 00000000 VMW  00000000)
[    0.008105] ACPI: WAET 0x000000000FF72BE2 000028 (v01 VMWARE VMW WAET 06040001 VMW  00000001)
[    0.008106] ACPI: WSMT 0x000000000FF72C0A 000028 (v01 VMWARE VMW WSMT 06040001 VMW  00000001)
[    0.008111] ACPI: Local APIC address 0xfee00000
[    0.008143] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.008144] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.008145] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.008146] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.008147] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.008147] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.008148] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.008149] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.008150] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.008151] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.008152] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.008153] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.008154] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.008155] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.008156] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.008157] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[    0.008158] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.008159] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.008160] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.008161] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.008161] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.008162] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.008163] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[    0.008164] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[    0.008165] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[    0.008166] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.008167] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.008168] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.008169] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.008170] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.008171] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[    0.008172] SRAT: PXM 1 -> APIC 0x3e -> Node 1
[    0.008173] SRAT: PXM 1 -> APIC 0x40 -> Node 1
[    0.008174] SRAT: PXM 1 -> APIC 0x42 -> Node 1
[    0.008175] SRAT: PXM 1 -> APIC 0x44 -> Node 1
[    0.008176] SRAT: PXM 1 -> APIC 0x46 -> Node 1
[    0.008176] SRAT: PXM 1 -> APIC 0x48 -> Node 1
[    0.008177] SRAT: PXM 1 -> APIC 0x4a -> Node 1
[    0.008178] SRAT: PXM 1 -> APIC 0x4c -> Node 1
[    0.008179] SRAT: PXM 1 -> APIC 0x4e -> Node 1
[    0.008180] SRAT: PXM 1 -> APIC 0x50 -> Node 1
[    0.008181] SRAT: PXM 1 -> APIC 0x52 -> Node 1
[    0.008182] SRAT: PXM 1 -> APIC 0x54 -> Node 1
[    0.008183] SRAT: PXM 1 -> APIC 0x56 -> Node 1
[    0.008184] SRAT: PXM 1 -> APIC 0x58 -> Node 1
[    0.008185] SRAT: PXM 1 -> APIC 0x5a -> Node 1
[    0.008186] SRAT: PXM 1 -> APIC 0x5c -> Node 1
[    0.008187] SRAT: PXM 1 -> APIC 0x5e -> Node 1
[    0.008188] SRAT: PXM 1 -> APIC 0x60 -> Node 1
[    0.008188] SRAT: PXM 1 -> APIC 0x62 -> Node 1
[    0.008189] SRAT: PXM 1 -> APIC 0x64 -> Node 1
[    0.008190] SRAT: PXM 1 -> APIC 0x66 -> Node 1
[    0.008191] SRAT: PXM 1 -> APIC 0x68 -> Node 1
[    0.008192] SRAT: PXM 1 -> APIC 0x6a -> Node 1
[    0.008193] SRAT: PXM 1 -> APIC 0x6c -> Node 1
[    0.008194] SRAT: PXM 1 -> APIC 0x6e -> Node 1
[    0.008195] SRAT: PXM 2 -> APIC 0x70 -> Node 2
[    0.008196] SRAT: PXM 2 -> APIC 0x72 -> Node 2
[    0.008197] SRAT: PXM 2 -> APIC 0x74 -> Node 2
[    0.008198] SRAT: PXM 2 -> APIC 0x76 -> Node 2
[    0.008199] SRAT: PXM 2 -> APIC 0x78 -> Node 2
[    0.008200] SRAT: PXM 2 -> APIC 0x7a -> Node 2
[    0.008201] SRAT: PXM 2 -> APIC 0x7c -> Node 2
[    0.008202] SRAT: PXM 2 -> APIC 0x7e -> Node 2
[    0.008203] SRAT: PXM 2 -> APIC 0x80 -> Node 2
[    0.008204] SRAT: PXM 2 -> APIC 0x82 -> Node 2
[    0.008204] SRAT: PXM 2 -> APIC 0x84 -> Node 2
[    0.008205] SRAT: PXM 2 -> APIC 0x86 -> Node 2
[    0.008206] SRAT: PXM 2 -> APIC 0x88 -> Node 2
[    0.008207] SRAT: PXM 2 -> APIC 0x8a -> Node 2
[    0.008208] SRAT: PXM 2 -> APIC 0x8c -> Node 2
[    0.008209] SRAT: PXM 2 -> APIC 0x8e -> Node 2
[    0.008210] SRAT: PXM 2 -> APIC 0x90 -> Node 2
[    0.008211] SRAT: PXM 2 -> APIC 0x92 -> Node 2
[    0.008212] SRAT: PXM 2 -> APIC 0x94 -> Node 2
[    0.008213] SRAT: PXM 2 -> APIC 0x96 -> Node 2
[    0.008214] SRAT: PXM 2 -> APIC 0x98 -> Node 2
[    0.008215] SRAT: PXM 2 -> APIC 0x9a -> Node 2
[    0.008216] SRAT: PXM 2 -> APIC 0x9c -> Node 2
[    0.008217] SRAT: PXM 2 -> APIC 0x9e -> Node 2
[    0.008218] SRAT: PXM 2 -> APIC 0xa0 -> Node 2
[    0.008219] SRAT: PXM 2 -> APIC 0xa2 -> Node 2
[    0.008220] SRAT: PXM 2 -> APIC 0xa4 -> Node 2
[    0.008221] SRAT: PXM 2 -> APIC 0xa6 -> Node 2
[    0.008224] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.008226] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[    0.008227] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x55ffffffff]
[    0.008228] ACPI: SRAT: Node 1 PXM 1 [mem 0x5600000000-0xaaffffffff]
[    0.008229] ACPI: SRAT: Node 2 PXM 2 [mem 0xab00000000-0xfcffffffff]
[    0.008231] ACPI: SRAT: Node 2 PXM 2 [mem 0x10000000000-0x1033fffffff]
[    0.008233] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xbfffffff] -> [mem 0x00000000-0xbfffffff]
[    0.008235] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x55ffffffff] -> [mem 0x00000000-0x55ffffffff]
[    0.008237] NUMA: Node 2 [mem 0xab00000000-0xfcffffffff] + [mem 0x10000000000-0x1033fffffff] -> [mem 0xab00000000-0x1033fffffff]
[    0.008247] memblock_reserve: [0x00000055fffd6000-0x00000055ffffffff] memblock_alloc_range_nid+0xad/0x11b
[    0.008247] NODE_DATA(0) allocated [mem 0x55fffd6000-0x55ffffffff]
[    0.008283] memblock_reserve: [0x000000aafffd6000-0x000000aaffffffff] memblock_alloc_range_nid+0xad/0x11b
[    0.008283] NODE_DATA(1) allocated [mem 0xaafffd6000-0xaaffffffff]
[    0.008337] memblock_reserve: [0x000001033ffd6000-0x000001033fffffff] memblock_alloc_range_nid+0xad/0x11b
[    0.008338] NODE_DATA(2) allocated [mem 0x1033ffd6000-0x1033fffffff]
[    0.008393] MEMBLOCK configuration:
[    0.008393]  memory size = 0x000000ffffef5000 reserved size = 0x0000000007ece4d0
[    0.008394]  memory.cnt  = 0xa
[    0.008395]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes on node 0 flags: 0x0
[    0.008395]  memory[0x1]	[0x0000000000100000-0x000000000ef23fff], 0x000000000ee24000 bytes on node 0 flags: 0x0
[    0.008396]  memory[0x2]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes on node 0 flags: 0x0
[    0.008397]  memory[0x3]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes on node 0 flags: 0x0
[    0.008398]  memory[0x4]	[0x000000000ef66000-0x000000000fee6fff], 0x0000000000f81000 bytes on node 0 flags: 0x0
[    0.008399]  memory[0x5]	[0x000000000ff77000-0x00000000bfffffff], 0x00000000b0089000 bytes on node 0 flags: 0x0
[    0.008399]  memory[0x6]	[0x0000000100000000-0x00000055ffffffff], 0x0000005500000000 bytes on node 0 flags: 0x0
[    0.008400]  memory[0x7]	[0x0000005600000000-0x000000aaffffffff], 0x0000005500000000 bytes on node 1 flags: 0x0
[    0.008401]  memory[0x8]	[0x000000ab00000000-0x000000fcffffffff], 0x0000005200000000 bytes on node 2 flags: 0x0
[    0.008402]  memory[0x9]	[0x0000010000000000-0x000001033fffffff], 0x0000000340000000 bytes on node 2 flags: 0x0
[    0.008402]  reserved.cnt  = 0x13
[    0.008403]  reserved[0x0]	[0x0000000000000000-0x00000000000fffff], 0x0000000000100000 bytes on node 0 flags: 0x0
[    0.008403]  reserved[0x1]	[0x0000000006291000-0x000000000a987fff], 0x00000000046f7000 bytes on node 0 flags: 0x0
[    0.008404]  reserved[0x2]	[0x000000000df93000-0x000000000df93fff], 0x0000000000001000 bytes on node 0 flags: 0x0
[    0.008405]  reserved[0x3]	[0x000000000e0a0018-0x000000000e0a0767], 0x0000000000000750 bytes on node 0 flags: 0x0
[    0.008405]  reserved[0x4]	[0x000000000e0a1018-0x000000000e0a2857], 0x0000000000001840 bytes on node 0 flags: 0x0
[    0.008406]  reserved[0x5]	[0x000000000e0a3018-0x000000000e0a5057], 0x0000000000002040 bytes on node 0 flags: 0x0
[    0.008407]  reserved[0x6]	[0x000000000e0a6018-0x000000000e0ae057], 0x0000000000008040 bytes on node 0 flags: 0x0
[    0.008407]  reserved[0x7]	[0x000000000e0b1000-0x000000000e0b1fff], 0x0000000000001000 bytes on node 0 flags: 0x0
[    0.008408]  reserved[0x8]	[0x000000000e0b3000-0x000000000ef23fff], 0x0000000000e71000 bytes on node 0 flags: 0x0
[    0.008409]  reserved[0x9]	[0x000000000ef2d000-0x000000000ef3bfff], 0x000000000000f000 bytes on node 0 flags: 0x0
[    0.008409]  reserved[0xa]	[0x000000000ef48000-0x000000000ef60fff], 0x0000000000019000 bytes on node 0 flags: 0x0
[    0.008410]  reserved[0xb]	[0x000000000ef66000-0x000000000ef8ffff], 0x000000000002a000 bytes on node 0 flags: 0x0
[    0.008411]  reserved[0xc]	[0x000000000fda1018-0x000000000fda14d7], 0x00000000000004c0 bytes on node 0 flags: 0x0
[    0.008412]  reserved[0xd]	[0x000000000fdf7000-0x000000000fee6fff], 0x00000000000f0000 bytes on node 0 flags: 0x0
[    0.008412]  reserved[0xe]	[0x000000000ff77000-0x000000000fffffff], 0x0000000000089000 bytes on node 0 flags: 0x0
[    0.008413]  reserved[0xf]	[0x00000055fffd6000-0x00000055ffffffff], 0x000000000002a000 bytes flags: 0x0
[    0.008414]  reserved[0x10]	[0x000000aafffd6000-0x000000aaffffffff], 0x000000000002a000 bytes flags: 0x0
[    0.008414]  reserved[0x11]	[0x000000cad7200000-0x000000cad980efff], 0x000000000260f000 bytes on node 2 flags: 0x0
[    0.008415]  reserved[0x12]	[0x000001033ffd6000-0x000001033fffffff], 0x000000000002a000 bytes flags: 0x0
[    0.008511] crashkernel: memory value expected
[    0.008514] memblock_alloc_try_nid: 16384 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_init+0xab/0x2cf
[    0.008515] memblock_reserve: [0x000001033ffd2000-0x000001033ffd5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008524] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008525] memblock_reserve: [0x00000055fffd5000-0x00000055fffd5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008529] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008530] memblock_reserve: [0x00000055fffd4000-0x00000055fffd4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008535] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008536] memblock_reserve: [0x00000055fffd3000-0x00000055fffd3fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008541] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008542] memblock_reserve: [0x00000055fffd2000-0x00000055fffd2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008547] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008548] memblock_reserve: [0x00000055fffd1000-0x00000055fffd1fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008554] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008555] memblock_reserve: [0x00000055fffd0000-0x00000055fffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008562] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008563] memblock_reserve: [0x00000055fffcf000-0x00000055fffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.008570] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008571] memblock_reserve: [0x00000055fffce000-0x00000055fffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.008579] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008580] memblock_reserve: [0x00000055fffcd000-0x00000055fffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.008588] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008589] memblock_reserve: [0x00000055fffcc000-0x00000055fffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.008597] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008598] memblock_reserve: [0x00000055fffcb000-0x00000055fffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.008607] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008608] memblock_reserve: [0x000000aafffd5000-0x000000aafffd5fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008619] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008620] memblock_reserve: [0x000000aafffd4000-0x000000aafffd4fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008631] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008632] memblock_reserve: [0x000000aafffd3000-0x000000aafffd3fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008643] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008644] memblock_reserve: [0x000000aafffd2000-0x000000aafffd2fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008656] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008657] memblock_reserve: [0x000000aafffd1000-0x000000aafffd1fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008669] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008670] memblock_reserve: [0x000000aafffd0000-0x000000aafffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008682] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008683] memblock_reserve: [0x000000aafffcf000-0x000000aafffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.008696] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008697] memblock_reserve: [0x000000aafffce000-0x000000aafffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.008710] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008711] memblock_reserve: [0x000000aafffcd000-0x000000aafffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.008725] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008726] memblock_reserve: [0x000000aafffcc000-0x000000aafffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.008742] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=1 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008743] memblock_reserve: [0x000000aafffcb000-0x000000aafffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.008758] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008759] memblock_reserve: [0x000001033ffd1000-0x000001033ffd1fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008774] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008775] memblock_reserve: [0x000001033ffd0000-0x000001033ffd0fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008792] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008793] memblock_reserve: [0x000001033ffcf000-0x000001033ffcffff] memblock_alloc_range_nid+0xad/0x11b
[    0.008810] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008811] memblock_reserve: [0x000001033ffce000-0x000001033ffcefff] memblock_alloc_range_nid+0xad/0x11b
[    0.008828] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008829] memblock_reserve: [0x000001033ffcd000-0x000001033ffcdfff] memblock_alloc_range_nid+0xad/0x11b
[    0.008846] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008847] memblock_reserve: [0x000001033ffcc000-0x000001033ffccfff] memblock_alloc_range_nid+0xad/0x11b
[    0.008865] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008866] memblock_reserve: [0x000001033ffcb000-0x000001033ffcbfff] memblock_alloc_range_nid+0xad/0x11b
[    0.008884] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008885] memblock_reserve: [0x000001033ffca000-0x000001033ffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.008904] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008905] memblock_reserve: [0x000001033ffc9000-0x000001033ffc9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008924] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008925] memblock_reserve: [0x000001033ffc8000-0x000001033ffc8fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008939] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=2 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x40/0x61
[    0.008939] memblock_reserve: [0x000001033ffc7000-0x000001033ffc7fff] memblock_alloc_range_nid+0xad/0x11b
[    0.008958] memblock_alloc_try_nid: 109760 bytes align=0x40 nid=0 from=0x00000055f8000000 max_addr=0x0000005600000000 sparse_init_nid+0x8f/0x412
[    0.008959] memblock_reserve: [0x00000055fffb0340-0x00000055fffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.008977] memblock_alloc_exact_nid_raw: 5754585088 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x412
[    0.008978] memblock_reserve: [0x00000054a8e00000-0x00000055ffdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.008981] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.008982] memblock_reserve: [0x00000055fffaf000-0x00000055fffaffff] memblock_alloc_range_nid+0xad/0x11b
[    0.008985] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.008986] memblock_reserve: [0x00000055fffae000-0x00000055fffaefff] memblock_alloc_range_nid+0xad/0x11b
[    0.009011] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009012] memblock_reserve: [0x00000055fffad000-0x00000055fffadfff] memblock_alloc_range_nid+0xad/0x11b
[    0.009037] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009038] memblock_reserve: [0x00000055fffac000-0x00000055fffacfff] memblock_alloc_range_nid+0xad/0x11b
[    0.009064] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009065] memblock_reserve: [0x00000055fffab000-0x00000055fffabfff] memblock_alloc_range_nid+0xad/0x11b
[    0.009090] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009091] memblock_reserve: [0x00000055fffaa000-0x00000055fffaafff] memblock_alloc_range_nid+0xad/0x11b
[    0.009117] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009118] memblock_reserve: [0x00000055fffa9000-0x00000055fffa9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.009137] memblock_alloc_try_nid: 108800 bytes align=0x40 nid=1 from=0x000000aaf8000000 max_addr=0x000000ab00000000 sparse_init_nid+0x8f/0x412
[    0.009138] memblock_reserve: [0x000000aafffb0700-0x000000aafffcafff] memblock_alloc_range_nid+0xad/0x11b
[    0.009169] memblock_alloc_exact_nid_raw: 5704253440 bytes align=0x200000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x412
[    0.009170] memblock_reserve: [0x000000a9abe00000-0x000000aaffdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.009186] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009187] memblock_reserve: [0x000000aafffaf000-0x000000aafffaffff] memblock_alloc_range_nid+0xad/0x11b
[    0.009213] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009214] memblock_reserve: [0x000000aafffae000-0x000000aafffaefff] memblock_alloc_range_nid+0xad/0x11b
[    0.009241] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009242] memblock_reserve: [0x000000aafffad000-0x000000aafffadfff] memblock_alloc_range_nid+0xad/0x11b
[    0.009268] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009269] memblock_reserve: [0x000000aafffac000-0x000000aafffacfff] memblock_alloc_range_nid+0xad/0x11b
[    0.009296] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009297] memblock_reserve: [0x000000aafffab000-0x000000aafffabfff] memblock_alloc_range_nid+0xad/0x11b
[    0.009326] memblock_alloc_try_nid: 109120 bytes align=0x40 nid=2 from=0x0000010338000000 max_addr=0x0000010340000000 sparse_init_nid+0x8f/0x412
[    0.009327] memblock_reserve: [0x000001033ffac5c0-0x000001033ffc6fff] memblock_alloc_range_nid+0xad/0x11b
[    0.009367] memblock_alloc_exact_nid_raw: 5721030656 bytes align=0x200000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x11c/0x412
[    0.009368] memblock_reserve: [0x00000101eae00000-0x000001033fdfffff] memblock_alloc_range_nid+0xad/0x11b
[    0.009377] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009378] memblock_reserve: [0x000001033ffab000-0x000001033ffabfff] memblock_alloc_range_nid+0xad/0x11b
[    0.009404] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009405] memblock_reserve: [0x000001033ffaa000-0x000001033ffaafff] memblock_alloc_range_nid+0xad/0x11b
[    0.009431] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009432] memblock_reserve: [0x000001033ffa9000-0x000001033ffa9fff] memblock_alloc_range_nid+0xad/0x11b
[    0.009458] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009459] memblock_reserve: [0x000001033ffa8000-0x000001033ffa8fff] memblock_alloc_range_nid+0xad/0x11b
[    0.009486] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009486] memblock_reserve: [0x000001033ffa7000-0x000001033ffa7fff] memblock_alloc_range_nid+0xad/0x11b
[    0.009509] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.10+0xc/0x24
[    0.009510] memblock_reserve: [0x000001033ffa6000-0x000001033ffa6fff] memblock_alloc_range_nid+0xad/0x11b
[    0.009518] Zone ranges:
[    0.009518]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.009519]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.009520]   Normal   [mem 0x0000000100000000-0x000001033fffffff]
[    0.009521]   Device   empty
[    0.009522] Movable zone start for each node
[    0.009524] Early memory node ranges
[    0.009525]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.009525]   node   0: [mem 0x0000000000100000-0x000000000ef23fff]
[    0.009526]   node   0: [mem 0x000000000ef2d000-0x000000000ef3bfff]
[    0.009526]   node   0: [mem 0x000000000ef48000-0x000000000ef60fff]
[    0.009527]   node   0: [mem 0x000000000ef66000-0x000000000fee6fff]
[    0.009527]   node   0: [mem 0x000000000ff77000-0x00000000bfffffff]
[    0.009528]   node   0: [mem 0x0000000100000000-0x00000055ffffffff]
[    0.009543]   node   1: [mem 0x0000005600000000-0x000000aaffffffff]
[    0.009557]   node   2: [mem 0x000000ab00000000-0x000000fcffffffff]
[    0.009572]   node   2: [mem 0x0000010000000000-0x000001033fffffff]
[    0.009611] Zeroed struct page in unavailable ranges: 267 pages
[    0.009611] Initmem setup node 0 [mem 0x0000000000001000-0x00000055ffffffff]
[    0.009613] On node 0 totalpages: 89915125
[    0.009613]   DMA zone: 64 pages used for memmap
[    0.009614]   DMA zone: 159 pages reserved
[    0.009615]   DMA zone: 3999 pages, LIFO batch:0
[    0.009680]   DMA32 zone: 12222 pages used for memmap
[    0.009680]   DMA32 zone: 782166 pages, LIFO batch:63
[    0.021495]   Normal zone: 1392640 pages used for memmap
[    0.021496]   Normal zone: 89128960 pages, LIFO batch:63
[    0.021995] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.021996] On node 1 totalpages: 89128960
[    0.021997]   Normal zone: 1392640 pages used for memmap
[    0.021997]   Normal zone: 89128960 pages, LIFO batch:63
[    0.022487] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.022488] On node 2 totalpages: 89391104
[    0.022489]   Normal zone: 1445888 pages used for memmap
[    0.022489]   Normal zone: 89391104 pages, LIFO batch:63
[    1.289362] ACPI: PM-Timer IO Port: 0x448
[    1.289365] ACPI: Local APIC address 0xfee00000
[    1.289381] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    1.289382] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    1.289383] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    1.289383] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    1.289384] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    1.289385] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    1.289385] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    1.289386] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    1.289387] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    1.289388] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    1.289388] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    1.289389] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    1.289390] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    1.289390] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    1.289391] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    1.289391] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    1.289392] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    1.289392] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    1.289393] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    1.289393] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    1.289394] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    1.289394] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    1.289394] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    1.289395] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    1.289395] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    1.289396] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    1.289396] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    1.289397] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    1.289397] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    1.289398] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    1.289399] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    1.289399] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    1.289400] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    1.289401] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    1.289402] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    1.289403] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    1.289403] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    1.289404] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    1.289404] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    1.289405] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    1.289405] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    1.289406] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    1.289406] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    1.289407] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    1.289407] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    1.289407] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    1.289408] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    1.289408] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    1.289409] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    1.289409] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    1.289410] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    1.289410] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    1.289411] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    1.289411] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    1.289412] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    1.289412] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    1.289412] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    1.289413] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    1.289413] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    1.289414] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    1.289414] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[    1.289415] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    1.289415] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[    1.289416] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[    1.289416] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[    1.289417] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[    1.289417] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[    1.289417] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[    1.289418] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[    1.289418] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[    1.289419] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[    1.289419] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[    1.289420] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[    1.289420] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[    1.289421] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[    1.289421] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[    1.289422] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[    1.289422] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[    1.289423] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[    1.289424] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[    1.289424] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[    1.289425] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[    1.289425] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[    1.289426] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[    1.289450] IOAPIC[0]: apic_id 84, version 32, address 0xfec00000, GSI 0-23
[    1.289452] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    1.289454] ACPI: IRQ0 used by override.
[    1.289455] ACPI: IRQ9 used by override.
[    1.289456] Using ACPI (MADT) for SMP configuration information
[    1.289457] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[    1.289463] memblock_alloc_try_nid: 73 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 acpi_parse_hpet+0xca/0x132
[    1.289466] memblock_reserve: [0x000001033ffac540-0x000001033ffac588] memblock_alloc_range_nid+0xad/0x11b
[    1.289468] TSC deadline timer available
[    1.289470] smpboot: Allowing 84 CPUs, 0 hotplug CPUs
[    1.289477] memblock_alloc_try_nid: 75 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 io_apic_init_mappings+0x37/0x1c8
[    1.289480] memblock_reserve: [0x000001033ffac4c0-0x000001033ffac50a] memblock_alloc_range_nid+0xad/0x11b
[    1.289485] memblock_alloc_try_nid: 1536 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 e820__reserve_resources+0x2c/0x19c
[    1.289486] memblock_reserve: [0x000001033ffa5a00-0x000001033ffa5fff] memblock_alloc_range_nid+0xad/0x11b
[    1.289492] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289493] memblock_reserve: [0x000001033ffac440-0x000001033ffac4a7] memblock_alloc_range_nid+0xad/0x11b
[    1.289495] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289496] memblock_reserve: [0x000001033ffac3c0-0x000001033ffac427] memblock_alloc_range_nid+0xad/0x11b
[    1.289499] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289500] memblock_reserve: [0x000001033ffac340-0x000001033ffac3a7] memblock_alloc_range_nid+0xad/0x11b
[    1.289501] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289502] memblock_reserve: [0x000001033ffac2c0-0x000001033ffac327] memblock_alloc_range_nid+0xad/0x11b
[    1.289504] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289505] memblock_reserve: [0x000001033ffac240-0x000001033ffac2a7] memblock_alloc_range_nid+0xad/0x11b
[    1.289507] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289508] memblock_reserve: [0x000001033ffac1c0-0x000001033ffac227] memblock_alloc_range_nid+0xad/0x11b
[    1.289510] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289511] memblock_reserve: [0x000001033ffac140-0x000001033ffac1a7] memblock_alloc_range_nid+0xad/0x11b
[    1.289512] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289513] memblock_reserve: [0x000001033ffac0c0-0x000001033ffac127] memblock_alloc_range_nid+0xad/0x11b
[    1.289515] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289516] memblock_reserve: [0x000001033ffac040-0x000001033ffac0a7] memblock_alloc_range_nid+0xad/0x11b
[    1.289518] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289519] memblock_reserve: [0x000001033ffa5980-0x000001033ffa59e7] memblock_alloc_range_nid+0xad/0x11b
[    1.289520] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289522] memblock_reserve: [0x000001033ffa5900-0x000001033ffa5967] memblock_alloc_range_nid+0xad/0x11b
[    1.289523] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289525] memblock_reserve: [0x000001033ffa5880-0x000001033ffa58e7] memblock_alloc_range_nid+0xad/0x11b
[    1.289526] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289527] memblock_reserve: [0x000001033ffa5800-0x000001033ffa5867] memblock_alloc_range_nid+0xad/0x11b
[    1.289529] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289530] memblock_reserve: [0x000001033ffa5780-0x000001033ffa57e7] memblock_alloc_range_nid+0xad/0x11b
[    1.289532] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289534] memblock_reserve: [0x000001033ffa5700-0x000001033ffa5767] memblock_alloc_range_nid+0xad/0x11b
[    1.289536] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289537] memblock_reserve: [0x000001033ffa5680-0x000001033ffa56e7] memblock_alloc_range_nid+0xad/0x11b
[    1.289539] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289540] memblock_reserve: [0x000001033ffa5600-0x000001033ffa5667] memblock_alloc_range_nid+0xad/0x11b
[    1.289542] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x29/0x4f
[    1.289543] memblock_reserve: [0x000001033ffa5580-0x000001033ffa55e7] memblock_alloc_range_nid+0xad/0x11b
[    1.289545] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    1.289546] memblock_reserve: [0x000001033ffac000-0x000001033ffac01f] memblock_alloc_range_nid+0xad/0x11b
[    1.289547] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.289548] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    1.289549] memblock_reserve: [0x000001033ffa5540-0x000001033ffa555f] memblock_alloc_range_nid+0xad/0x11b
[    1.289550] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    1.289551] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    1.289552] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    1.289553] memblock_reserve: [0x000001033ffa5500-0x000001033ffa551f] memblock_alloc_range_nid+0xad/0x11b
[    1.289554] PM: hibernation: Registered nosave memory: [mem 0x0e0a1000-0x0e0a1fff]
[    1.289554] PM: hibernation: Registered nosave memory: [mem 0x0e0a2000-0x0e0a2fff]
[    1.289555] PM: hibernation: Registered nosave memory: [mem 0x0e0a3000-0x0e0a3fff]
[    1.289556] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    1.289557] memblock_reserve: [0x000001033ffa54c0-0x000001033ffa54df] memblock_alloc_range_nid+0xad/0x11b
[    1.289558] PM: hibernation: Registered nosave memory: [mem 0x0e0a5000-0x0e0a5fff]
[    1.289558] PM: hibernation: Registered nosave memory: [mem 0x0e0a6000-0x0e0a6fff]
[    1.289559] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    1.289560] memblock_reserve: [0x000001033ffa5480-0x000001033ffa549f] memblock_alloc_range_nid+0xad/0x11b
[    1.289561] PM: hibernation: Registered nosave memory: [mem 0x0e0ae000-0x0e0aefff]
[    1.289562] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    1.289563] memblock_reserve: [0x000001033ffa5440-0x000001033ffa545f] memblock_alloc_range_nid+0xad/0x11b
[    1.289564] PM: hibernation: Registered nosave memory: [mem 0x0ef24000-0x0ef2cfff]
[    1.289565] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    1.289566] memblock_reserve: [0x000001033ffa5400-0x000001033ffa541f] memblock_alloc_range_nid+0xad/0x11b
[    1.289567] PM: hibernation: Registered nosave memory: [mem 0x0ef3c000-0x0ef41fff]
[    1.289567] PM: hibernation: Registered nosave memory: [mem 0x0ef42000-0x0ef47fff]
[    1.289568] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    1.289569] memblock_reserve: [0x000001033ffa53c0-0x000001033ffa53df] memblock_alloc_range_nid+0xad/0x11b
[    1.289570] PM: hibernation: Registered nosave memory: [mem 0x0ef61000-0x0ef65fff]
[    1.289571] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    1.289573] memblock_reserve: [0x000001033ffa5380-0x000001033ffa539f] memblock_alloc_range_nid+0xad/0x11b
[    1.289573] PM: hibernation: Registered nosave memory: [mem 0x0fee7000-0x0ff56fff]
[    1.289574] PM: hibernation: Registered nosave memory: [mem 0x0ff57000-0x0ff72fff]
[    1.289574] PM: hibernation: Registered nosave memory: [mem 0x0ff73000-0x0ff76fff]
[    1.289575] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    1.289577] memblock_reserve: [0x000001033ffa5340-0x000001033ffa535f] memblock_alloc_range_nid+0xad/0x11b
[    1.289578] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xffbfffff]
[    1.289578] PM: hibernation: Registered nosave memory: [mem 0xffc00000-0xffc29fff]
[    1.289579] PM: hibernation: Registered nosave memory: [mem 0xffc2a000-0xffffffff]
[    1.289580] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7c/0xfb
[    1.289581] memblock_reserve: [0x000001033ffa5300-0x000001033ffa531f] memblock_alloc_range_nid+0xad/0x11b
[    1.289582] PM: hibernation: Registered nosave memory: [mem 0xfd00000000-0xffffffffff]
[    1.289584] [mem 0xc0000000-0xffbfffff] available for PCI devices
[    1.289585] Booting paravirtualized kernel on VMware hypervisor
[    1.289587] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    1.292754] memblock_alloc_try_nid: 134 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xfd/0x57a
[    1.292758] memblock_reserve: [0x000001033ffa5240-0x000001033ffa52c5] memblock_alloc_range_nid+0xad/0x11b
[    1.292760] memblock_alloc_try_nid: 134 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0x111/0x57a
[    1.292762] memblock_reserve: [0x000001033ffa5180-0x000001033ffa5205] memblock_alloc_range_nid+0xad/0x11b
[    1.292764] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:84 nr_cpu_ids:84 nr_node_ids:3
[    1.292804] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_alloc_info+0x52/0x84
[    1.292806] memblock_reserve: [0x000001033ffa4000-0x000001033ffa4fff] memblock_alloc_range_nid+0xad/0x11b
[    1.292811] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_embed_first_chunk+0x72/0x30d
[    1.292813] memblock_reserve: [0x000001033ffa3000-0x000001033ffa3fff] memblock_alloc_range_nid+0xad/0x11b
[    1.292819] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    1.292821] memblock_reserve: [0x00000054a8600000-0x00000054a8dfffff] memblock_alloc_range_nid+0xad/0x11b
[    1.294114] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=1 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    1.294115] memblock_reserve: [0x000000a9ab600000-0x000000a9abdfffff] memblock_alloc_range_nid+0xad/0x11b
[    1.296434] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=2 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xf5/0x147
[    1.296436] memblock_reserve: [0x00000101ea600000-0x00000101eadfffff] memblock_alloc_range_nid+0xad/0x11b
[    1.298859] memblock_free: [0x00000054a8637000-0x00000054a863ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.298884] memblock_free: [0x00000054a8677000-0x00000054a867ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.298904] memblock_free: [0x00000054a86b7000-0x00000054a86bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.298924] memblock_free: [0x00000054a86f7000-0x00000054a86fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.298943] memblock_free: [0x00000054a8737000-0x00000054a873ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.298964] memblock_free: [0x00000054a8777000-0x00000054a877ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.298982] memblock_free: [0x00000054a87b7000-0x00000054a87bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299002] memblock_free: [0x00000054a87f7000-0x00000054a87fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299019] memblock_free: [0x00000054a8837000-0x00000054a883ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299037] memblock_free: [0x00000054a8877000-0x00000054a887ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299053] memblock_free: [0x00000054a88b7000-0x00000054a88bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299071] memblock_free: [0x00000054a88f7000-0x00000054a88fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299088] memblock_free: [0x00000054a8937000-0x00000054a893ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299109] memblock_free: [0x00000054a8977000-0x00000054a897ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299127] memblock_free: [0x00000054a89b7000-0x00000054a89bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299144] memblock_free: [0x00000054a89f7000-0x00000054a89fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299158] memblock_free: [0x00000054a8a37000-0x00000054a8a3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299173] memblock_free: [0x00000054a8a77000-0x00000054a8a7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299185] memblock_free: [0x00000054a8ab7000-0x00000054a8abffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299198] memblock_free: [0x00000054a8af7000-0x00000054a8afffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299212] memblock_free: [0x00000054a8b37000-0x00000054a8b3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299226] memblock_free: [0x00000054a8b77000-0x00000054a8b7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299241] memblock_free: [0x00000054a8bb7000-0x00000054a8bbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299255] memblock_free: [0x00000054a8bf7000-0x00000054a8bfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299268] memblock_free: [0x00000054a8c37000-0x00000054a8c3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299281] memblock_free: [0x00000054a8c77000-0x00000054a8c7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299294] memblock_free: [0x00000054a8cb7000-0x00000054a8cbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299306] memblock_free: [0x00000054a8cf7000-0x00000054a8cfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299308] memblock_free: [0x00000054a8d00000-0x00000054a8d3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299309] memblock_free: [0x00000054a8d40000-0x00000054a8d7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299310] memblock_free: [0x00000054a8d80000-0x00000054a8dbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299311] memblock_free: [0x00000054a8dc0000-0x00000054a8dfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299324] memblock_free: [0x000000a9ab637000-0x000000a9ab63ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299338] memblock_free: [0x000000a9ab677000-0x000000a9ab67ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299349] memblock_free: [0x000000a9ab6b7000-0x000000a9ab6bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299361] memblock_free: [0x000000a9ab6f7000-0x000000a9ab6fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299375] memblock_free: [0x000000a9ab737000-0x000000a9ab73ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299390] memblock_free: [0x000000a9ab777000-0x000000a9ab77ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299405] memblock_free: [0x000000a9ab7b7000-0x000000a9ab7bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299419] memblock_free: [0x000000a9ab7f7000-0x000000a9ab7fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299430] memblock_free: [0x000000a9ab837000-0x000000a9ab83ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299442] memblock_free: [0x000000a9ab877000-0x000000a9ab87ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299454] memblock_free: [0x000000a9ab8b7000-0x000000a9ab8bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299464] memblock_free: [0x000000a9ab8f7000-0x000000a9ab8fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299476] memblock_free: [0x000000a9ab937000-0x000000a9ab93ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299488] memblock_free: [0x000000a9ab977000-0x000000a9ab97ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299500] memblock_free: [0x000000a9ab9b7000-0x000000a9ab9bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299513] memblock_free: [0x000000a9ab9f7000-0x000000a9ab9fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299528] memblock_free: [0x000000a9aba37000-0x000000a9aba3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299544] memblock_free: [0x000000a9aba77000-0x000000a9aba7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299557] memblock_free: [0x000000a9abab7000-0x000000a9ababffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299570] memblock_free: [0x000000a9abaf7000-0x000000a9abafffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299582] memblock_free: [0x000000a9abb37000-0x000000a9abb3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299594] memblock_free: [0x000000a9abb77000-0x000000a9abb7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299608] memblock_free: [0x000000a9abbb7000-0x000000a9abbbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299623] memblock_free: [0x000000a9abbf7000-0x000000a9abbfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299635] memblock_free: [0x000000a9abc37000-0x000000a9abc3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299646] memblock_free: [0x000000a9abc77000-0x000000a9abc7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299657] memblock_free: [0x000000a9abcb7000-0x000000a9abcbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299666] memblock_free: [0x000000a9abcf7000-0x000000a9abcfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299668] memblock_free: [0x000000a9abd00000-0x000000a9abd3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299669] memblock_free: [0x000000a9abd40000-0x000000a9abd7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299670] memblock_free: [0x000000a9abd80000-0x000000a9abdbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299671] memblock_free: [0x000000a9abdc0000-0x000000a9abdfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299681] memblock_free: [0x00000101ea637000-0x00000101ea63ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299691] memblock_free: [0x00000101ea677000-0x00000101ea67ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299700] memblock_free: [0x00000101ea6b7000-0x00000101ea6bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299712] memblock_free: [0x00000101ea6f7000-0x00000101ea6fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299721] memblock_free: [0x00000101ea737000-0x00000101ea73ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299731] memblock_free: [0x00000101ea777000-0x00000101ea77ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299739] memblock_free: [0x00000101ea7b7000-0x00000101ea7bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299748] memblock_free: [0x00000101ea7f7000-0x00000101ea7fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299757] memblock_free: [0x00000101ea837000-0x00000101ea83ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299767] memblock_free: [0x00000101ea877000-0x00000101ea87ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299776] memblock_free: [0x00000101ea8b7000-0x00000101ea8bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299786] memblock_free: [0x00000101ea8f7000-0x00000101ea8fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299794] memblock_free: [0x00000101ea937000-0x00000101ea93ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299804] memblock_free: [0x00000101ea977000-0x00000101ea97ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299805] memblock: reserved is doubled to 256 at [0x000001033ffa1000-0x000001033ffa27ff]
[    1.299810] memblock_reserve: [0x000001033ffa1000-0x000001033ffa2fff] memblock_double_array+0x236/0x26f
[    1.299819] memblock_free: [0x00000101ea9b7000-0x00000101ea9bffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299828] memblock_free: [0x00000101ea9f7000-0x00000101ea9fffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299838] memblock_free: [0x00000101eaa37000-0x00000101eaa3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299848] memblock_free: [0x00000101eaa77000-0x00000101eaa7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299858] memblock_free: [0x00000101eaab7000-0x00000101eaabffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299868] memblock_free: [0x00000101eaaf7000-0x00000101eaafffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299877] memblock_free: [0x00000101eab37000-0x00000101eab3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299887] memblock_free: [0x00000101eab77000-0x00000101eab7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299895] memblock_free: [0x00000101eabb7000-0x00000101eabbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299905] memblock_free: [0x00000101eabf7000-0x00000101eabfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299914] memblock_free: [0x00000101eac37000-0x00000101eac3ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299923] memblock_free: [0x00000101eac77000-0x00000101eac7ffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299932] memblock_free: [0x00000101eacb7000-0x00000101eacbffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299941] memblock_free: [0x00000101eacf7000-0x00000101eacfffff] pcpu_embed_first_chunk+0x22b/0x30d
[    1.299942] memblock_free: [0x00000101ead00000-0x00000101ead3ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299943] memblock_free: [0x00000101ead40000-0x00000101ead7ffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299945] memblock_free: [0x00000101ead80000-0x00000101eadbffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299946] memblock_free: [0x00000101eadc0000-0x00000101eadfffff] pcpu_embed_first_chunk+0x1d9/0x30d
[    1.299948] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
[    1.299949] memblock_alloc_try_nid: 24 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x2f4/0x747
[    1.299951] memblock_reserve: [0x000001033ffa5140-0x000001033ffa5157] memblock_alloc_range_nid+0xad/0x11b
[    1.299953] memblock_alloc_try_nid: 24 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x327/0x747
[    1.299954] memblock_reserve: [0x000001033ffa5100-0x000001033ffa5117] memblock_alloc_range_nid+0xad/0x11b
[    1.299956] memblock_alloc_try_nid: 336 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x348/0x747
[    1.299957] memblock_reserve: [0x000001033ffa0e80-0x000001033ffa0fcf] memblock_alloc_range_nid+0xad/0x11b
[    1.299959] memblock_alloc_try_nid: 672 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x368/0x747
[    1.299961] memblock_reserve: [0x000001033ffa0bc0-0x000001033ffa0e5f] memblock_alloc_range_nid+0xad/0x11b
[    1.299965] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
[    1.299966] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    1.299972] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
[    1.299978] pcpu-alloc: [1] 28 29 30 31 32 33 34 35 [1] 36 37 38 39 40 41 42 43 
[    1.299983] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 [1] 52 53 54 55 -- -- -- -- 
[    1.299989] pcpu-alloc: [2] 56 57 58 59 60 61 62 63 [2] 64 65 66 67 68 69 70 71 
[    1.299994] pcpu-alloc: [2] 72 73 74 75 76 77 78 79 [2] 80 81 82 83 -- -- -- -- 
[    1.300001] memblock_alloc_try_nid: 576 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x641/0x747
[    1.300002] memblock_reserve: [0x000001033ffa0980-0x000001033ffa0bbf] memblock_alloc_range_nid+0xad/0x11b
[    1.300005] memblock_alloc_try_nid: 144 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x78/0x22e
[    1.300007] memblock_reserve: [0x000001033ffa5040-0x000001033ffa50cf] memblock_alloc_range_nid+0xad/0x11b
[    1.300008] memblock_alloc_try_nid: 256 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xc7/0x22e
[    1.300010] memblock_reserve: [0x000001033ffa0880-0x000001033ffa097f] memblock_alloc_range_nid+0xad/0x11b
[    1.300012] memblock_alloc_try_nid: 264 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x104/0x22e
[    1.300014] memblock_reserve: [0x000001033ffa0740-0x000001033ffa0847] memblock_alloc_range_nid+0xad/0x11b
[    1.300015] memblock_alloc_try_nid: 64 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x122/0x22e
[    1.300017] memblock_reserve: [0x000001033ffa5000-0x000001033ffa503f] memblock_alloc_range_nid+0xad/0x11b
[    1.300019] memblock_alloc_try_nid: 144 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x78/0x22e
[    1.300020] memblock_reserve: [0x000001033ffa0680-0x000001033ffa070f] memblock_alloc_range_nid+0xad/0x11b
[    1.300022] memblock_alloc_try_nid: 896 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xc7/0x22e
[    1.300024] memblock_reserve: [0x000001033ffa0300-0x000001033ffa067f] memblock_alloc_range_nid+0xad/0x11b
[    1.300026] memblock_alloc_try_nid: 904 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x104/0x22e
[    1.300027] memblock_reserve: [0x000001033ff9ff40-0x000001033ffa02c7] memblock_alloc_range_nid+0xad/0x11b
[    1.300029] memblock_alloc_try_nid: 224 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x122/0x22e
[    1.300030] memblock_reserve: [0x000001033ff9fe40-0x000001033ff9ff1f] memblock_alloc_range_nid+0xad/0x11b
[    1.300032] memblock_free: [0x000001033ffa4000-0x000001033ffa4fff] pcpu_embed_first_chunk+0x2c7/0x30d
[    1.300033] memblock_free: [0x000001033ffa3000-0x000001033ffa3fff] pcpu_embed_first_chunk+0x2fc/0x30d
[    1.300041] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    1.300043] memblock_reserve: [0x000001033ffa4fc0-0x000001033ffa4fcf] memblock_alloc_range_nid+0xad/0x11b
[    1.300044] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    1.300046] memblock_reserve: [0x000001033ffa4f80-0x000001033ffa4f8f] memblock_alloc_range_nid+0xad/0x11b
[    1.300048] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    1.300049] memblock_reserve: [0x000001033ffa4f40-0x000001033ffa4f4f] memblock_alloc_range_nid+0xad/0x11b
[    1.300051] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    1.300052] memblock_reserve: [0x000001033ffa4f00-0x000001033ffa4f0f] memblock_alloc_range_nid+0xad/0x11b
[    1.300055] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    1.300056] memblock_reserve: [0x000001033ffa4ec0-0x000001033ffa4ecf] memblock_alloc_range_nid+0xad/0x11b
[    1.300058] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    1.300060] memblock_reserve: [0x000001033ffa4e80-0x000001033ffa4e8f] memblock_alloc_range_nid+0xad/0x11b
[    1.300062] memblock_alloc_try_nid: 16 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    1.300063] memblock_reserve: [0x000001033ffa4e40-0x000001033ffa4e4f] memblock_alloc_range_nid+0xad/0x11b
[    1.300074] Built 3 zonelists, mobility grouping on.  Total pages: 264191576
[    1.300074] Policy zone: Normal
[    1.300076] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet memblock=debug
[    1.300195] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    1.300197] memblock_reserve: [0x000001033ffa3000-0x000001033ffa3fff] memblock_alloc_range_nid+0xad/0x11b
[    1.300199] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    1.300201] memblock_reserve: [0x000001033ff9e000-0x000001033ff9efff] memblock_alloc_range_nid+0xad/0x11b
[    1.300205] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    1.300207] memblock_reserve: [0x000001033ff9d000-0x000001033ff9dfff] memblock_alloc_range_nid+0xad/0x11b
[    1.300283] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    1.300285] memblock_reserve: [0x000001033ff9c000-0x000001033ff9cfff] memblock_alloc_range_nid+0xad/0x11b
[    1.300362] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    1.300364] memblock_reserve: [0x000001033ff9b000-0x000001033ff9bfff] memblock_alloc_range_nid+0xad/0x11b
[    1.300445] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    1.300447] memblock_reserve: [0x000001033ff9a000-0x000001033ff9afff] memblock_alloc_range_nid+0xad/0x11b
[    1.300534] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    1.300536] memblock_reserve: [0x000001033ff99000-0x000001033ff99fff] memblock_alloc_range_nid+0xad/0x11b
[    1.300632] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    1.300633] memblock_reserve: [0x000001033ff98000-0x000001033ff98fff] memblock_alloc_range_nid+0xad/0x11b
[    1.300730] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    1.300732] memblock_reserve: [0x000001033ff97000-0x000001033ff97fff] memblock_alloc_range_nid+0xad/0x11b
[    1.300837] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    1.300839] memblock_reserve: [0x000001033ff96000-0x000001033ff96fff] memblock_alloc_range_nid+0xad/0x11b
[    1.300951] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x92/0x94
[    1.300953] memblock_reserve: [0x000001033ff95000-0x000001033ff95fff] memblock_alloc_range_nid+0xad/0x11b
[    1.301065] mem auto-init: stack:off, heap alloc:off, heap free:off
[    1.301068] memblock_alloc_try_nid: 67108864 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x00000000ffffffff swiotlb_init+0x4b/0xa8
[    1.301072] memblock_reserve: [0x00000000bc000000-0x00000000bfffffff] memblock_alloc_range_nid+0xad/0x11b
[    1.312513] memblock_alloc_try_nid: 131072 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0x6e/0x13b
[    1.312522] memblock_reserve: [0x000001033ff75000-0x000001033ff94fff] memblock_alloc_range_nid+0xad/0x11b
[    1.312564] memblock_alloc_try_nid: 262144 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0xa5/0x13b
[    1.312567] memblock_reserve: [0x000001033ff35000-0x000001033ff74fff] memblock_alloc_range_nid+0xad/0x11b
[    2.431500] Memory: 347276036K/1073740756K available (12297K kernel code, 5778K rwdata, 4376K rodata, 2352K init, 6480K bss, 16991704K reserved, 0K cma-reserved)
[    2.432297] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=84, Nodes=3
[    2.432347] Kernel/User page tables isolation: enabled
[    2.432412] ftrace: allocating 39515 entries in 155 pages
[    2.446959] ftrace: allocated 155 pages with 5 groups
[    2.447571] rcu: Hierarchical RCU implementation.
[    2.447573] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=84.
[    2.447574] 	Rude variant of Tasks RCU enabled.
[    2.447576] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    2.447577] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=84
[    2.450148] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    2.450684] Console: colour dummy device 80x25
[    2.450748] printk: console [tty0] enabled
[    2.450973] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    2.450977] ACPI: Core revision 20200925
[    2.453603] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    2.453672] APIC: Switch to symmetric I/O mode setup
[    2.455171] x2apic enabled
[    2.457715] Switched APIC routing to physical x2apic.
[    2.458771] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    2.458810] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e3306b9ada, max_idle_ns: 440795224413 ns
[    2.458814] Calibrating delay loop (skipped) preset value.. 4190.15 BogoMIPS (lpj=2095078)
[    2.458817] pid_max: default: 86016 minimum: 672
[    2.459032] __memblock_free_late: [0x000000000ffbf000-0x000000000fffffff] efi_free_boot_services+0x151/0x241
[    2.459045] __memblock_free_late: [0x000000000ff77000-0x000000000ffbefff] efi_free_boot_services+0x151/0x241
[    2.459068] __memblock_free_late: [0x000000000fdf7000-0x000000000fee6fff] efi_free_boot_services+0x151/0x241
[    2.459091] __memblock_free_late: [0x000000000ef66000-0x000000000ef8ffff] efi_free_boot_services+0x151/0x241
[    2.459103] __memblock_free_late: [0x000000000ef48000-0x000000000ef60fff] efi_free_boot_services+0x151/0x241
[    2.459111] __memblock_free_late: [0x000000000ef2d000-0x000000000ef3bfff] efi_free_boot_services+0x151/0x241
[    2.459119] __memblock_free_late: [0x000000000eee2000-0x000000000ef23fff] efi_free_boot_services+0x151/0x241
[    2.459161] __memblock_free_late: [0x000000000e8e0000-0x000000000eee1fff] efi_free_boot_services+0x151/0x241
[    2.459371] __memblock_free_late: [0x000000000e74a000-0x000000000e8dffff] efi_free_boot_services+0x151/0x241
[    2.459464] __memblock_free_late: [0x000000000e0b3000-0x000000000e749fff] efi_free_boot_services+0x151/0x241
[    2.459820] __memblock_free_late: [0x000000000e0b1000-0x000000000e0b1fff] efi_free_boot_services+0x151/0x241
[    2.459822] __memblock_free_late: [0x000000000df93000-0x000000000df93fff] efi_free_boot_services+0x151/0x241
[    2.460094] LSM: Security Framework initializing
[    2.460120] Yama: becoming mindful.
[    2.460143] SELinux:  Initializing.
[    2.519649] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes, vmalloc)
[    2.551904] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc)
[    2.552930] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    2.553884] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    2.554775] Disabled fast string operations
[    2.554938] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    2.554939] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    2.554945] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    2.554946] Spectre V2 : Mitigation: Full generic retpoline
[    2.554947] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    2.554948] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    2.554950] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    2.554951] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    2.554955] MDS: Mitigation: Clear CPU buffers
[    2.555241] Freeing SMP alternatives memory: 32K
[    2.556463] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8176 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x4)
[    2.556665] Performance Events: Skylake events, core PMU driver.
[    2.556723] core: CPUID marked event: 'cpu cycles' unavailable
[    2.556724] core: CPUID marked event: 'instructions' unavailable
[    2.556725] core: CPUID marked event: 'bus cycles' unavailable
[    2.556725] core: CPUID marked event: 'cache references' unavailable
[    2.556726] core: CPUID marked event: 'cache misses' unavailable
[    2.556727] core: CPUID marked event: 'branch instructions' unavailable
[    2.556728] core: CPUID marked event: 'branch misses' unavailable
[    2.556729] ... version:                1
[    2.556730] ... bit width:              48
[    2.556730] ... generic registers:      4
[    2.556731] ... value mask:             0000ffffffffffff
[    2.556732] ... max period:             000000007fffffff
[    2.556732] ... fixed-purpose events:   0
[    2.556733] ... event mask:             000000000000000f
[    2.556811] rcu: Hierarchical SRCU implementation.
[    2.556811] NMI watchdog: Perf NMI watchdog permanently disabled
[    2.557331] smp: Bringing up secondary CPUs ...
[    2.557448] x86: Booting SMP configuration:
[    2.557449] .... node  #0, CPUs:        #1
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 1 Converting physical 2 to logical package 1
[    0.007296] smpboot: CPU 1 Converting physical 0 to logical die 1
[    2.558178]   #2
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 2 Converting physical 4 to logical package 2
[    0.007296] smpboot: CPU 2 Converting physical 0 to logical die 2
[    2.559217]   #3
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 3 Converting physical 6 to logical package 3
[    0.007296] smpboot: CPU 3 Converting physical 0 to logical die 3
[    2.560233]   #4
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 4 Converting physical 8 to logical package 4
[    0.007296] smpboot: CPU 4 Converting physical 0 to logical die 4
[    2.561196]   #5
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 5 Converting physical 10 to logical package 5
[    0.007296] smpboot: CPU 5 Converting physical 0 to logical die 5
[    2.561921]   #6
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 6 Converting physical 12 to logical package 6
[    0.007296] smpboot: CPU 6 Converting physical 0 to logical die 6
[    2.562914]   #7
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 7 Converting physical 14 to logical package 7
[    0.007296] smpboot: CPU 7 Converting physical 0 to logical die 7
[    2.563915]   #8
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 8 Converting physical 16 to logical package 8
[    0.007296] smpboot: CPU 8 Converting physical 0 to logical die 8
[    2.564885]   #9
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 9 Converting physical 18 to logical package 9
[    0.007296] smpboot: CPU 9 Converting physical 0 to logical die 9
[    2.565841]  #10
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 10 Converting physical 20 to logical package 10
[    0.007296] smpboot: CPU 10 Converting physical 0 to logical die 10
[    2.566483]  #11
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 11 Converting physical 22 to logical package 11
[    0.007296] smpboot: CPU 11 Converting physical 0 to logical die 11
[    2.567406]  #12
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 12 Converting physical 24 to logical package 12
[    0.007296] smpboot: CPU 12 Converting physical 0 to logical die 12
[    2.567915]  #13
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 13 Converting physical 26 to logical package 13
[    0.007296] smpboot: CPU 13 Converting physical 0 to logical die 13
[    2.568866]  #14
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 14 Converting physical 28 to logical package 14
[    0.007296] smpboot: CPU 14 Converting physical 0 to logical die 14
[    2.569612]  #15
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 15 Converting physical 30 to logical package 15
[    0.007296] smpboot: CPU 15 Converting physical 0 to logical die 15
[    2.570531]  #16
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 16 Converting physical 32 to logical package 16
[    0.007296] smpboot: CPU 16 Converting physical 0 to logical die 16
[    2.571418]  #17
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 17 Converting physical 34 to logical package 17
[    0.007296] smpboot: CPU 17 Converting physical 0 to logical die 17
[    2.571916]  #18
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 18 Converting physical 36 to logical package 18
[    0.007296] smpboot: CPU 18 Converting physical 0 to logical die 18
[    2.572928]  #19
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 19 Converting physical 38 to logical package 19
[    0.007296] smpboot: CPU 19 Converting physical 0 to logical die 19
[    2.573831]  #20
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 20 Converting physical 40 to logical package 20
[    0.007296] smpboot: CPU 20 Converting physical 0 to logical die 20
[    2.574613]  #21
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 21 Converting physical 42 to logical package 21
[    0.007296] smpboot: CPU 21 Converting physical 0 to logical die 21
[    2.575362]  #22
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 22 Converting physical 44 to logical package 22
[    0.007296] smpboot: CPU 22 Converting physical 0 to logical die 22
[    2.575910]  #23
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 23 Converting physical 46 to logical package 23
[    0.007296] smpboot: CPU 23 Converting physical 0 to logical die 23
[    2.576582]  #24
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 24 Converting physical 48 to logical package 24
[    0.007296] smpboot: CPU 24 Converting physical 0 to logical die 24
[    2.577428]  #25
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 25 Converting physical 50 to logical package 25
[    0.007296] smpboot: CPU 25 Converting physical 0 to logical die 25
[    2.578178]  #26
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 26 Converting physical 52 to logical package 26
[    0.007296] smpboot: CPU 26 Converting physical 0 to logical die 26
[    2.578915]  #27
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 27 Converting physical 54 to logical package 27
[    0.007296] smpboot: CPU 27 Converting physical 0 to logical die 27

[    2.579524] .... node  #1, CPUs:   #28
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 28 Converting physical 56 to logical package 28
[    0.007296] smpboot: CPU 28 Converting physical 0 to logical die 28
[    2.580983]  #29
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 29 Converting physical 58 to logical package 29
[    0.007296] smpboot: CPU 29 Converting physical 0 to logical die 29
[    2.581923]  #30
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 30 Converting physical 60 to logical package 30
[    0.007296] smpboot: CPU 30 Converting physical 0 to logical die 30
[    2.582924]  #31
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 31 Converting physical 62 to logical package 31
[    0.007296] smpboot: CPU 31 Converting physical 0 to logical die 31
[    2.583923]  #32
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 32 Converting physical 64 to logical package 32
[    0.007296] smpboot: CPU 32 Converting physical 0 to logical die 32
[    2.584542]  #33
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 33 Converting physical 66 to logical package 33
[    0.007296] smpboot: CPU 33 Converting physical 0 to logical die 33
[    2.585395]  #34
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 34 Converting physical 68 to logical package 34
[    0.007296] smpboot: CPU 34 Converting physical 0 to logical die 34
[    2.585925]  #35
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 35 Converting physical 70 to logical package 35
[    0.007296] smpboot: CPU 35 Converting physical 0 to logical die 35
[    2.586877]  #36
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 36 Converting physical 72 to logical package 36
[    0.007296] smpboot: CPU 36 Converting physical 0 to logical die 36
[    2.587537]  #37
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 37 Converting physical 74 to logical package 37
[    0.007296] smpboot: CPU 37 Converting physical 0 to logical die 37
[    2.588391]  #38
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 38 Converting physical 76 to logical package 38
[    0.007296] smpboot: CPU 38 Converting physical 0 to logical die 38
[    2.589245]  #39
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 39 Converting physical 78 to logical package 39
[    0.007296] smpboot: CPU 39 Converting physical 0 to logical die 39
[    2.590092]  #40
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 40 Converting physical 80 to logical package 40
[    0.007296] smpboot: CPU 40 Converting physical 0 to logical die 40
[    2.590919]  #41
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 41 Converting physical 82 to logical package 41
[    0.007296] smpboot: CPU 41 Converting physical 0 to logical die 41
[    2.591831]  #42
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 42 Converting physical 84 to logical package 42
[    0.007296] smpboot: CPU 42 Converting physical 0 to logical die 42
[    2.592481]  #43
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 43 Converting physical 86 to logical package 43
[    0.007296] smpboot: CPU 43 Converting physical 0 to logical die 43
[    2.593355]  #44
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 44 Converting physical 88 to logical package 44
[    0.007296] smpboot: CPU 44 Converting physical 0 to logical die 44
[    2.594123]  #45
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 45 Converting physical 90 to logical package 45
[    0.007296] smpboot: CPU 45 Converting physical 0 to logical die 45
[    2.594948]  #46
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 46 Converting physical 92 to logical package 46
[    0.007296] smpboot: CPU 46 Converting physical 0 to logical die 46
[    2.595931]  #47
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 47 Converting physical 94 to logical package 47
[    0.007296] smpboot: CPU 47 Converting physical 0 to logical die 47
[    2.596529]  #48
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 48 Converting physical 96 to logical package 48
[    0.007296] smpboot: CPU 48 Converting physical 0 to logical die 48
[    2.597345]  #49
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 49 Converting physical 98 to logical package 49
[    0.007296] smpboot: CPU 49 Converting physical 0 to logical die 49
[    2.597914]  #50
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 50 Converting physical 100 to logical package 50
[    0.007296] smpboot: CPU 50 Converting physical 0 to logical die 50
[    2.598846]  #51
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 51 Converting physical 102 to logical package 51
[    0.007296] smpboot: CPU 51 Converting physical 0 to logical die 51
[    2.599431]  #52
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 52 Converting physical 104 to logical package 52
[    0.007296] smpboot: CPU 52 Converting physical 0 to logical die 52
[    2.600115]  #53
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 53 Converting physical 106 to logical package 53
[    0.007296] smpboot: CPU 53 Converting physical 0 to logical die 53
[    2.600928]  #54
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 54 Converting physical 108 to logical package 54
[    0.007296] smpboot: CPU 54 Converting physical 0 to logical die 54
[    2.601922]  #55
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 55 Converting physical 110 to logical package 55
[    0.007296] smpboot: CPU 55 Converting physical 0 to logical die 55

[    2.602875] .... node  #2, CPUs:   #56
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 56 Converting physical 112 to logical package 56
[    0.007296] smpboot: CPU 56 Converting physical 0 to logical die 56
[    2.603927]  #57
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 57 Converting physical 114 to logical package 57
[    0.007296] smpboot: CPU 57 Converting physical 0 to logical die 57
[    2.604917]  #58
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 58 Converting physical 116 to logical package 58
[    0.007296] smpboot: CPU 58 Converting physical 0 to logical die 58
[    2.605856]  #59
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 59 Converting physical 118 to logical package 59
[    0.007296] smpboot: CPU 59 Converting physical 0 to logical die 59
[    2.606453]  #60
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 60 Converting physical 120 to logical package 60
[    0.007296] smpboot: CPU 60 Converting physical 0 to logical die 60
[    2.607332]  #61
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 61 Converting physical 122 to logical package 61
[    0.007296] smpboot: CPU 61 Converting physical 0 to logical die 61
[    2.608103]  #62
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 62 Converting physical 124 to logical package 62
[    0.007296] smpboot: CPU 62 Converting physical 0 to logical die 62
[    2.608917]  #63
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 63 Converting physical 126 to logical package 63
[    0.007296] smpboot: CPU 63 Converting physical 0 to logical die 63
[    2.609927]  #64
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 64 Converting physical 128 to logical package 64
[    0.007296] smpboot: CPU 64 Converting physical 0 to logical die 64
[    2.610527]  #65
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 65 Converting physical 130 to logical package 65
[    0.007296] smpboot: CPU 65 Converting physical 0 to logical die 65
[    2.611338]  #66
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 66 Converting physical 132 to logical package 66
[    0.007296] smpboot: CPU 66 Converting physical 0 to logical die 66
[    2.612102]  #67
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 67 Converting physical 134 to logical package 67
[    0.007296] smpboot: CPU 67 Converting physical 0 to logical die 67
[    2.612927]  #68
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 68 Converting physical 136 to logical package 68
[    0.007296] smpboot: CPU 68 Converting physical 0 to logical die 68
[    2.613838]  #69
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 69 Converting physical 138 to logical package 69
[    0.007296] smpboot: CPU 69 Converting physical 0 to logical die 69
[    2.614442]  #70
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 70 Converting physical 140 to logical package 70
[    0.007296] smpboot: CPU 70 Converting physical 0 to logical die 70
[    2.615283]  #71
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 71 Converting physical 142 to logical package 71
[    0.007296] smpboot: CPU 71 Converting physical 0 to logical die 71
[    2.615916]  #72
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 72 Converting physical 144 to logical package 72
[    0.007296] smpboot: CPU 72 Converting physical 0 to logical die 72
[    2.616852]  #73
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 73 Converting physical 146 to logical package 73
[    0.007296] smpboot: CPU 73 Converting physical 0 to logical die 73
[    2.617463]  #74
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 74 Converting physical 148 to logical package 74
[    0.007296] smpboot: CPU 74 Converting physical 0 to logical die 74
[    2.618331]  #75
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 75 Converting physical 150 to logical package 75
[    0.007296] smpboot: CPU 75 Converting physical 0 to logical die 75
[    2.619107]  #76
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 76 Converting physical 152 to logical package 76
[    0.007296] smpboot: CPU 76 Converting physical 0 to logical die 76
[    2.619965]  #77
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 77 Converting physical 154 to logical package 77
[    0.007296] smpboot: CPU 77 Converting physical 0 to logical die 77
[    2.620923]  #78
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 78 Converting physical 156 to logical package 78
[    0.007296] smpboot: CPU 78 Converting physical 0 to logical die 78
[    2.621840]  #79
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 79 Converting physical 158 to logical package 79
[    0.007296] smpboot: CPU 79 Converting physical 0 to logical die 79
[    2.622564]  #80
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 80 Converting physical 160 to logical package 80
[    0.007296] smpboot: CPU 80 Converting physical 0 to logical die 80
[    2.623496]  #81
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 81 Converting physical 162 to logical package 81
[    0.007296] smpboot: CPU 81 Converting physical 0 to logical die 81
[    2.624331]  #82
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 82 Converting physical 164 to logical package 82
[    0.007296] smpboot: CPU 82 Converting physical 0 to logical die 82
[    2.625088]  #83
[    0.007296] Disabled fast string operations
[    0.007296] smpboot: CPU 83 Converting physical 166 to logical package 83
[    0.007296] smpboot: CPU 83 Converting physical 0 to logical die 83
[    2.626155] smp: Brought up 3 nodes, 84 CPUs
[    2.626158] smpboot: Max logical packages: 84
[    2.626162] smpboot: Total of 84 processors activated (351973.10 BogoMIPS)
[    2.658130] node 2 deferred pages initialised in 28ms
[    2.768956] node 1 deferred pages initialised in 139ms
[    2.831874] node 0 deferred pages initialised in 202ms
[    2.832261] __memblock_free_late: [0x000001033ffa1000-0x000001033ffa2fff] memblock_discard+0x55/0xb1
[    2.876102] devtmpfs: initialized
[    2.876102] x86/mm: Memory block size: 1024MB
[    2.883587] PM: Registering ACPI NVS region [mem 0x00000000-0x00000fff] (4096 bytes)
[    2.883587] PM: Registering ACPI NVS region [mem 0x0ef42000-0x0ef47fff] (24576 bytes)
[    2.883587] PM: Registering ACPI NVS region [mem 0x0ff73000-0x0ff76fff] (16384 bytes)
[    2.884640] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    2.884640] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    2.886267] pinctrl core: initialized pinctrl subsystem
[    2.886971] NET: Registered protocol family 16
[    2.887095] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.887106] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.887118] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.887127] audit: initializing netlink subsys (disabled)
[    2.887136] audit: type=2000 audit(1603127418.430:1): state=initialized audit_enabled=0 res=1
[    2.887136] thermal_sys: Registered thermal governor 'fair_share'
[    2.887136] thermal_sys: Registered thermal governor 'bang_bang'
[    2.887136] thermal_sys: Registered thermal governor 'step_wise'
[    2.887136] thermal_sys: Registered thermal governor 'user_space'
[    2.887136] cpuidle: using governor menu
[    2.887136] ACPI: bus type PCI registered
[    2.887136] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.887860] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    2.887864] PCI: not using MMCONFIG
[    2.887865] PCI: Using configuration type 1 for base access
[    2.892863] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    2.892863] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    2.922138] cryptd: max_cpu_qlen set to 1000
[    2.934199] ACPI: Added _OSI(Module Device)
[    2.934200] ACPI: Added _OSI(Processor Device)
[    2.934201] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.934202] ACPI: Added _OSI(Processor Aggregator Device)
[    2.934204] ACPI: Added _OSI(Linux-Dell-Video)
[    2.934205] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    2.934206] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    2.937906] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    2.938803] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.938809] ACPI: BIOS _OSI(Darwin) query ignored
[    2.947746] ACPI: Interpreter enabled
[    2.947759] ACPI: (supports S0 S1 S4 S5)
[    2.947761] ACPI: Using IOAPIC for interrupt routing
[    2.947776] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    2.948284] PCI: MMCONFIG at [mem 0xe0000000-0xe7ffffff] reserved in ACPI motherboard resources
[    2.948284] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    2.948301] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.948763] ACPI: Enabled 4 GPEs in block 00 to 0F
[    2.966281] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    2.966287] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    2.966427] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[    2.966557] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    2.967250] PCI host bridge to bus 0000:00
[    2.967251] pci_bus 0000:00: Unknown NUMA node; performance will be reduced
[    2.967254] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    2.967255] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    2.967256] pci_bus 0000:00: root bus resource [mem 0xfef00000-0xffdfffff window]
[    2.967257] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfedfffff window]
[    2.967258] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfed3ffff window]
[    2.967259] pci_bus 0000:00: root bus resource [mem 0xfa300000-0xfebfffff window]
[    2.967260] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfa2fffff pref window]
[    2.967262] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xefffffff window]
[    2.967262] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    2.967263] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    2.967264] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    2.967265] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    2.967266] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    2.967267] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    2.967268] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    2.967269] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    2.967270] pci_bus 0000:00: root bus resource [bus 00-7f]
[    2.967371] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    2.967983] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    2.968488] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    2.969147] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    2.969811] pci 0000:00:07.1: reg 0x20: [io  0x2050-0x205f]
[    2.969811] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    2.969811] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    2.969811] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    2.969811] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    2.969811] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    2.969811] pci 0000:00:07.3: quirk: [io  0x0440-0x047f] claimed by PIIX4 ACPI
[    2.969811] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    2.969811] pci 0000:00:07.7: reg 0x10: [io  0x2000-0x203f]
[    2.969811] pci 0000:00:07.7: reg 0x14: [mem 0xffbf0000-0xffbf1fff 64bit]
[    2.969811] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    2.971816] pci 0000:00:0f.0: reg 0x10: [io  0x2040-0x204f]
[    2.972815] pci 0000:00:0f.0: reg 0x14: [mem 0xf0000000-0xf7ffffff pref]
[    2.974815] pci 0000:00:0f.0: reg 0x18: [mem 0xfb800000-0xfbffffff]
[    2.977817] pci 0000:00:0f.0: reg 0x30: [mem 0xffff8000-0xffffffff pref]
[    2.977856] pci 0000:00:0f.0: BAR 1: assigned to efifb
[    2.978306] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    2.978811] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    2.978811] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    2.978811] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    2.978811] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    2.978811] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    2.978811] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    2.978811] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    2.978811] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    2.978811] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    2.983364] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    2.983736] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    2.983811] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    2.983879] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    2.984685] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    2.984811] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    2.985820] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    2.986189] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    2.986985] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    2.987365] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    2.988130] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    2.988495] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    2.989256] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    2.989618] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    2.990379] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    2.990741] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    2.991499] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    2.991857] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    2.992621] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    2.992986] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    2.993751] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    2.994132] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    2.994897] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    2.995260] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    2.996017] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    2.996380] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    2.997145] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    2.997508] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    2.998272] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    2.998635] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    2.999393] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    2.999757] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    3.000516] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    3.000874] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    3.001638] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    3.001992] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    3.002757] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    3.003111] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    3.003871] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    3.004237] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    3.004991] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    3.005367] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    3.006131] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    3.006493] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    3.007255] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    3.007617] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    3.008375] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    3.008737] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    3.009497] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    3.009857] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    3.010621] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    3.010973] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    3.011750] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    3.012111] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    3.012872] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    3.013237] pci_bus 0000:01: extended config space not accessible
[    3.013292] pci 0000:00:01.0: PCI bridge to [bus 01]
[    3.013497] pci_bus 0000:02: extended config space not accessible
[    3.013679] acpiphp: Slot [32] registered
[    3.013690] acpiphp: Slot [33] registered
[    3.013700] acpiphp: Slot [34] registered
[    3.013709] acpiphp: Slot [35] registered
[    3.013718] acpiphp: Slot [36] registered
[    3.013726] acpiphp: Slot [37] registered
[    3.013734] acpiphp: Slot [38] registered
[    3.013742] acpiphp: Slot [39] registered
[    3.013752] acpiphp: Slot [40] registered
[    3.013764] acpiphp: Slot [41] registered
[    3.013772] acpiphp: Slot [42] registered
[    3.013780] acpiphp: Slot [43] registered
[    3.013788] acpiphp: Slot [44] registered
[    3.013796] acpiphp: Slot [45] registered
[    3.013806] acpiphp: Slot [46] registered
[    3.013816] acpiphp: Slot [47] registered
[    3.013824] acpiphp: Slot [48] registered
[    3.013832] acpiphp: Slot [49] registered
[    3.013840] acpiphp: Slot [50] registered
[    3.013848] acpiphp: Slot [51] registered
[    3.013856] acpiphp: Slot [52] registered
[    3.013866] acpiphp: Slot [53] registered
[    3.013874] acpiphp: Slot [54] registered
[    3.013882] acpiphp: Slot [55] registered
[    3.013889] acpiphp: Slot [56] registered
[    3.013899] acpiphp: Slot [57] registered
[    3.013907] acpiphp: Slot [58] registered
[    3.013916] acpiphp: Slot [59] registered
[    3.013924] acpiphp: Slot [60] registered
[    3.013933] acpiphp: Slot [61] registered
[    3.013941] acpiphp: Slot [62] registered
[    3.013949] acpiphp: Slot [63] registered
[    3.013997] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    3.014016] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    3.014035] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    3.014070] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    3.014071] pci 0000:00:11.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    3.014072] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    3.014073] pci 0000:00:11.0:   bridge window [mem 0xfef00000-0xffdfffff window] (subtractive decode)
[    3.014074] pci 0000:00:11.0:   bridge window [mem 0xfed45000-0xfedfffff window] (subtractive decode)
[    3.014075] pci 0000:00:11.0:   bridge window [mem 0xfec10000-0xfed3ffff window] (subtractive decode)
[    3.014076] pci 0000:00:11.0:   bridge window [mem 0xfa300000-0xfebfffff window] (subtractive decode)
[    3.014076] pci 0000:00:11.0:   bridge window [mem 0xf0000000-0xfa2fffff pref window] (subtractive decode)
[    3.014077] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xefffffff window] (subtractive decode)
[    3.014078] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    3.014079] pci 0000:00:11.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    3.014080] pci 0000:00:11.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    3.014081] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    3.014081] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    3.014082] pci 0000:00:11.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    3.014083] pci 0000:00:11.0:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    3.014084] pci 0000:00:11.0:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    3.014457] pci 0000:03:00.0: [15ad:07c0] type 00 class 0x010700
[    3.016815] pci 0000:03:00.0: reg 0x10: [io  0x4000-0x4007]
[    3.017811] pci 0000:03:00.0: reg 0x14: [mem 0xfea10000-0xfea17fff 64bit]
[    3.019811] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    3.019811] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    3.019811] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    3.019811] pci 0000:00:15.0: PCI bridge to [bus 03]
[    3.019811] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    3.019811] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    3.019811] pci 0000:00:15.1: PCI bridge to [bus 04]
[    3.019811] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    3.019811] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    3.019811] pci 0000:00:15.2: PCI bridge to [bus 05]
[    3.019811] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    3.019811] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    3.019811] pci 0000:00:15.3: PCI bridge to [bus 06]
[    3.019811] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    3.019811] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    3.019811] pci 0000:00:15.4: PCI bridge to [bus 07]
[    3.019811] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    3.019811] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    3.019811] pci 0000:00:15.5: PCI bridge to [bus 08]
[    3.019811] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    3.019811] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    3.019811] pci 0000:00:15.6: PCI bridge to [bus 09]
[    3.019811] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    3.019811] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    3.019811] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    3.019811] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    3.019811] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    3.019811] pci 0000:0b:00.0: [15ad:07b0] type 00 class 0x020000
[    3.019811] pci 0000:0b:00.0: reg 0x10: [mem 0xfe213000-0xfe213fff]
[    3.019811] pci 0000:0b:00.0: reg 0x14: [mem 0xfe212000-0xfe212fff]
[    3.019811] pci 0000:0b:00.0: reg 0x18: [mem 0xfe210000-0xfe211fff]
[    3.019811] pci 0000:0b:00.0: reg 0x1c: [io  0x3000-0x300f]
[    3.019811] pci 0000:0b:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    3.019811] pci 0000:0b:00.0: supports D1 D2
[    3.019811] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.019811] pci 0000:0b:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    3.019811] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    3.019811] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    3.019811] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    3.019811] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    3.019811] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    3.019811] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    3.019811] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    3.019811] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    3.019811] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    3.019811] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    3.019811] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    3.019811] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    3.019811] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    3.019811] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    3.019811] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    3.019811] pci 0000:00:16.5: PCI bridge to [bus 10]
[    3.019811] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    3.019811] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    3.019811] pci 0000:00:16.6: PCI bridge to [bus 11]
[    3.019811] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    3.019811] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    3.019811] pci 0000:00:16.7: PCI bridge to [bus 12]
[    3.019811] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    3.019811] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    3.019811] pci 0000:00:17.0: PCI bridge to [bus 13]
[    3.019811] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    3.019811] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    3.019811] pci 0000:00:17.1: PCI bridge to [bus 14]
[    3.019811] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    3.019811] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    3.019811] pci 0000:00:17.2: PCI bridge to [bus 15]
[    3.019811] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    3.019811] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    3.019811] pci 0000:00:17.3: PCI bridge to [bus 16]
[    3.019811] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    3.019811] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    3.019811] pci 0000:00:17.4: PCI bridge to [bus 17]
[    3.019811] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    3.019811] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    3.019811] pci 0000:00:17.5: PCI bridge to [bus 18]
[    3.019811] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    3.019811] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    3.019811] pci 0000:00:17.6: PCI bridge to [bus 19]
[    3.019811] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    3.019811] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    3.019811] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    3.019811] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    3.019811] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    3.019811] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    3.019811] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    3.019811] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    3.019811] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    3.019811] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    3.019811] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    3.026019] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    3.026054] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    3.026089] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    3.026338] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    3.026384] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    3.026420] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    3.026669] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    3.026704] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    3.026740] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    3.026811] pci 0000:00:18.5: PCI bridge to [bus 20]
[    3.026811] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    3.026811] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    3.026811] pci 0000:00:18.6: PCI bridge to [bus 21]
[    3.026811] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    3.026811] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    3.026811] pci 0000:00:18.7: PCI bridge to [bus 22]
[    3.026811] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    3.026811] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    3.029380] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.029462] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.029527] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.029590] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.044844] iommu: Default domain type: Passthrough 
[    3.044848] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[    3.044848] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    3.044848] pci 0000:00:0f.0: vgaarb: bridge control possible
[    3.044848] vgaarb: loaded
[    3.045088] SCSI subsystem initialized
[    3.045111] ACPI: bus type USB registered
[    3.045129] usbcore: registered new interface driver usbfs
[    3.045138] usbcore: registered new interface driver hub
[    3.045831] usbcore: registered new device driver usb
[    3.045831] pps_core: LinuxPPS API ver. 1 registered
[    3.045831] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    3.045831] PTP clock support registered
[    3.046889] EDAC MC: Ver: 3.0.0
[    3.047982] Registered efivars operations
[    3.048125] NetLabel: Initializing
[    3.048126] NetLabel:  domain hash size = 128
[    3.048127] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    3.048139] NetLabel:  unlabeled traffic allowed by default
[    3.048140] PCI: Using ACPI for IRQ routing
[    3.051957] PCI: pci_cache_line_size set to 64 bytes
[    3.052714] e820: reserve RAM buffer [mem 0x0e0a1018-0x0fffffff]
[    3.052716] e820: reserve RAM buffer [mem 0x0e0a3018-0x0fffffff]
[    3.052717] e820: reserve RAM buffer [mem 0x0e0a6018-0x0fffffff]
[    3.052718] e820: reserve RAM buffer [mem 0x0ef24000-0x0fffffff]
[    3.052719] e820: reserve RAM buffer [mem 0x0ef3c000-0x0fffffff]
[    3.052720] e820: reserve RAM buffer [mem 0x0ef61000-0x0fffffff]
[    3.052721] e820: reserve RAM buffer [mem 0x0fee7000-0x0fffffff]
[    3.052887] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    3.052895] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    3.056863] clocksource: Switched to clocksource tsc-early
[    3.073954] VFS: Disk quotas dquot_6.6.0
[    3.074073] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.074314] pnp: PnP ACPI init
[    3.074457] system 00:00: [io  0x0440-0x047f] has been reserved
[    3.074459] system 00:00: [io  0x5658-0x5659] has been reserved
[    3.074460] system 00:00: [io  0x5670] has been reserved
[    3.074462] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    3.074467] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    3.074489] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    3.074504] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    3.074519] pnp 00:03: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
[    3.074661] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    3.074664] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    3.075778] system 00:05: [io  0x0400-0x041f] has been reserved
[    3.075779] system 00:05: [mem 0xe0000000-0xe7ffffff] has been reserved
[    3.075780] system 00:05: [mem 0xffc00000-0xffdfffff] could not be reserved
[    3.075782] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    3.076492] pnp: PnP ACPI: found 6 devices
[    3.084137] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    3.084292] NET: Registered protocol family 2
[    3.084969] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    3.085325] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.086185] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    3.086390] TCP: Hash tables configured (established 524288 bind 65536)
[    3.086599] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    3.087083] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    3.087766] NET: Registered protocol family 1
[    3.087772] NET: Registered protocol family 44
[    3.087785] pci 0000:00:0f.0: can't claim BAR 6 [mem 0xffff8000-0xffffffff pref]: no compatible bridge window
[    3.087787] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    3.087788] pci 0000:0b:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    3.087795] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    3.087796] pci 0000:00:15.1: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    3.087797] pci 0000:00:15.2: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    3.087798] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    3.087799] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    3.087800] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    3.087801] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    3.087802] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    3.087805] pci 0000:00:16.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    3.087806] pci 0000:00:16.1: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    3.087807] pci 0000:00:16.2: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    3.087808] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    3.087809] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    3.087810] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    3.087810] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    3.087811] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    3.087814] pci 0000:00:17.0: bridge window [io  0x1000-0x0fff] to [bus 13] add_size 1000
[    3.087819] pci 0000:00:17.1: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    3.087821] pci 0000:00:17.2: bridge window [io  0x1000-0x0fff] to [bus 15] add_size 1000
[    3.087821] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    3.087823] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    3.087823] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    3.087824] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    3.087825] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    3.087826] pci 0000:00:18.0: bridge window [io  0x1000-0x0fff] to [bus 1b] add_size 1000
[    3.087827] pci 0000:00:18.1: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
[    3.087829] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    3.087829] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    3.087830] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    3.087832] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    3.087832] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    3.087833] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    3.087853] pci 0000:00:15.0: BAR 15: assigned [mem 0xfef00000-0xff0fffff 64bit pref]
[    3.087857] pci 0000:00:16.0: BAR 15: assigned [mem 0xff100000-0xff2fffff 64bit pref]
[    3.087859] pci 0000:00:0f.0: BAR 6: assigned [mem 0xff300000-0xff307fff pref]
[    3.087860] pci 0000:00:15.1: BAR 13: assigned [io  0x6000-0x6fff]
[    3.087861] pci 0000:00:15.2: BAR 13: assigned [io  0x7000-0x7fff]
[    3.087862] pci 0000:00:15.3: BAR 13: assigned [io  0x8000-0x8fff]
[    3.087863] pci 0000:00:15.4: BAR 13: assigned [io  0x9000-0x9fff]
[    3.087864] pci 0000:00:15.5: BAR 13: assigned [io  0xa000-0xafff]
[    3.087864] pci 0000:00:15.6: BAR 13: assigned [io  0xb000-0xbfff]
[    3.087865] pci 0000:00:15.7: BAR 13: assigned [io  0xc000-0xcfff]
[    3.087866] pci 0000:00:16.1: BAR 13: assigned [io  0xd000-0xdfff]
[    3.087867] pci 0000:00:16.2: BAR 13: assigned [io  0xe000-0xefff]
[    3.087868] pci 0000:00:16.3: BAR 13: assigned [io  0xf000-0xffff]
[    3.087870] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    3.087871] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    3.087872] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    3.087873] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    3.087874] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    3.087875] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    3.087876] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    3.087877] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    3.087878] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    3.087879] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    3.087880] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    3.087881] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    3.087882] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    3.087882] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    3.087884] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    3.087884] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    3.087885] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    3.087886] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    3.087887] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    3.087888] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    3.087889] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    3.087890] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    3.087891] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    3.087891] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    3.087893] pci 0000:00:18.0: BAR 13: no space for [io  size 0x1000]
[    3.087893] pci 0000:00:18.0: BAR 13: failed to assign [io  size 0x1000]
[    3.087894] pci 0000:00:18.1: BAR 13: no space for [io  size 0x1000]
[    3.087895] pci 0000:00:18.1: BAR 13: failed to assign [io  size 0x1000]
[    3.087896] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    3.087897] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    3.087898] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    3.087899] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    3.087900] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    3.087901] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    3.087902] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    3.087902] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    3.087904] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    3.087904] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    3.087906] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    3.087906] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    3.087909] pci 0000:00:18.7: BAR 13: assigned [io  0x6000-0x6fff]
[    3.087910] pci 0000:00:18.6: BAR 13: assigned [io  0x7000-0x7fff]
[    3.087911] pci 0000:00:18.5: BAR 13: assigned [io  0x8000-0x8fff]
[    3.087912] pci 0000:00:18.4: BAR 13: assigned [io  0x9000-0x9fff]
[    3.087913] pci 0000:00:18.3: BAR 13: assigned [io  0xa000-0xafff]
[    3.087914] pci 0000:00:18.2: BAR 13: assigned [io  0xb000-0xbfff]
[    3.087915] pci 0000:00:18.1: BAR 13: assigned [io  0xc000-0xcfff]
[    3.087915] pci 0000:00:18.0: BAR 13: assigned [io  0xd000-0xdfff]
[    3.087916] pci 0000:00:17.7: BAR 13: assigned [io  0xe000-0xefff]
[    3.087917] pci 0000:00:17.6: BAR 13: assigned [io  0xf000-0xffff]
[    3.087918] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    3.087919] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    3.087920] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    3.087921] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    3.087922] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    3.087923] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    3.087924] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    3.087925] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    3.087926] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    3.087926] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    3.087928] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    3.087928] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    3.087930] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    3.087930] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    3.087931] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    3.087932] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    3.087933] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    3.087934] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    3.087935] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    3.087936] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    3.087937] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    3.087937] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    3.087939] pci 0000:00:16.2: BAR 13: no space for [io  size 0x1000]
[    3.087939] pci 0000:00:16.2: BAR 13: failed to assign [io  size 0x1000]
[    3.087941] pci 0000:00:16.1: BAR 13: no space for [io  size 0x1000]
[    3.087941] pci 0000:00:16.1: BAR 13: failed to assign [io  size 0x1000]
[    3.087942] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    3.087943] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    3.087944] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    3.087945] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    3.087946] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    3.087946] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    3.087948] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    3.087948] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    3.087950] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    3.087950] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
[    3.087951] pci 0000:00:15.2: BAR 13: no space for [io  size 0x1000]
[    3.087952] pci 0000:00:15.2: BAR 13: failed to assign [io  size 0x1000]
[    3.087953] pci 0000:00:15.1: BAR 13: no space for [io  size 0x1000]
[    3.087954] pci 0000:00:15.1: BAR 13: failed to assign [io  size 0x1000]
[    3.087956] pci 0000:00:01.0: PCI bridge to [bus 01]
[    3.088026] pci 0000:00:11.0: PCI bridge to [bus 02]
[    3.088034] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    3.088054] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    3.088068] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    3.088095] pci 0000:03:00.0: BAR 6: assigned [mem 0xfea00000-0xfea0ffff pref]
[    3.088096] pci 0000:00:15.0: PCI bridge to [bus 03]
[    3.088103] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    3.088123] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    3.088136] pci 0000:00:15.0:   bridge window [mem 0xfef00000-0xff0fffff 64bit pref]
[    3.088163] pci 0000:00:15.1: PCI bridge to [bus 04]
[    3.088182] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    3.088196] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    3.088222] pci 0000:00:15.2: PCI bridge to [bus 05]
[    3.088242] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    3.088255] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    3.088281] pci 0000:00:15.3: PCI bridge to [bus 06]
[    3.088301] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    3.088314] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    3.088341] pci 0000:00:15.4: PCI bridge to [bus 07]
[    3.088361] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    3.088375] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    3.088401] pci 0000:00:15.5: PCI bridge to [bus 08]
[    3.088421] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    3.088435] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    3.088461] pci 0000:00:15.6: PCI bridge to [bus 09]
[    3.088481] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    3.088494] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    3.088520] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    3.088540] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    3.088553] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    3.088580] pci 0000:0b:00.0: BAR 6: assigned [mem 0xfe200000-0xfe20ffff pref]
[    3.088581] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    3.088588] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    3.088607] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    3.088621] pci 0000:00:16.0:   bridge window [mem 0xff100000-0xff2fffff 64bit pref]
[    3.088647] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    3.088667] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    3.088680] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    3.088706] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    3.088726] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    3.088739] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    3.088765] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    3.088785] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    3.088798] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    3.088828] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    3.088848] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    3.088862] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    3.088888] pci 0000:00:16.5: PCI bridge to [bus 10]
[    3.088908] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    3.088921] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    3.088947] pci 0000:00:16.6: PCI bridge to [bus 11]
[    3.088967] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    3.088980] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    3.089006] pci 0000:00:16.7: PCI bridge to [bus 12]
[    3.089026] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    3.089040] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    3.089065] pci 0000:00:17.0: PCI bridge to [bus 13]
[    3.089085] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    3.089099] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    3.089125] pci 0000:00:17.1: PCI bridge to [bus 14]
[    3.089144] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    3.089158] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    3.089184] pci 0000:00:17.2: PCI bridge to [bus 15]
[    3.089204] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    3.089217] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    3.089243] pci 0000:00:17.3: PCI bridge to [bus 16]
[    3.089263] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    3.089276] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    3.089302] pci 0000:00:17.4: PCI bridge to [bus 17]
[    3.089322] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    3.089336] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    3.089362] pci 0000:00:17.5: PCI bridge to [bus 18]
[    3.089381] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    3.089395] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    3.089421] pci 0000:00:17.6: PCI bridge to [bus 19]
[    3.089428] pci 0000:00:17.6:   bridge window [io  0xf000-0xffff]
[    3.089447] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    3.089461] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    3.089487] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    3.089494] pci 0000:00:17.7:   bridge window [io  0xe000-0xefff]
[    3.089514] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    3.089527] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    3.089553] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    3.089560] pci 0000:00:18.0:   bridge window [io  0xd000-0xdfff]
[    3.089580] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    3.089593] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    3.089619] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    3.089626] pci 0000:00:18.1:   bridge window [io  0xc000-0xcfff]
[    3.089646] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    3.089659] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    3.089685] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    3.089692] pci 0000:00:18.2:   bridge window [io  0xb000-0xbfff]
[    3.089712] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    3.089725] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    3.089751] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    3.089758] pci 0000:00:18.3:   bridge window [io  0xa000-0xafff]
[    3.089778] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    3.089792] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    3.089820] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    3.089827] pci 0000:00:18.4:   bridge window [io  0x9000-0x9fff]
[    3.089847] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    3.089861] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    3.089887] pci 0000:00:18.5: PCI bridge to [bus 20]
[    3.089894] pci 0000:00:18.5:   bridge window [io  0x8000-0x8fff]
[    3.089913] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    3.089927] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    3.089953] pci 0000:00:18.6: PCI bridge to [bus 21]
[    3.089960] pci 0000:00:18.6:   bridge window [io  0x7000-0x7fff]
[    3.089979] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    3.089993] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    3.090019] pci 0000:00:18.7: PCI bridge to [bus 22]
[    3.090026] pci 0000:00:18.7:   bridge window [io  0x6000-0x6fff]
[    3.090046] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    3.090059] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    3.090085] pci_bus 0000:00: resource 4 [io  0x0d00-0xffff window]
[    3.090086] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    3.090087] pci_bus 0000:00: resource 6 [mem 0xfef00000-0xffdfffff window]
[    3.090088] pci_bus 0000:00: resource 7 [mem 0xfed45000-0xfedfffff window]
[    3.090088] pci_bus 0000:00: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    3.090089] pci_bus 0000:00: resource 9 [mem 0xfa300000-0xfebfffff window]
[    3.090090] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    3.090090] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xefffffff window]
[    3.090091] pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
[    3.090091] pci_bus 0000:00: resource 13 [mem 0x000c4000-0x000c7fff window]
[    3.090092] pci_bus 0000:00: resource 14 [mem 0x000c8000-0x000cbfff window]
[    3.090092] pci_bus 0000:00: resource 15 [mem 0x000d4000-0x000d7fff window]
[    3.090093] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000dbfff window]
[    3.090094] pci_bus 0000:00: resource 17 [mem 0x000e4000-0x000e7fff window]
[    3.090094] pci_bus 0000:00: resource 18 [mem 0x000e8000-0x000ebfff window]
[    3.090095] pci_bus 0000:00: resource 19 [mem 0x000ec000-0x000effff window]
[    3.090096] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    3.090096] pci_bus 0000:02: resource 1 [mem 0xfc000000-0xfc9fffff]
[    3.090097] pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf84fffff 64bit pref]
[    3.090097] pci_bus 0000:02: resource 4 [io  0x0d00-0xffff window]
[    3.090098] pci_bus 0000:02: resource 5 [io  0x0000-0x0cf7 window]
[    3.090099] pci_bus 0000:02: resource 6 [mem 0xfef00000-0xffdfffff window]
[    3.090099] pci_bus 0000:02: resource 7 [mem 0xfed45000-0xfedfffff window]
[    3.090100] pci_bus 0000:02: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    3.090100] pci_bus 0000:02: resource 9 [mem 0xfa300000-0xfebfffff window]
[    3.090101] pci_bus 0000:02: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    3.090102] pci_bus 0000:02: resource 11 [mem 0xc0000000-0xefffffff window]
[    3.090102] pci_bus 0000:02: resource 12 [mem 0x000a0000-0x000bffff window]
[    3.090103] pci_bus 0000:02: resource 13 [mem 0x000c4000-0x000c7fff window]
[    3.090103] pci_bus 0000:02: resource 14 [mem 0x000c8000-0x000cbfff window]
[    3.090104] pci_bus 0000:02: resource 15 [mem 0x000d4000-0x000d7fff window]
[    3.090105] pci_bus 0000:02: resource 16 [mem 0x000d8000-0x000dbfff window]
[    3.090105] pci_bus 0000:02: resource 17 [mem 0x000e4000-0x000e7fff window]
[    3.090106] pci_bus 0000:02: resource 18 [mem 0x000e8000-0x000ebfff window]
[    3.090106] pci_bus 0000:02: resource 19 [mem 0x000ec000-0x000effff window]
[    3.090107] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    3.090108] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    3.090108] pci_bus 0000:03: resource 2 [mem 0xfef00000-0xff0fffff 64bit pref]
[    3.090109] pci_bus 0000:04: resource 1 [mem 0xfe900000-0xfe9fffff]
[    3.090110] pci_bus 0000:04: resource 2 [mem 0xfa200000-0xfa2fffff 64bit pref]
[    3.090110] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]
[    3.090111] pci_bus 0000:05: resource 2 [mem 0xfa100000-0xfa1fffff 64bit pref]
[    3.090112] pci_bus 0000:06: resource 1 [mem 0xfe700000-0xfe7fffff]
[    3.090112] pci_bus 0000:06: resource 2 [mem 0xfa000000-0xfa0fffff 64bit pref]
[    3.090113] pci_bus 0000:07: resource 1 [mem 0xfe600000-0xfe6fffff]
[    3.090113] pci_bus 0000:07: resource 2 [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    3.090114] pci_bus 0000:08: resource 1 [mem 0xfe500000-0xfe5fffff]
[    3.090115] pci_bus 0000:08: resource 2 [mem 0xf9e00000-0xf9efffff 64bit pref]
[    3.090115] pci_bus 0000:09: resource 1 [mem 0xfe400000-0xfe4fffff]
[    3.090116] pci_bus 0000:09: resource 2 [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    3.090116] pci_bus 0000:0a: resource 1 [mem 0xfe300000-0xfe3fffff]
[    3.090117] pci_bus 0000:0a: resource 2 [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    3.090118] pci_bus 0000:0b: resource 0 [io  0x3000-0x3fff]
[    3.090118] pci_bus 0000:0b: resource 1 [mem 0xfe200000-0xfe2fffff]
[    3.090119] pci_bus 0000:0b: resource 2 [mem 0xff100000-0xff2fffff 64bit pref]
[    3.090119] pci_bus 0000:0c: resource 1 [mem 0xfe100000-0xfe1fffff]
[    3.090120] pci_bus 0000:0c: resource 2 [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    3.090121] pci_bus 0000:0d: resource 1 [mem 0xfe000000-0xfe0fffff]
[    3.090121] pci_bus 0000:0d: resource 2 [mem 0xf9a00000-0xf9afffff 64bit pref]
[    3.090122] pci_bus 0000:0e: resource 1 [mem 0xfdf00000-0xfdffffff]
[    3.090122] pci_bus 0000:0e: resource 2 [mem 0xf9900000-0xf99fffff 64bit pref]
[    3.090123] pci_bus 0000:0f: resource 1 [mem 0xfde00000-0xfdefffff]
[    3.090123] pci_bus 0000:0f: resource 2 [mem 0xf9800000-0xf98fffff 64bit pref]
[    3.090124] pci_bus 0000:10: resource 1 [mem 0xfdd00000-0xfddfffff]
[    3.090125] pci_bus 0000:10: resource 2 [mem 0xf9700000-0xf97fffff 64bit pref]
[    3.090125] pci_bus 0000:11: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    3.090126] pci_bus 0000:11: resource 2 [mem 0xf9600000-0xf96fffff 64bit pref]
[    3.090126] pci_bus 0000:12: resource 1 [mem 0xfdb00000-0xfdbfffff]
[    3.090127] pci_bus 0000:12: resource 2 [mem 0xf9500000-0xf95fffff 64bit pref]
[    3.090128] pci_bus 0000:13: resource 1 [mem 0xfda00000-0xfdafffff]
[    3.090128] pci_bus 0000:13: resource 2 [mem 0xf9400000-0xf94fffff 64bit pref]
[    3.090129] pci_bus 0000:14: resource 1 [mem 0xfd900000-0xfd9fffff]
[    3.090129] pci_bus 0000:14: resource 2 [mem 0xf9300000-0xf93fffff 64bit pref]
[    3.090130] pci_bus 0000:15: resource 1 [mem 0xfd800000-0xfd8fffff]
[    3.090130] pci_bus 0000:15: resource 2 [mem 0xf9200000-0xf92fffff 64bit pref]
[    3.090131] pci_bus 0000:16: resource 1 [mem 0xfd700000-0xfd7fffff]
[    3.090132] pci_bus 0000:16: resource 2 [mem 0xf9100000-0xf91fffff 64bit pref]
[    3.090132] pci_bus 0000:17: resource 1 [mem 0xfd600000-0xfd6fffff]
[    3.090133] pci_bus 0000:17: resource 2 [mem 0xf9000000-0xf90fffff 64bit pref]
[    3.090133] pci_bus 0000:18: resource 1 [mem 0xfd500000-0xfd5fffff]
[    3.090134] pci_bus 0000:18: resource 2 [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    3.090134] pci_bus 0000:19: resource 0 [io  0xf000-0xffff]
[    3.090135] pci_bus 0000:19: resource 1 [mem 0xfd400000-0xfd4fffff]
[    3.090136] pci_bus 0000:19: resource 2 [mem 0xf8e00000-0xf8efffff 64bit pref]
[    3.090136] pci_bus 0000:1a: resource 0 [io  0xe000-0xefff]
[    3.090137] pci_bus 0000:1a: resource 1 [mem 0xfd300000-0xfd3fffff]
[    3.090137] pci_bus 0000:1a: resource 2 [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    3.090138] pci_bus 0000:1b: resource 0 [io  0xd000-0xdfff]
[    3.090138] pci_bus 0000:1b: resource 1 [mem 0xfd200000-0xfd2fffff]
[    3.090139] pci_bus 0000:1b: resource 2 [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    3.090140] pci_bus 0000:1c: resource 0 [io  0xc000-0xcfff]
[    3.090140] pci_bus 0000:1c: resource 1 [mem 0xfd100000-0xfd1fffff]
[    3.090141] pci_bus 0000:1c: resource 2 [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    3.090141] pci_bus 0000:1d: resource 0 [io  0xb000-0xbfff]
[    3.090142] pci_bus 0000:1d: resource 1 [mem 0xfd000000-0xfd0fffff]
[    3.090143] pci_bus 0000:1d: resource 2 [mem 0xf8a00000-0xf8afffff 64bit pref]
[    3.090143] pci_bus 0000:1e: resource 0 [io  0xa000-0xafff]
[    3.090144] pci_bus 0000:1e: resource 1 [mem 0xfcf00000-0xfcffffff]
[    3.090144] pci_bus 0000:1e: resource 2 [mem 0xf8900000-0xf89fffff 64bit pref]
[    3.090145] pci_bus 0000:1f: resource 0 [io  0x9000-0x9fff]
[    3.090145] pci_bus 0000:1f: resource 1 [mem 0xfce00000-0xfcefffff]
[    3.090146] pci_bus 0000:1f: resource 2 [mem 0xf8800000-0xf88fffff 64bit pref]
[    3.090147] pci_bus 0000:20: resource 0 [io  0x8000-0x8fff]
[    3.090147] pci_bus 0000:20: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    3.090148] pci_bus 0000:20: resource 2 [mem 0xf8700000-0xf87fffff 64bit pref]
[    3.090148] pci_bus 0000:21: resource 0 [io  0x7000-0x7fff]
[    3.090149] pci_bus 0000:21: resource 1 [mem 0xfcc00000-0xfccfffff]
[    3.090150] pci_bus 0000:21: resource 2 [mem 0xf8600000-0xf86fffff 64bit pref]
[    3.090150] pci_bus 0000:22: resource 0 [io  0x6000-0x6fff]
[    3.090151] pci_bus 0000:22: resource 1 [mem 0xfcb00000-0xfcbfffff]
[    3.090151] pci_bus 0000:22: resource 2 [mem 0xf8500000-0xf85fffff 64bit pref]
[    3.090208] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    3.090275] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    3.090528] PCI: CLS 32 bytes, default 64
[    3.090565] Trying to unpack rootfs image as initramfs...
[    4.028043] Freeing initrd memory: 72668K
[    4.028065] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    4.028067] software IO TLB: mapped [mem 0x00000000bc000000-0x00000000c0000000] (64MB)
[    4.058255] Initialise system trusted keyrings
[    4.058263] Key type blacklist registered
[    4.058547] workingset: timestamp_bits=36 max_order=28 bucket_order=0
[    4.059713] zbud: loaded
[    4.062627] integrity: Platform Keyring initialized
[    4.070862] NET: Registered protocol family 38
[    4.070865] Key type asymmetric registered
[    4.070867] Asymmetric key parser 'x509' registered
[    4.070875] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    4.071470] io scheduler mq-deadline registered
[    4.071471] io scheduler kyber registered
[    4.071526] io scheduler bfq registered
[    4.074408] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    4.074949] pcieport 0000:00:15.0: PME: Signaling with IRQ 24
[    4.075030] pcieport 0000:00:15.0: pciehp: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.075904] pcieport 0000:00:15.1: PME: Signaling with IRQ 25
[    4.075978] pcieport 0000:00:15.1: pciehp: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.076839] pcieport 0000:00:15.2: PME: Signaling with IRQ 26
[    4.076913] pcieport 0000:00:15.2: pciehp: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.077763] pcieport 0000:00:15.3: PME: Signaling with IRQ 27
[    4.077844] pcieport 0000:00:15.3: pciehp: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.078688] pcieport 0000:00:15.4: PME: Signaling with IRQ 28
[    4.078763] pcieport 0000:00:15.4: pciehp: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.079610] pcieport 0000:00:15.5: PME: Signaling with IRQ 29
[    4.079685] pcieport 0000:00:15.5: pciehp: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.080529] pcieport 0000:00:15.6: PME: Signaling with IRQ 30
[    4.080603] pcieport 0000:00:15.6: pciehp: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.081455] pcieport 0000:00:15.7: PME: Signaling with IRQ 31
[    4.081529] pcieport 0000:00:15.7: pciehp: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.082368] pcieport 0000:00:16.0: PME: Signaling with IRQ 32
[    4.082442] pcieport 0000:00:16.0: pciehp: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.083302] pcieport 0000:00:16.1: PME: Signaling with IRQ 33
[    4.083376] pcieport 0000:00:16.1: pciehp: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.084247] pcieport 0000:00:16.2: PME: Signaling with IRQ 34
[    4.084319] pcieport 0000:00:16.2: pciehp: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.085184] pcieport 0000:00:16.3: PME: Signaling with IRQ 35
[    4.085258] pcieport 0000:00:16.3: pciehp: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.086107] pcieport 0000:00:16.4: PME: Signaling with IRQ 36
[    4.086179] pcieport 0000:00:16.4: pciehp: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.087035] pcieport 0000:00:16.5: PME: Signaling with IRQ 37
[    4.087111] pcieport 0000:00:16.5: pciehp: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.087969] pcieport 0000:00:16.6: PME: Signaling with IRQ 38
[    4.088042] pcieport 0000:00:16.6: pciehp: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.088890] pcieport 0000:00:16.7: PME: Signaling with IRQ 39
[    4.088964] pcieport 0000:00:16.7: pciehp: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.089806] pcieport 0000:00:17.0: PME: Signaling with IRQ 40
[    4.089885] pcieport 0000:00:17.0: pciehp: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.090703] pcieport 0000:00:17.1: PME: Signaling with IRQ 41
[    4.090773] pcieport 0000:00:17.1: pciehp: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.091641] pcieport 0000:00:17.2: PME: Signaling with IRQ 42
[    4.091714] pcieport 0000:00:17.2: pciehp: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.092600] pcieport 0000:00:17.3: PME: Signaling with IRQ 43
[    4.092674] pcieport 0000:00:17.3: pciehp: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.093526] pcieport 0000:00:17.4: PME: Signaling with IRQ 44
[    4.093612] pcieport 0000:00:17.4: pciehp: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.094394] pcieport 0000:00:17.5: PME: Signaling with IRQ 45
[    4.094467] pcieport 0000:00:17.5: pciehp: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.095321] pcieport 0000:00:17.6: PME: Signaling with IRQ 46
[    4.095396] pcieport 0000:00:17.6: pciehp: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.096260] pcieport 0000:00:17.7: PME: Signaling with IRQ 47
[    4.096332] pcieport 0000:00:17.7: pciehp: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.097182] pcieport 0000:00:18.0: PME: Signaling with IRQ 48
[    4.097258] pcieport 0000:00:18.0: pciehp: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.098112] pcieport 0000:00:18.1: PME: Signaling with IRQ 49
[    4.098183] pcieport 0000:00:18.1: pciehp: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.099046] pcieport 0000:00:18.2: PME: Signaling with IRQ 50
[    4.099120] pcieport 0000:00:18.2: pciehp: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.099957] pcieport 0000:00:18.3: PME: Signaling with IRQ 51
[    4.100030] pcieport 0000:00:18.3: pciehp: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.100906] pcieport 0000:00:18.4: PME: Signaling with IRQ 52
[    4.100977] pcieport 0000:00:18.4: pciehp: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.101794] pcieport 0000:00:18.5: PME: Signaling with IRQ 53
[    4.101872] pcieport 0000:00:18.5: pciehp: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.102701] pcieport 0000:00:18.6: PME: Signaling with IRQ 54
[    4.102772] pcieport 0000:00:18.6: pciehp: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.103582] pcieport 0000:00:18.7: PME: Signaling with IRQ 55
[    4.103652] pcieport 0000:00:18.7: pciehp: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    4.104175] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    4.104206] efifb: probing for efifb
[    4.104531] efifb: framebuffer at 0xf0000000, using 3072k, total 3072k
[    4.104532] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    4.104533] efifb: scrolling: redraw
[    4.104534] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    4.104678] Console: switching to colour frame buffer device 128x48
[    4.107721] fb0: EFI VGA frame buffer device
[    4.107732] intel_idle: Please enable MWAIT in BIOS SETUP
[    4.108025] ACPI: AC Adapter [ACAD] (on-line)
[    4.108120] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    4.108166] ACPI: Power Button [PWRF]
[    4.128339] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    4.129092] Non-volatile memory driver v1.3
[    4.139988] rdac: device handler registered
[    4.140207] hp_sw: device handler registered
[    4.140208] emc: device handler registered
[    4.140764] alua: device handler registered
[    4.140872] libphy: Fixed MDIO Bus: probed
[    4.140945] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    4.140948] ehci-pci: EHCI PCI platform driver
[    4.140958] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    4.140961] ohci-pci: OHCI PCI platform driver
[    4.140970] uhci_hcd: USB Universal Host Controller Interface driver
[    4.141016] usbcore: registered new interface driver usbserial_generic
[    4.141020] usbserial: USB Serial support registered for generic
[    4.141067] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    4.143431] serio: i8042 KBD port at 0x60,0x64 irq 1
[    4.143436] serio: i8042 AUX port at 0x60,0x64 irq 12
[    4.143667] mousedev: PS/2 mouse device common for all mice
[    4.164624] rtc_cmos 00:01: registered as rtc0
[    4.164949] rtc_cmos 00:01: setting system clock to 2020-10-19T17:10:20 UTC (1603127420)
[    4.164995] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    4.165026] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    4.165098] intel_pstate: CPU model not supported
[    4.165649] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    4.166077] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    4.166442] EFI Variables Facility v0.08 2004-May-17
[    4.169434] hid: raw HID events driver (C) Jiri Kosina
[    4.169474] usbcore: registered new interface driver usbhid
[    4.169474] usbhid: USB HID core driver
[    4.169954] drop_monitor: Initializing network drop monitor service
[    4.170040] Initializing XFRM netlink socket
[    4.170186] NET: Registered protocol family 10
[    4.171067] Segment Routing with IPv6
[    4.171082] NET: Registered protocol family 17
[    4.171133] mpls_gso: MPLS GSO support
[    4.178396] IPI shorthand broadcast: enabled
[    4.178413] AVX2 version of gcm_enc/dec engaged.
[    4.178414] AES CTR mode by8 optimization enabled
[    4.193947] sched_clock: Marking stable (4187647536, 6296415)->(4363874223, -169930272)
[    4.194763] registered taskstats version 1
[    4.194783] Loading compiled-in X.509 certificates
[    4.222863] Loaded X.509 cert 'Build time autogenerated kernel key: 982081f93f6846988adc62d58c43321f47a8fffe'
[    4.222954] zswap: loaded using pool lzo/zbud
[    4.226360] Key type encrypted registered
[    4.226663] integrity: Loading X.509 certificate: UEFI:db
[    4.226707] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    4.226708] integrity: Loading X.509 certificate: UEFI:db
[    4.226884] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    4.226884] integrity: Loading X.509 certificate: UEFI:db
[    4.226902] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    4.226902] integrity: Loading X.509 certificate: UEFI:db
[    4.226915] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    4.227433] integrity: Loading X.509 certificate: UEFI:MokListRT
[    4.227600] integrity: Loaded X.509 cert 'Red Hat Secure Boot (CA key 1): 4016841644ce3a810408050766e8f8a29c65f85c'
[    4.227602] ima: No TPM chip found, activating TPM-bypass!
[    4.227607] ima: Allocated hash algorithm: sha1
[    4.227615] ima: No architecture policies found
[    4.227630] evm: Initialising EVM extended attributes:
[    4.227631] evm: security.selinux
[    4.227631] evm: security.ima
[    4.227632] evm: security.capability
[    4.227633] evm: HMAC attrs: 0x1
[    4.234401] Freeing unused decrypted memory: 2036K
[    4.235641] Freeing unused kernel image (initmem) memory: 2352K
[    4.242930] Write protecting the kernel read-only data: 20480k
[    4.244526] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    4.245916] Freeing unused kernel image (rodata/data gap) memory: 1768K
[    4.246094] Run /init as init process
[    4.246096]   with arguments:
[    4.246097]     /init
[    4.246097]     rhgb
[    4.246098]   with environment:
[    4.246099]     HOME=/
[    4.246099]     TERM=linux
[    4.246100]     BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0
[    4.246101]     crashkernel=auto
[    4.268803] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    4.268856] systemd[1]: Detected virtualization vmware.
[    4.268860] systemd[1]: Detected architecture x86-64.
[    4.268862] systemd[1]: Running in initial RAM disk.
[    4.277070] systemd[1]: Set hostname to <localhost.localdomain>.
[    4.326266] random: systemd: uninitialized urandom read (16 bytes read)
[    4.326276] systemd[1]: Reached target Swap.
[    4.326312] random: systemd: uninitialized urandom read (16 bytes read)
[    4.326392] systemd[1]: Listening on Journal Socket.
[    4.326462] random: systemd: uninitialized urandom read (16 bytes read)
[    4.328411] systemd[1]: Starting Setup Virtual Console...
[    4.329223] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    4.330045] systemd[1]: Starting Apply Kernel Variables...
[    4.826252] VMware PVSCSI driver - version 1.0.7.0-k
[    4.826320] VMware vmxnet3 virtual NIC driver - version 1.5.0.0-k-NAPI
[    4.826354] vmxnet3 0000:0b:00.0: # of Tx queues : 8, # of Rx queues : 8
[    4.826401] vmxnet3 0000:0b:00.0: enabling device (0000 -> 0003)
[    4.831796] vmw_pvscsi: using 64bit dma
[    4.831954] vmw_pvscsi: max_id: 65
[    4.831955] vmw_pvscsi: setting ring_pages to 32
[    4.833238] vmw_pvscsi: enabling reqCallThreshold
[    4.835986] vmw_pvscsi: driver-based request coalescing enabled
[    4.835987] vmw_pvscsi: using MSI-X
[    4.836105] scsi host0: VMware PVSCSI storage adapter rev 2, req/cmp/msg rings: 32/32/1 pages, cmd_per_lun=254
[    4.836793] vmw_pvscsi 0000:03:00.0: VMware PVSCSI rev 2 host #0
[    4.836978] vmxnet3 0000:0b:00.0 eth0: NIC Link is Up 10000 Mbps
[    4.837039] scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     2.0  PQ: 0 ANSI: 6
[    4.848162] libata version 3.00 loaded.
[    4.851846] ata_piix 0000:00:07.1: version 2.13
[    4.852357] scsi host1: ata_piix
[    4.852523] scsi host2: ata_piix
[    4.852554] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x2050 irq 14
[    4.852555] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x2058 irq 15
[    5.034336] [drm] DMA map mode: Caching DMA mappings.
[    5.034540] [drm] Capabilities:
[    5.034541] [drm]   Rect copy.
[    5.034542] [drm]   Cursor.
[    5.034542] [drm]   Cursor bypass.
[    5.034543] [drm]   Cursor bypass 2.
[    5.034543] [drm]   8bit emulation.
[    5.034544] [drm]   Alpha cursor.
[    5.034545] [drm]   Extended Fifo.
[    5.034545] [drm]   Multimon.
[    5.034545] [drm]   Pitchlock.
[    5.034546] [drm]   Irq mask.
[    5.034547] [drm]   Display Topology.
[    5.034547] [drm]   GMR.
[    5.034548] [drm]   Traces.
[    5.034548] [drm]   GMR2.
[    5.034549] [drm]   Screen Object 2.
[    5.034550] [drm]   Command Buffers.
[    5.034550] [drm]   Command Buffers 2.
[    5.034551] [drm]   Guest Backed Resources.
[    5.034552] [drm]   DX Features.
[    5.034552] [drm]   HP Command Queue.
[    5.034553] [drm] Capabilities2:
[    5.034553] [drm]   Grow oTable.
[    5.034553] [drm]   IntraSurface copy.
[    5.034554] [drm] Max GMR ids is 64
[    5.034555] [drm] Max number of GMR pages is 65536
[    5.034556] [drm] Max dedicated hypervisor surface memory is 0 kiB
[    5.034556] [drm] Maximum display memory size is 8192 kiB
[    5.034557] [drm] VRAM at 0xf0000000 size is 8192 kiB
[    5.034558] [drm] MMIO at 0xfb800000 size is 256 kiB
[    5.034596] vmwgfx 0000:00:0f.0: BAR 1: can't reserve [mem 0xf0000000-0xf7ffffff pref]
[    5.034597] [drm] It appears like vesafb is loaded. Ignore above error if any.
[    5.037674] [TTM] Zone  kernel: Available graphics memory: 528423292 KiB
[    5.037676] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    5.037677] [TTM] Initializing pool allocator
[    5.037683] [TTM] Initializing DMA pool allocator
[    5.038295] [drm] Screen Target Display device initialized
[    5.038331] [drm] width 1024
[    5.038337] [drm] height 768
[    5.038343] [drm] bpp 32
[    5.043211] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
[    5.044144] [drm] Using command buffers with DMA pool.
[    5.044150] [drm] Atomic: yes.
[    5.047856] tsc: Refined TSC clocksource calibration: 2095.080 MHz
[    5.047998] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e3308baada, max_idle_ns: 440795237786 ns
[    5.048761] clocksource: Switched to clocksource tsc
[    5.051004] checking generic (f0000000 300000) vs hw (f0000000 800000)
[    5.051007] fb0: switching to svgadrmfb from EFI VGA
[    5.060305] Console: switching to colour dummy device 80x25
[    5.067230] fbcon: svgadrmfb (fb0) is primary device
[    5.070492] Console: switching to colour frame buffer device 128x48
[    5.076644] [drm] Initialized vmwgfx 2.18.0 20200114 for 0000:00:0f.0 on minor 0
[    5.159639] vmxnet3 0000:0b:00.0 ens192: renamed from eth0
[    5.173422] sd 0:0:0:0: [sda] 41943040 512-byte logical blocks: (21.5 GB/20.0 GiB)
[    5.173456] sd 0:0:0:0: [sda] Write Protect is off
[    5.173458] sd 0:0:0:0: [sda] Mode Sense: 61 00 00 00
[    5.173491] sd 0:0:0:0: [sda] Cache data unavailable
[    5.173492] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    5.188363]  sda: sda1 sda2
[    5.189757] sd 0:0:0:0: [sda] Attached SCSI disk
[    5.305981] random: fast init done
[    5.438446] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    5.569868] random: crng init done
[    5.569869] random: 7 urandom warning(s) missed due to ratelimiting
[    5.746185] systemd-journald[779]: Received SIGTERM from PID 1 (systemd).
[    5.774250] printk: systemd: 22 output lines suppressed due to ratelimiting
[    5.822316] SELinux:  Runtime disable is deprecated, use selinux=0 on the kernel cmdline.
[    5.822346] SELinux:  Disabled at runtime.
[    5.856025] audit: type=1404 audit(1603127422.191:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1
[    5.876362] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    5.876381] systemd[1]: Detected virtualization vmware.
[    5.876385] systemd[1]: Detected architecture x86-64.
[    5.876981] systemd[1]: Set hostname to <localhost.localdomain>.
[    5.923047] systemd[1]: Configuration file /usr/lib/systemd/system/rc-local.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    5.974314] systemd[1]: Stopped Switch Root.
[    5.974523] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[    5.974571] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    5.974580] systemd[1]: Stopped Journal Service.
[    5.975303] systemd[1]: Starting Journal Service...
[    5.994349] EXT4-fs (sda2): re-mounted. Opts: (null)
[    6.180997] systemd-journald[4306]: Received request to flush runtime journal from PID 1
[    6.294482] vmw_vmci 0000:00:07.7: enabling device (0000 -> 0003)
[    6.296711] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x12000, irq 16
[    6.296791] vmw_vmci 0000:00:07.7: Using capabilities 0x1c
[    6.299142] Guest personality initialized and is active
[    6.300025] VMCI host device registered (name=vmci, major=10, minor=61)
[    6.300026] Initialized host personality
[    6.309890] NET: Registered protocol family 40
[    6.343165] piix4_smbus 0000:00:07.3: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
[    6.388723] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    6.389731] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    6.494084] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    6.644797] vmxnet3 0000:0b:00.0 ens192: intr type 3, mode 0, 9 vectors allocated
[    6.645909] vmxnet3 0000:0b:00.0 ens192: NIC Link is Up 10000 Mbps

[-- Attachment #5: vanilla_dmesg.log --]
[-- Type: application/octet-stream, Size: 139327 bytes --]

[    0.000000] Linux version 5.9.0 (root@w1-hs1-mwenig-dhcp-175.eng.vmware.com) (gcc (GCC) 8.3.1 20190507 (Red Hat 8.3.1-4), GNU ld version 2.30-58.el8) #1 SMP Mon Oct 19 07:32:15 EDT 2020
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    0.000000] Disabled fast string operations
[    0.000000] ------------[ cut here ]------------
[    0.000000] XSAVE consistency problem, dumping leaves
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/fpu/xstate.c:657 fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.9.0 #1
[    0.000000] RIP: 0010:fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Code: 85 7c fd ff ff 44 3b 35 d5 45 22 00 74 2c 80 3d b0 03 bd ff 00 75 15 48 c7 c7 80 1e 0e 83 c6 05 a0 03 bd ff 01 e8 9a 35 b8 fe <0f> 0b 83 3d 9e 39 69 ff 00 74 05 e8 6b f0 b7 fe 48 8b 35 90 3e c0
[    0.000000] RSP: 0000:ffffffff83403e60 EFLAGS: 00010086 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: 0000000000000a88 RCX: 0000000000000000
[    0.000000] RDX: ffffffff83403c70 RSI: 00000000ffff7fff RDI: ffffffff84023e8c
[    0.000000] RBP: 0000000000000010 R08: 0000000000000000 R09: c0000000ffff7fff
[    0.000000] R10: 0000000000000001 R11: ffffffff83403c68 R12: 0000000000000a88
[    0.000000] R13: 0000000000000008 R14: 0000000000000988 R15: 0000000000000001
[    0.000000] FS:  0000000000000000(0000) GS:ffffffff83d57000(0000) knlGS:0000000000000000
[    0.000000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: ffff88800e0b0000 CR3: 000000e5a4fee000 CR4: 00000000000406a0
[    0.000000] Call Trace:
[    0.000000]  ? 0xffffffff82000000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xb8/0xbb
[    0.000000] random: get_random_bytes called from print_oops_end_marker+0x26/0x40 with crng_init=0
[    0.000000] ---[ end trace b5bca65a2e850988 ]---
[    0.000000] CPUID[0d, 00]: eax=000002e7 ebx=00000a88 ecx=00000a88 edx=00000000
[    0.000000] CPUID[0d, 01]: eax=0000000f ebx=00000a88 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 02]: eax=00000100 ebx=00000240 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 03]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 04]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 05]: eax=00000040 ebx=00000440 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 06]: eax=00000200 ebx=00000480 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 07]: eax=00000400 ebx=00000680 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 08]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 09]: eax=00000008 ebx=00000a80 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0d]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0e]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0f]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 10]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 11]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 12]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 13]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 14]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 15]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 16]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 17]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 18]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 19]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2696 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000ef23fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000e0a1017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a1018-0x000000000e0a2857] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a2858-0x000000000e0a3017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a3018-0x000000000e0a5057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a5058-0x000000000e0a6017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a6018-0x000000000e0ae057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0ae058-0x000000000ef23fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] efi: EFI v2.31 by VMware, Inc.
[    0.000000] efi: SMBIOS=0xef42000 ACPI 2.0=0xff66000 MEMATTR=0xfda1018 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.000000] vmware: hypercall mode: 0x02
[    0.000000] Hypervisor detected: VMware
[    0.000000] vmware: TSC freq read from hypervisor : 2095.078 MHz
[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[    0.000000] vmware: using clock offset of 6977760543 ns
[    0.000012] tsc: Detected 2095.078 MHz processor
[    0.002108] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.002110] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.002115] last_pfn = 0x10340000 max_arch_pfn = 0x400000000
[    0.002148] MTRR default type: uncachable
[    0.002149] MTRR fixed ranges enabled:
[    0.002150]   00000-9FFFF write-back
[    0.002150]   A0000-FFFFF uncachable
[    0.002151] MTRR variable ranges enabled:
[    0.002152]   0 base 000000000000 mask 1E0000000000 write-back
[    0.002153]   1 base 0000C0000000 mask 1FFFC0000000 uncachable
[    0.002153]   2 disabled
[    0.002154]   3 disabled
[    0.002154]   4 disabled
[    0.002154]   5 disabled
[    0.002159]   6 disabled
[    0.002159]   7 disabled
[    0.002171] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002194] total RAM covered: 2096128M
[    0.002245]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002247]  gran_size: 64K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002247]  gran_size: 64K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002248]  gran_size: 64K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002249]  gran_size: 64K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002250]  gran_size: 64K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002251]  gran_size: 64K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002252]  gran_size: 64K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002252]  gran_size: 64K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002253]  gran_size: 64K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002254]  gran_size: 64K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002255]  gran_size: 64K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002256]  gran_size: 64K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002257]  gran_size: 64K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002258]  gran_size: 64K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002259]  gran_size: 64K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002260]  gran_size: 128K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002260]  gran_size: 128K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002261]  gran_size: 128K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002262]  gran_size: 128K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002263]  gran_size: 128K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002264]  gran_size: 128K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002265]  gran_size: 128K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002265]  gran_size: 128K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002266]  gran_size: 128K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002267]  gran_size: 128K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002268]  gran_size: 128K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002269]  gran_size: 128K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002269]  gran_size: 128K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002270]  gran_size: 128K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002271]  gran_size: 128K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002272]  gran_size: 256K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002273]  gran_size: 256K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002273]  gran_size: 256K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002274]  gran_size: 256K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002275]  gran_size: 256K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002276]  gran_size: 256K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002277]  gran_size: 256K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002277]  gran_size: 256K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002278]  gran_size: 256K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002279]  gran_size: 256K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002280]  gran_size: 256K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002280]  gran_size: 256K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002281]  gran_size: 256K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002282]  gran_size: 256K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002283]  gran_size: 512K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002284]  gran_size: 512K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002284]  gran_size: 512K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002285]  gran_size: 512K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002286]  gran_size: 512K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002287]  gran_size: 512K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002288]  gran_size: 512K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002288]  gran_size: 512K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002289]  gran_size: 512K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002290]  gran_size: 512K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002291]  gran_size: 512K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002292]  gran_size: 512K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002292]  gran_size: 512K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002293]  gran_size: 1M 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002294]  gran_size: 1M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002295]  gran_size: 1M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002296]  gran_size: 1M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002296]  gran_size: 1M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002297]  gran_size: 1M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002298]  gran_size: 1M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002299]  gran_size: 1M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002300]  gran_size: 1M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002301]  gran_size: 1M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002301]  gran_size: 1M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002302]  gran_size: 1M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002303]  gran_size: 2M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002304]  gran_size: 2M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002304]  gran_size: 2M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002305]  gran_size: 2M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002306]  gran_size: 2M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002307]  gran_size: 2M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002308]  gran_size: 2M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002308]  gran_size: 2M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002309]  gran_size: 2M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002310]  gran_size: 2M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002311]  gran_size: 2M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002312]  gran_size: 4M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002312]  gran_size: 4M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002313]  gran_size: 4M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002314]  gran_size: 4M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002315]  gran_size: 4M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002316]  gran_size: 4M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002316]  gran_size: 4M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002317]  gran_size: 4M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002318]  gran_size: 4M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002319]  gran_size: 4M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002320]  gran_size: 8M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002320]  gran_size: 8M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002321]  gran_size: 8M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002322]  gran_size: 8M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002323]  gran_size: 8M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002324]  gran_size: 8M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002324]  gran_size: 8M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002325]  gran_size: 8M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002326]  gran_size: 8M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002327]  gran_size: 16M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002328]  gran_size: 16M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002328]  gran_size: 16M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002329]  gran_size: 16M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002330]  gran_size: 16M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002331]  gran_size: 16M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002332]  gran_size: 16M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002332]  gran_size: 16M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002333]  gran_size: 32M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002334]  gran_size: 32M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002335]  gran_size: 32M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002336]  gran_size: 32M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002337]  gran_size: 32M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002338]  gran_size: 32M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002339]  gran_size: 32M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002340]  gran_size: 64M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002341]  gran_size: 64M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002341]  gran_size: 64M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002342]  gran_size: 64M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002343]  gran_size: 64M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002344]  gran_size: 64M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002345]  gran_size: 128M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002345]  gran_size: 128M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002346]  gran_size: 128M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002347]  gran_size: 128M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002348]  gran_size: 128M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002349]  gran_size: 256M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002350]  gran_size: 256M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002350]  gran_size: 256M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002351]  gran_size: 256M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002352]  gran_size: 512M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002353]  gran_size: 512M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002353]  gran_size: 512M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002354]  gran_size: 1G 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002355]  gran_size: 1G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002356]  gran_size: 2G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1537G
[    0.002357] mtrr_cleanup: can not find optimal value
[    0.002357] please specify mtrr_gran_size/mtrr_chunk_size
[    0.002368] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.002373] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
[    0.007756] kexec: Reserving the low 1M of memory for crashkernel
[    0.007786] Using GB pages for direct mapping
[    0.008816] Secure boot disabled
[    0.008817] RAMDISK: [mem 0x06291000-0x0a987fff]
[    0.008830] ACPI: Early table checksum verification disabled
[    0.008834] ACPI: RSDP 0x000000000FF66000 000024 (v02 VMWARE)
[    0.008836] ACPI: XSDT 0x000000000FF66064 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.008841] ACPI: SRAT 0x000000000FF660C0 000660 (v03 VMWARE EFISRAT  06040001 VMW  000007CE)
[    0.008844] ACPI: FACP 0x000000000FF7252C 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.008848] ACPI: DSDT 0x000000000FF66720 00BE0C (v01 PTLTD  Custom   00000000 INTL 20130823)
[    0.008850] ACPI: FACS 0x000000000FF76000 000040
[    0.008852] ACPI: FACS 0x000000000FF76000 000040
[    0.008854] ACPI: APIC 0x000000000FF72694 0004DA (v03 VMWARE EFIAPIC  06040001 VMW  000007CE)
[    0.008856] ACPI: MCFG 0x000000000FF72B6E 00003C (v01 VMWARE EFIMCFG  06040001 VMW  000007CE)
[    0.008857] ACPI: HPET 0x000000000FF72BAA 000038 (v01 VMWARE VMW HPET 00000000 VMW  00000000)
[    0.008859] ACPI: WAET 0x000000000FF72BE2 000028 (v01 VMWARE VMW WAET 06040001 VMW  00000001)
[    0.008861] ACPI: WSMT 0x000000000FF72C0A 000028 (v01 VMWARE VMW WSMT 06040001 VMW  00000001)
[    0.008866] ACPI: Local APIC address 0xfee00000
[    0.008899] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.008900] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.008901] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.008902] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.008902] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.008903] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.008903] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.008904] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.008904] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.008905] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.008905] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.008906] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.008906] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.008907] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.008907] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.008907] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[    0.008908] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.008908] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.008909] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.008909] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.008910] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.008910] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.008911] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[    0.008911] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[    0.008911] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[    0.008912] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.008912] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.008913] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.008913] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.008914] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.008914] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[    0.008915] SRAT: PXM 1 -> APIC 0x3e -> Node 1
[    0.008915] SRAT: PXM 1 -> APIC 0x40 -> Node 1
[    0.008916] SRAT: PXM 1 -> APIC 0x42 -> Node 1
[    0.008916] SRAT: PXM 1 -> APIC 0x44 -> Node 1
[    0.008916] SRAT: PXM 1 -> APIC 0x46 -> Node 1
[    0.008917] SRAT: PXM 1 -> APIC 0x48 -> Node 1
[    0.008917] SRAT: PXM 1 -> APIC 0x4a -> Node 1
[    0.008918] SRAT: PXM 1 -> APIC 0x4c -> Node 1
[    0.008918] SRAT: PXM 1 -> APIC 0x4e -> Node 1
[    0.008919] SRAT: PXM 1 -> APIC 0x50 -> Node 1
[    0.008919] SRAT: PXM 1 -> APIC 0x52 -> Node 1
[    0.008920] SRAT: PXM 1 -> APIC 0x54 -> Node 1
[    0.008920] SRAT: PXM 1 -> APIC 0x56 -> Node 1
[    0.008920] SRAT: PXM 1 -> APIC 0x58 -> Node 1
[    0.008921] SRAT: PXM 1 -> APIC 0x5a -> Node 1
[    0.008921] SRAT: PXM 1 -> APIC 0x5c -> Node 1
[    0.008922] SRAT: PXM 1 -> APIC 0x5e -> Node 1
[    0.008922] SRAT: PXM 1 -> APIC 0x60 -> Node 1
[    0.008923] SRAT: PXM 1 -> APIC 0x62 -> Node 1
[    0.008923] SRAT: PXM 1 -> APIC 0x64 -> Node 1
[    0.008924] SRAT: PXM 1 -> APIC 0x66 -> Node 1
[    0.008924] SRAT: PXM 1 -> APIC 0x68 -> Node 1
[    0.008925] SRAT: PXM 1 -> APIC 0x6a -> Node 1
[    0.008925] SRAT: PXM 1 -> APIC 0x6c -> Node 1
[    0.008926] SRAT: PXM 1 -> APIC 0x6e -> Node 1
[    0.008926] SRAT: PXM 2 -> APIC 0x70 -> Node 2
[    0.008927] SRAT: PXM 2 -> APIC 0x72 -> Node 2
[    0.008927] SRAT: PXM 2 -> APIC 0x74 -> Node 2
[    0.008927] SRAT: PXM 2 -> APIC 0x76 -> Node 2
[    0.008928] SRAT: PXM 2 -> APIC 0x78 -> Node 2
[    0.008928] SRAT: PXM 2 -> APIC 0x7a -> Node 2
[    0.008929] SRAT: PXM 2 -> APIC 0x7c -> Node 2
[    0.008929] SRAT: PXM 2 -> APIC 0x7e -> Node 2
[    0.008930] SRAT: PXM 2 -> APIC 0x80 -> Node 2
[    0.008930] SRAT: PXM 2 -> APIC 0x82 -> Node 2
[    0.008931] SRAT: PXM 2 -> APIC 0x84 -> Node 2
[    0.008931] SRAT: PXM 2 -> APIC 0x86 -> Node 2
[    0.008932] SRAT: PXM 2 -> APIC 0x88 -> Node 2
[    0.008932] SRAT: PXM 2 -> APIC 0x8a -> Node 2
[    0.008932] SRAT: PXM 2 -> APIC 0x8c -> Node 2
[    0.008933] SRAT: PXM 2 -> APIC 0x8e -> Node 2
[    0.008933] SRAT: PXM 2 -> APIC 0x90 -> Node 2
[    0.008934] SRAT: PXM 2 -> APIC 0x92 -> Node 2
[    0.008934] SRAT: PXM 2 -> APIC 0x94 -> Node 2
[    0.008935] SRAT: PXM 2 -> APIC 0x96 -> Node 2
[    0.008935] SRAT: PXM 2 -> APIC 0x98 -> Node 2
[    0.008936] SRAT: PXM 2 -> APIC 0x9a -> Node 2
[    0.008936] SRAT: PXM 2 -> APIC 0x9c -> Node 2
[    0.008936] SRAT: PXM 2 -> APIC 0x9e -> Node 2
[    0.008937] SRAT: PXM 2 -> APIC 0xa0 -> Node 2
[    0.008937] SRAT: PXM 2 -> APIC 0xa2 -> Node 2
[    0.008938] SRAT: PXM 2 -> APIC 0xa4 -> Node 2
[    0.008938] SRAT: PXM 2 -> APIC 0xa6 -> Node 2
[    0.008940] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.008941] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[    0.008942] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x55ffffffff]
[    0.008942] ACPI: SRAT: Node 1 PXM 1 [mem 0x5600000000-0xaaffffffff]
[    0.008943] ACPI: SRAT: Node 2 PXM 2 [mem 0xab00000000-0xfcffffffff]
[    0.008943] ACPI: SRAT: Node 2 PXM 2 [mem 0x10000000000-0x1033fffffff]
[    0.008945] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xbfffffff] -> [mem 0x00000000-0xbfffffff]
[    0.008946] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x55ffffffff] -> [mem 0x00000000-0x55ffffffff]
[    0.008947] NUMA: Node 2 [mem 0xab00000000-0xfcffffffff] + [mem 0x10000000000-0x1033fffffff] -> [mem 0xab00000000-0x1033fffffff]
[    0.008955] NODE_DATA(0) allocated [mem 0x55fffd6000-0x55ffffffff]
[    0.009324] NODE_DATA(1) allocated [mem 0xaafffd6000-0xaaffffffff]
[    0.010116] NODE_DATA(2) allocated [mem 0x1033ffd5000-0x1033fffefff]
[    0.010216] crashkernel: memory value expected
[    0.010953] Zone ranges:
[    0.010953]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.010954]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.010955]   Normal   [mem 0x0000000100000000-0x000001033fffffff]
[    0.010956]   Device   empty
[    0.010957] Movable zone start for each node
[    0.010959] Early memory node ranges
[    0.010960]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.010961]   node   0: [mem 0x0000000000100000-0x000000000ef23fff]
[    0.010961]   node   0: [mem 0x000000000ef2d000-0x000000000ef3bfff]
[    0.010962]   node   0: [mem 0x000000000ef48000-0x000000000ef60fff]
[    0.010962]   node   0: [mem 0x000000000ef66000-0x000000000fee6fff]
[    0.010963]   node   0: [mem 0x000000000ff77000-0x00000000bfffffff]
[    0.010964]   node   0: [mem 0x0000000100000000-0x00000055ffffffff]
[    0.010978]   node   1: [mem 0x0000005600000000-0x000000aaffffffff]
[    0.010993]   node   2: [mem 0x000000ab00000000-0x000000fcffffffff]
[    0.011008]   node   2: [mem 0x0000010000000000-0x000001033fffffff]
[    0.011751] Zeroed struct page in unavailable ranges: 267 pages
[    0.011752] Initmem setup node 0 [mem 0x0000000000001000-0x00000055ffffffff]
[    0.011753] On node 0 totalpages: 89915125
[    0.011754]   DMA zone: 64 pages used for memmap
[    0.011755]   DMA zone: 159 pages reserved
[    0.011755]   DMA zone: 3999 pages, LIFO batch:0
[    0.011777]   DMA32 zone: 12222 pages used for memmap
[    0.011777]   DMA32 zone: 782166 pages, LIFO batch:63
[    0.023761]   Normal zone: 1392640 pages used for memmap
[    0.023764]   Normal zone: 89128960 pages, LIFO batch:63
[    0.024295] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.024298] On node 1 totalpages: 89128960
[    0.024299]   Normal zone: 1392640 pages used for memmap
[    0.024299]   Normal zone: 89128960 pages, LIFO batch:63
[    0.025289] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.025291] On node 2 totalpages: 89391104
[    0.025292]   Normal zone: 1445888 pages used for memmap
[    0.025293]   Normal zone: 89391104 pages, LIFO batch:63
[    2.096982] ACPI: PM-Timer IO Port: 0x448
[    2.096987] ACPI: Local APIC address 0xfee00000
[    2.097006] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    2.097007] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    2.097007] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    2.097008] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    2.097009] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    2.097010] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    2.097011] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    2.097012] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    2.097013] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    2.097014] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    2.097014] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    2.097015] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    2.097015] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    2.097016] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    2.097016] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    2.097017] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    2.097017] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    2.097018] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    2.097018] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    2.097019] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    2.097020] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    2.097020] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    2.097021] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    2.097021] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    2.097022] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    2.097023] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    2.097024] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    2.097024] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    2.097025] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    2.097025] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    2.097026] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    2.097026] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    2.097027] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    2.097027] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    2.097028] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    2.097028] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    2.097029] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    2.097029] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    2.097029] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    2.097030] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    2.097030] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    2.097031] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    2.097031] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    2.097032] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    2.097032] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    2.097033] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    2.097033] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    2.097034] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    2.097034] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    2.097034] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    2.097035] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    2.097036] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    2.097036] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    2.097037] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    2.097038] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    2.097038] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    2.097039] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    2.097039] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    2.097040] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    2.097040] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    2.097041] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[    2.097041] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    2.097042] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[    2.097042] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[    2.097043] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[    2.097043] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[    2.097044] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[    2.097044] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[    2.097044] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[    2.097045] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[    2.097045] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[    2.097046] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[    2.097046] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[    2.097047] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[    2.097047] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[    2.097048] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[    2.097048] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[    2.097049] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[    2.097049] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[    2.097049] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[    2.097050] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[    2.097050] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[    2.097051] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[    2.097051] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[    2.097080] IOAPIC[0]: apic_id 84, version 32, address 0xfec00000, GSI 0-23
[    2.097082] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    2.097084] ACPI: IRQ0 used by override.
[    2.097085] ACPI: IRQ9 used by override.
[    2.097087] Using ACPI (MADT) for SMP configuration information
[    2.097088] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[    2.097094] TSC deadline timer available
[    2.097096] smpboot: Allowing 84 CPUs, 0 hotplug CPUs
[    2.097117] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    2.097118] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    2.097119] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    2.097120] PM: hibernation: Registered nosave memory: [mem 0x0e0a1000-0x0e0a1fff]
[    2.097121] PM: hibernation: Registered nosave memory: [mem 0x0e0a2000-0x0e0a2fff]
[    2.097121] PM: hibernation: Registered nosave memory: [mem 0x0e0a3000-0x0e0a3fff]
[    2.097123] PM: hibernation: Registered nosave memory: [mem 0x0e0a5000-0x0e0a5fff]
[    2.097124] PM: hibernation: Registered nosave memory: [mem 0x0e0a6000-0x0e0a6fff]
[    2.097125] PM: hibernation: Registered nosave memory: [mem 0x0e0ae000-0x0e0aefff]
[    2.097126] PM: hibernation: Registered nosave memory: [mem 0x0ef24000-0x0ef2cfff]
[    2.097128] PM: hibernation: Registered nosave memory: [mem 0x0ef3c000-0x0ef41fff]
[    2.097128] PM: hibernation: Registered nosave memory: [mem 0x0ef42000-0x0ef47fff]
[    2.097130] PM: hibernation: Registered nosave memory: [mem 0x0ef61000-0x0ef65fff]
[    2.097131] PM: hibernation: Registered nosave memory: [mem 0x0fee7000-0x0ff56fff]
[    2.097131] PM: hibernation: Registered nosave memory: [mem 0x0ff57000-0x0ff72fff]
[    2.097131] PM: hibernation: Registered nosave memory: [mem 0x0ff73000-0x0ff76fff]
[    2.097133] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xffbfffff]
[    2.097133] PM: hibernation: Registered nosave memory: [mem 0xffc00000-0xffc29fff]
[    2.097134] PM: hibernation: Registered nosave memory: [mem 0xffc2a000-0xffffffff]
[    2.097135] PM: hibernation: Registered nosave memory: [mem 0xfd00000000-0xffffffffff]
[    2.097137] [mem 0xc0000000-0xffbfffff] available for PCI devices
[    2.097138] Booting paravirtualized kernel on VMware hypervisor
[    2.097141] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    2.100419] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:84 nr_cpu_ids:84 nr_node_ids:3
[    2.109599] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
[    2.109609] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
[    2.109610] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    2.109618] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
[    2.109624] pcpu-alloc: [1] 28 29 30 31 32 33 34 35 [1] 36 37 38 39 40 41 42 43 
[    2.109630] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 [1] 52 53 54 55 -- -- -- -- 
[    2.109636] pcpu-alloc: [2] 56 57 58 59 60 61 62 63 [2] 64 65 66 67 68 69 70 71 
[    2.109642] pcpu-alloc: [2] 72 73 74 75 76 77 78 79 [2] 80 81 82 83 -- -- -- -- 
[    2.109687] Built 3 zonelists, mobility grouping on.  Total pages: 264191576
[    2.109688] Policy zone: Normal
[    2.109690] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    2.110644] mem auto-init: stack:off, heap alloc:off, heap free:off
[    3.330403] Memory: 347276036K/1073740756K available (12297K kernel code, 5778K rwdata, 4376K rodata, 2352K init, 6480K bss, 16991708K reserved, 0K cma-reserved)
[    3.332556] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=84, Nodes=3
[    3.332604] Kernel/User page tables isolation: enabled
[    3.332653] ftrace: allocating 39515 entries in 155 pages
[    3.347197] ftrace: allocated 155 pages with 5 groups
[    3.348573] rcu: Hierarchical RCU implementation.
[    3.348574] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=84.
[    3.348576] 	Rude variant of Tasks RCU enabled.
[    3.348577] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    3.348578] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=84
[    3.351122] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    3.351655] Console: colour dummy device 80x25
[    3.351692] printk: console [tty0] enabled
[    3.351847] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    3.351850] ACPI: Core revision 20200925
[    3.355872] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    3.355985] APIC: Switch to symmetric I/O mode setup
[    3.357458] x2apic enabled
[    3.359084] Switched APIC routing to physical x2apic.
[    3.363102] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    3.363141] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e3306b9ada, max_idle_ns: 440795224413 ns
[    3.363144] Calibrating delay loop (skipped) preset value.. 4190.15 BogoMIPS (lpj=2095078)
[    3.363148] pid_max: default: 86016 minimum: 672
[    3.364573] LSM: Security Framework initializing
[    3.364607] Yama: becoming mindful.
[    3.364645] SELinux:  Initializing.
[    3.468160] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes, vmalloc)
[    3.519382] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc)
[    3.520209] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.521518] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.523774] Disabled fast string operations
[    3.523963] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    3.523964] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    3.523974] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    3.523975] Spectre V2 : Mitigation: Full generic retpoline
[    3.523976] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    3.523977] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    3.523979] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    3.523981] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    3.523985] MDS: Mitigation: Clear CPU buffers
[    3.524479] Freeing SMP alternatives memory: 32K
[    3.525850] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8176 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x4)
[    3.526072] Performance Events: Skylake events, core PMU driver.
[    3.526142] core: CPUID marked event: 'cpu cycles' unavailable
[    3.526142] core: CPUID marked event: 'instructions' unavailable
[    3.526142] core: CPUID marked event: 'bus cycles' unavailable
[    3.526142] core: CPUID marked event: 'cache references' unavailable
[    3.526142] core: CPUID marked event: 'cache misses' unavailable
[    3.526142] core: CPUID marked event: 'branch instructions' unavailable
[    3.526142] core: CPUID marked event: 'branch misses' unavailable
[    3.526142] ... version:                1
[    3.526142] ... bit width:              48
[    3.526142] ... generic registers:      4
[    3.526142] ... value mask:             0000ffffffffffff
[    3.526142] ... max period:             000000007fffffff
[    3.526142] ... fixed-purpose events:   0
[    3.526142] ... event mask:             000000000000000f
[    3.526142] rcu: Hierarchical SRCU implementation.
[    3.526142] NMI watchdog: Perf NMI watchdog permanently disabled
[    3.528021] smp: Bringing up secondary CPUs ...
[    3.528132] x86: Booting SMP configuration:
[    3.528134] .... node  #0, CPUs:        #1
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 1 Converting physical 2 to logical package 1
[    0.009650] smpboot: CPU 1 Converting physical 0 to logical die 1
[    3.529247]   #2
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 2 Converting physical 4 to logical package 2
[    0.009650] smpboot: CPU 2 Converting physical 0 to logical die 2
[    3.530194]   #3
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 3 Converting physical 6 to logical package 3
[    0.009650] smpboot: CPU 3 Converting physical 0 to logical die 3
[    3.530962]   #4
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 4 Converting physical 8 to logical package 4
[    0.009650] smpboot: CPU 4 Converting physical 0 to logical die 4
[    3.531741]   #5
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 5 Converting physical 10 to logical package 5
[    0.009650] smpboot: CPU 5 Converting physical 0 to logical die 5
[    3.532488]   #6
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 6 Converting physical 12 to logical package 6
[    0.009650] smpboot: CPU 6 Converting physical 0 to logical die 6
[    3.533224]   #7
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 7 Converting physical 14 to logical package 7
[    0.009650] smpboot: CPU 7 Converting physical 0 to logical die 7
[    3.534588]   #8
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 8 Converting physical 16 to logical package 8
[    0.009650] smpboot: CPU 8 Converting physical 0 to logical die 8
[    3.535349]   #9
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 9 Converting physical 18 to logical package 9
[    0.009650] smpboot: CPU 9 Converting physical 0 to logical die 9
[    3.536206]  #10
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 10 Converting physical 20 to logical package 10
[    0.009650] smpboot: CPU 10 Converting physical 0 to logical die 10
[    3.537194]  #11
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 11 Converting physical 22 to logical package 11
[    0.009650] smpboot: CPU 11 Converting physical 0 to logical die 11
[    3.537908]  #12
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 12 Converting physical 24 to logical package 12
[    0.009650] smpboot: CPU 12 Converting physical 0 to logical die 12
[    3.538734]  #13
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 13 Converting physical 26 to logical package 13
[    0.009650] smpboot: CPU 13 Converting physical 0 to logical die 13
[    3.539215]  #14
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 14 Converting physical 28 to logical package 14
[    0.009650] smpboot: CPU 14 Converting physical 0 to logical die 14
[    3.540174]  #15
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 15 Converting physical 30 to logical package 15
[    0.009650] smpboot: CPU 15 Converting physical 0 to logical die 15
[    3.540910]  #16
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 16 Converting physical 32 to logical package 16
[    0.009650] smpboot: CPU 16 Converting physical 0 to logical die 16
[    3.541770]  #17
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 17 Converting physical 34 to logical package 17
[    0.009650] smpboot: CPU 17 Converting physical 0 to logical die 17
[    3.542368]  #18
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 18 Converting physical 36 to logical package 18
[    0.009650] smpboot: CPU 18 Converting physical 0 to logical die 18
[    3.543591]  #19
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 19 Converting physical 38 to logical package 19
[    0.009650] smpboot: CPU 19 Converting physical 0 to logical die 19
[    3.544211]  #20
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 20 Converting physical 40 to logical package 20
[    0.009650] smpboot: CPU 20 Converting physical 0 to logical die 20
[    3.545146]  #21
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 21 Converting physical 42 to logical package 21
[    0.009650] smpboot: CPU 21 Converting physical 0 to logical die 21
[    3.545793]  #22
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 22 Converting physical 44 to logical package 22
[    0.009650] smpboot: CPU 22 Converting physical 0 to logical die 22
[    3.546342]  #23
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 23 Converting physical 46 to logical package 23
[    0.009650] smpboot: CPU 23 Converting physical 0 to logical die 23
[    3.547220]  #24
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 24 Converting physical 48 to logical package 24
[    0.009650] smpboot: CPU 24 Converting physical 0 to logical die 24
[    3.547853]  #25
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 25 Converting physical 50 to logical package 25
[    0.009650] smpboot: CPU 25 Converting physical 0 to logical die 25
[    3.548688]  #26
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 26 Converting physical 52 to logical package 26
[    0.009650] smpboot: CPU 26 Converting physical 0 to logical die 26
[    3.549341]  #27
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 27 Converting physical 54 to logical package 27
[    0.009650] smpboot: CPU 27 Converting physical 0 to logical die 27

[    3.550226] .... node  #1, CPUs:   #28
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 28 Converting physical 56 to logical package 28
[    0.009650] smpboot: CPU 28 Converting physical 0 to logical die 28
[    3.551229]  #29
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 29 Converting physical 58 to logical package 29
[    0.009650] smpboot: CPU 29 Converting physical 0 to logical die 29
[    3.551893]  #30
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 30 Converting physical 60 to logical package 30
[    0.009650] smpboot: CPU 30 Converting physical 0 to logical die 30
[    3.552683]  #31
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 31 Converting physical 62 to logical package 31
[    0.009650] smpboot: CPU 31 Converting physical 0 to logical die 31
[    3.553236]  #32
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 32 Converting physical 64 to logical package 32
[    0.009650] smpboot: CPU 32 Converting physical 0 to logical die 32
[    3.554155]  #33
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 33 Converting physical 66 to logical package 33
[    0.009650] smpboot: CPU 33 Converting physical 0 to logical die 33
[    3.554746]  #34
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 34 Converting physical 68 to logical package 34
[    0.009650] smpboot: CPU 34 Converting physical 0 to logical die 34
[    3.555269]  #35
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 35 Converting physical 70 to logical package 35
[    0.009650] smpboot: CPU 35 Converting physical 0 to logical die 35
[    3.556352]  #36
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 36 Converting physical 72 to logical package 36
[    0.009650] smpboot: CPU 36 Converting physical 0 to logical die 36
[    3.557228]  #37
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 37 Converting physical 74 to logical package 37
[    0.009650] smpboot: CPU 37 Converting physical 0 to logical die 37
[    3.557813]  #38
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 38 Converting physical 76 to logical package 38
[    0.009650] smpboot: CPU 38 Converting physical 0 to logical die 38
[    3.559222]  #39
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 39 Converting physical 78 to logical package 39
[    0.009650] smpboot: CPU 39 Converting physical 0 to logical die 39
[    3.559856]  #40
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 40 Converting physical 80 to logical package 40
[    0.009650] smpboot: CPU 40 Converting physical 0 to logical die 40
[    3.560907]  #41
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 41 Converting physical 82 to logical package 41
[    0.009650] smpboot: CPU 41 Converting physical 0 to logical die 41
[    3.561664]  #42
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 42 Converting physical 84 to logical package 42
[    0.009650] smpboot: CPU 42 Converting physical 0 to logical die 42
[    3.562225]  #43
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 43 Converting physical 86 to logical package 43
[    0.009650] smpboot: CPU 43 Converting physical 0 to logical die 43
[    3.563174]  #44
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 44 Converting physical 88 to logical package 44
[    0.009650] smpboot: CPU 44 Converting physical 0 to logical die 44
[    3.563783]  #45
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 45 Converting physical 90 to logical package 45
[    0.009650] smpboot: CPU 45 Converting physical 0 to logical die 45
[    3.564225]  #46
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 46 Converting physical 92 to logical package 46
[    0.009650] smpboot: CPU 46 Converting physical 0 to logical die 46
[    3.564799]  #47
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 47 Converting physical 94 to logical package 47
[    0.009650] smpboot: CPU 47 Converting physical 0 to logical die 47
[    3.565718]  #48
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 48 Converting physical 96 to logical package 48
[    0.009650] smpboot: CPU 48 Converting physical 0 to logical die 48
[    3.566424]  #49
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 49 Converting physical 98 to logical package 49
[    0.009650] smpboot: CPU 49 Converting physical 0 to logical die 49
[    3.567224]  #50
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 50 Converting physical 100 to logical package 50
[    0.009650] smpboot: CPU 50 Converting physical 0 to logical die 50
[    3.568771]  #51
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 51 Converting physical 102 to logical package 51
[    0.009650] smpboot: CPU 51 Converting physical 0 to logical die 51
[    3.569407]  #52
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 52 Converting physical 104 to logical package 52
[    0.009650] smpboot: CPU 52 Converting physical 0 to logical die 52
[    3.570225]  #53
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 53 Converting physical 106 to logical package 53
[    0.009650] smpboot: CPU 53 Converting physical 0 to logical die 53
[    3.571165]  #54
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 54 Converting physical 108 to logical package 54
[    0.009650] smpboot: CPU 54 Converting physical 0 to logical die 54
[    3.571746]  #55
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 55 Converting physical 110 to logical package 55
[    0.009650] smpboot: CPU 55 Converting physical 0 to logical die 55

[    3.572644] .... node  #2, CPUs:   #56
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 56 Converting physical 112 to logical package 56
[    0.009650] smpboot: CPU 56 Converting physical 0 to logical die 56
[    3.573415]  #57
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 57 Converting physical 114 to logical package 57
[    0.009650] smpboot: CPU 57 Converting physical 0 to logical die 57
[    3.574264]  #58
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 58 Converting physical 116 to logical package 58
[    0.009650] smpboot: CPU 58 Converting physical 0 to logical die 58
[    3.575276]  #59
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 59 Converting physical 118 to logical package 59
[    0.009650] smpboot: CPU 59 Converting physical 0 to logical die 59
[    3.575849]  #60
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 60 Converting physical 120 to logical package 60
[    0.009650] smpboot: CPU 60 Converting physical 0 to logical die 60
[    3.576674]  #61
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 61 Converting physical 122 to logical package 61
[    0.009650] smpboot: CPU 61 Converting physical 0 to logical die 61
[    3.577392]  #62
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 62 Converting physical 124 to logical package 62
[    0.009650] smpboot: CPU 62 Converting physical 0 to logical die 62
[    3.578235]  #63
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 63 Converting physical 126 to logical package 63
[    0.009650] smpboot: CPU 63 Converting physical 0 to logical die 63
[    3.579197]  #64
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 64 Converting physical 128 to logical package 64
[    0.009650] smpboot: CPU 64 Converting physical 0 to logical die 64
[    3.580214]  #65
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 65 Converting physical 130 to logical package 65
[    0.009650] smpboot: CPU 65 Converting physical 0 to logical die 65
[    3.581235]  #66
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 66 Converting physical 132 to logical package 66
[    0.009650] smpboot: CPU 66 Converting physical 0 to logical die 66
[    3.581854]  #67
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 67 Converting physical 134 to logical package 67
[    0.009650] smpboot: CPU 67 Converting physical 0 to logical die 67
[    3.582601]  #68
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 68 Converting physical 136 to logical package 68
[    0.009650] smpboot: CPU 68 Converting physical 0 to logical die 68
[    3.583323]  #69
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 69 Converting physical 138 to logical package 69
[    0.009650] smpboot: CPU 69 Converting physical 0 to logical die 69
[    3.584227]  #70
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 70 Converting physical 140 to logical package 70
[    0.009650] smpboot: CPU 70 Converting physical 0 to logical die 70
[    3.584827]  #71
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 71 Converting physical 142 to logical package 71
[    0.009650] smpboot: CPU 71 Converting physical 0 to logical die 71
[    3.585766]  #72
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 72 Converting physical 144 to logical package 72
[    0.009650] smpboot: CPU 72 Converting physical 0 to logical die 72
[    3.586226]  #73
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 73 Converting physical 146 to logical package 73
[    0.009650] smpboot: CPU 73 Converting physical 0 to logical die 73
[    3.587153]  #74
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 74 Converting physical 148 to logical package 74
[    0.009650] smpboot: CPU 74 Converting physical 0 to logical die 74
[    3.587737]  #75
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 75 Converting physical 150 to logical package 75
[    0.009650] smpboot: CPU 75 Converting physical 0 to logical die 75
[    3.588238]  #76
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 76 Converting physical 152 to logical package 76
[    0.009650] smpboot: CPU 76 Converting physical 0 to logical die 76
[    3.589808]  #77
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 77 Converting physical 154 to logical package 77
[    0.009650] smpboot: CPU 77 Converting physical 0 to logical die 77
[    3.590416]  #78
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 78 Converting physical 156 to logical package 78
[    0.009650] smpboot: CPU 78 Converting physical 0 to logical die 78
[    3.591226]  #79
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 79 Converting physical 158 to logical package 79
[    0.009650] smpboot: CPU 79 Converting physical 0 to logical die 79
[    3.592229]  #80
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 80 Converting physical 160 to logical package 80
[    0.009650] smpboot: CPU 80 Converting physical 0 to logical die 80
[    3.592917]  #81
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 81 Converting physical 162 to logical package 81
[    0.009650] smpboot: CPU 81 Converting physical 0 to logical die 81
[    3.593644]  #82
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 82 Converting physical 164 to logical package 82
[    0.009650] smpboot: CPU 82 Converting physical 0 to logical die 82
[    3.594228]  #83
[    0.009650] Disabled fast string operations
[    0.009650] smpboot: CPU 83 Converting physical 166 to logical package 83
[    0.009650] smpboot: CPU 83 Converting physical 0 to logical die 83
[    3.595474] smp: Brought up 3 nodes, 84 CPUs
[    3.595477] smpboot: Max logical packages: 84
[    3.595480] smpboot: Total of 84 processors activated (351973.10 BogoMIPS)
[    3.629142] node 2 deferred pages initialised in 29ms
[    3.743204] node 0 deferred pages initialised in 144ms
[    3.784204] node 1 deferred pages initialised in 185ms
[    3.827430] devtmpfs: initialized
[    3.827430] x86/mm: Memory block size: 1024MB
[    3.835600] PM: Registering ACPI NVS region [mem 0x00000000-0x00000fff] (4096 bytes)
[    3.835600] PM: Registering ACPI NVS region [mem 0x0ef42000-0x0ef47fff] (24576 bytes)
[    3.835600] PM: Registering ACPI NVS region [mem 0x0ff73000-0x0ff76fff] (16384 bytes)
[    3.836704] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    3.836704] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    3.838360] pinctrl core: initialized pinctrl subsystem
[    3.839210] NET: Registered protocol family 16
[    3.839332] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    3.839344] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    3.839354] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    3.839363] audit: initializing netlink subsys (disabled)
[    3.839375] audit: type=2000 audit(1603126436.479:1): state=initialized audit_enabled=0 res=1
[    3.839375] thermal_sys: Registered thermal governor 'fair_share'
[    3.839375] thermal_sys: Registered thermal governor 'bang_bang'
[    3.839375] thermal_sys: Registered thermal governor 'step_wise'
[    3.839375] thermal_sys: Registered thermal governor 'user_space'
[    3.839398] cpuidle: using governor menu
[    3.839398] ACPI: bus type PCI registered
[    3.839398] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.840341] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    3.840345] PCI: not using MMCONFIG
[    3.840346] PCI: Using configuration type 1 for base access
[    3.845354] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    3.845354] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    3.879269] cryptd: max_cpu_qlen set to 1000
[    3.899503] ACPI: Added _OSI(Module Device)
[    3.899504] ACPI: Added _OSI(Processor Device)
[    3.899505] ACPI: Added _OSI(3.0 _SCP Extensions)
[    3.899506] ACPI: Added _OSI(Processor Aggregator Device)
[    3.899508] ACPI: Added _OSI(Linux-Dell-Video)
[    3.899509] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    3.899510] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    3.903695] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    3.904613] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    3.904620] ACPI: BIOS _OSI(Darwin) query ignored
[    3.913694] ACPI: Interpreter enabled
[    3.913708] ACPI: (supports S0 S1 S4 S5)
[    3.913710] ACPI: Using IOAPIC for interrupt routing
[    3.913726] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    3.914316] PCI: MMCONFIG at [mem 0xe0000000-0xe7ffffff] reserved in ACPI motherboard resources
[    3.914325] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    3.914473] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    3.914851] ACPI: Enabled 4 GPEs in block 00 to 0F
[    3.932604] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    3.932610] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    3.932753] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[    3.932883] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    3.933545] PCI host bridge to bus 0000:00
[    3.933547] pci_bus 0000:00: Unknown NUMA node; performance will be reduced
[    3.933548] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    3.933550] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    3.933551] pci_bus 0000:00: root bus resource [mem 0xfef00000-0xffdfffff window]
[    3.933552] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfedfffff window]
[    3.933553] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfed3ffff window]
[    3.933555] pci_bus 0000:00: root bus resource [mem 0xfa300000-0xfebfffff window]
[    3.933556] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfa2fffff pref window]
[    3.933557] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xefffffff window]
[    3.933558] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    3.933559] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    3.933560] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    3.933560] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    3.933561] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    3.933562] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    3.933563] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    3.933564] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    3.933565] pci_bus 0000:00: root bus resource [bus 00-7f]
[    3.933667] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    3.934221] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    3.934710] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    3.935342] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    3.939678] pci 0000:00:07.1: reg 0x20: [io  0x2050-0x205f]
[    3.941664] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    3.941665] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    3.941666] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    3.941667] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    3.941862] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    3.942233] pci 0000:00:07.3: quirk: [io  0x0440-0x047f] claimed by PIIX4 ACPI
[    3.942533] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    3.942624] pci 0000:00:07.7: reg 0x10: [io  0x2000-0x203f]
[    3.942700] pci 0000:00:07.7: reg 0x14: [mem 0xffbf0000-0xffbf1fff 64bit]
[    3.943390] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    3.945146] pci 0000:00:0f.0: reg 0x10: [io  0x2040-0x204f]
[    3.947146] pci 0000:00:0f.0: reg 0x14: [mem 0xf0000000-0xf7ffffff pref]
[    3.949146] pci 0000:00:0f.0: reg 0x18: [mem 0xfb800000-0xfbffffff]
[    3.957147] pci 0000:00:0f.0: reg 0x30: [mem 0xffff8000-0xffffffff pref]
[    3.957181] pci 0000:00:0f.0: BAR 1: assigned to efifb
[    3.957616] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    3.958363] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    3.959114] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    3.959465] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    3.960193] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    3.960541] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    3.961264] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    3.961609] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    3.962340] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    3.962687] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    3.963414] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    3.963767] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    3.964543] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    3.964901] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    3.965641] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    3.965984] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    3.966715] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    3.967058] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    3.967794] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    3.968142] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    3.968882] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    3.969226] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    3.969966] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    3.970322] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    3.971063] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    3.971419] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    3.972160] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    3.972515] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    3.973249] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    3.973628] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    3.974369] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    3.974729] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    3.975469] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    3.975812] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    3.976550] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    3.976894] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    3.977624] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    3.977981] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    3.978719] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    3.979066] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    3.979811] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    3.980160] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    3.980899] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    3.981262] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    3.981999] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    3.982343] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    3.983082] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    3.983422] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    3.984158] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    3.984517] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    3.985247] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    3.985602] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    3.986352] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    3.986714] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    3.987452] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    3.987801] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    3.988529] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    3.988872] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    3.989610] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    3.989952] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    3.990677] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    3.991019] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    3.991741] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    3.992085] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    3.992825] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    3.993171] pci_bus 0000:01: extended config space not accessible
[    3.993215] pci 0000:00:01.0: PCI bridge to [bus 01]
[    3.993401] pci_bus 0000:02: extended config space not accessible
[    3.993568] acpiphp: Slot [32] registered
[    3.993577] acpiphp: Slot [33] registered
[    3.993585] acpiphp: Slot [34] registered
[    3.993593] acpiphp: Slot [35] registered
[    3.993601] acpiphp: Slot [36] registered
[    3.993608] acpiphp: Slot [37] registered
[    3.993617] acpiphp: Slot [38] registered
[    3.993624] acpiphp: Slot [39] registered
[    3.993633] acpiphp: Slot [40] registered
[    3.993641] acpiphp: Slot [41] registered
[    3.993649] acpiphp: Slot [42] registered
[    3.993657] acpiphp: Slot [43] registered
[    3.993665] acpiphp: Slot [44] registered
[    3.993672] acpiphp: Slot [45] registered
[    3.993680] acpiphp: Slot [46] registered
[    3.993689] acpiphp: Slot [47] registered
[    3.993697] acpiphp: Slot [48] registered
[    3.993704] acpiphp: Slot [49] registered
[    3.993713] acpiphp: Slot [50] registered
[    3.993721] acpiphp: Slot [51] registered
[    3.993729] acpiphp: Slot [52] registered
[    3.993738] acpiphp: Slot [53] registered
[    3.993747] acpiphp: Slot [54] registered
[    3.993755] acpiphp: Slot [55] registered
[    3.993762] acpiphp: Slot [56] registered
[    3.993770] acpiphp: Slot [57] registered
[    3.993777] acpiphp: Slot [58] registered
[    3.993786] acpiphp: Slot [59] registered
[    3.993793] acpiphp: Slot [60] registered
[    3.993801] acpiphp: Slot [61] registered
[    3.993809] acpiphp: Slot [62] registered
[    3.993816] acpiphp: Slot [63] registered
[    3.993851] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    3.993870] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    3.993887] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    3.993921] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    3.993922] pci 0000:00:11.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    3.993923] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    3.993924] pci 0000:00:11.0:   bridge window [mem 0xfef00000-0xffdfffff window] (subtractive decode)
[    3.993925] pci 0000:00:11.0:   bridge window [mem 0xfed45000-0xfedfffff window] (subtractive decode)
[    3.993926] pci 0000:00:11.0:   bridge window [mem 0xfec10000-0xfed3ffff window] (subtractive decode)
[    3.993927] pci 0000:00:11.0:   bridge window [mem 0xfa300000-0xfebfffff window] (subtractive decode)
[    3.993928] pci 0000:00:11.0:   bridge window [mem 0xf0000000-0xfa2fffff pref window] (subtractive decode)
[    3.993929] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xefffffff window] (subtractive decode)
[    3.993930] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    3.993931] pci 0000:00:11.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    3.993932] pci 0000:00:11.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    3.993932] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    3.993933] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    3.993934] pci 0000:00:11.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    3.993935] pci 0000:00:11.0:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    3.993936] pci 0000:00:11.0:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    3.994311] pci 0000:03:00.0: [15ad:07c0] type 00 class 0x010700
[    3.996145] pci 0000:03:00.0: reg 0x10: [io  0x4000-0x4007]
[    3.998145] pci 0000:03:00.0: reg 0x14: [mem 0xfea10000-0xfea17fff 64bit]
[    4.006146] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    4.006602] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    4.006899] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    4.006947] pci 0000:00:15.0: PCI bridge to [bus 03]
[    4.006965] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    4.006982] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.007268] pci 0000:00:15.1: PCI bridge to [bus 04]
[    4.007303] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.007337] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.007577] pci 0000:00:15.2: PCI bridge to [bus 05]
[    4.007612] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    4.007646] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.007881] pci 0000:00:15.3: PCI bridge to [bus 06]
[    4.007915] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    4.007949] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.008192] pci 0000:00:15.4: PCI bridge to [bus 07]
[    4.008226] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    4.008260] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.008492] pci 0000:00:15.5: PCI bridge to [bus 08]
[    4.008525] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    4.008558] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.008787] pci 0000:00:15.6: PCI bridge to [bus 09]
[    4.008820] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    4.008852] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.009081] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    4.009115] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    4.009144] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.009501] pci 0000:0b:00.0: [15ad:07b0] type 00 class 0x020000
[    4.009602] pci 0000:0b:00.0: reg 0x10: [mem 0xfe213000-0xfe213fff]
[    4.009644] pci 0000:0b:00.0: reg 0x14: [mem 0xfe212000-0xfe212fff]
[    4.009687] pci 0000:0b:00.0: reg 0x18: [mem 0xfe210000-0xfe211fff]
[    4.009729] pci 0000:0b:00.0: reg 0x1c: [io  0x3000-0x300f]
[    4.009857] pci 0000:0b:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    4.010297] pci 0000:0b:00.0: supports D1 D2
[    4.010298] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    4.010649] pci 0000:0b:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    4.010694] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    4.010711] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    4.010728] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    4.011004] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    4.011038] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    4.011073] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.011306] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    4.011340] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    4.011374] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.011613] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    4.011649] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    4.011684] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.011923] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    4.011956] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    4.011990] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.012220] pci 0000:00:16.5: PCI bridge to [bus 10]
[    4.012254] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    4.012287] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.012523] pci 0000:00:16.6: PCI bridge to [bus 11]
[    4.012556] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    4.012589] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.012818] pci 0000:00:16.7: PCI bridge to [bus 12]
[    4.012851] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    4.012883] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.013111] pci 0000:00:17.0: PCI bridge to [bus 13]
[    4.013144] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    4.013179] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.013414] pci 0000:00:17.1: PCI bridge to [bus 14]
[    4.013449] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    4.013483] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.013722] pci 0000:00:17.2: PCI bridge to [bus 15]
[    4.013757] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    4.013791] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.014029] pci 0000:00:17.3: PCI bridge to [bus 16]
[    4.014063] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    4.014098] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.014343] pci 0000:00:17.4: PCI bridge to [bus 17]
[    4.014376] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    4.014411] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.014640] pci 0000:00:17.5: PCI bridge to [bus 18]
[    4.014673] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    4.014706] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.014939] pci 0000:00:17.6: PCI bridge to [bus 19]
[    4.014972] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    4.015006] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.015246] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    4.015281] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    4.015316] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.015554] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    4.015589] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    4.015623] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.015861] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    4.015896] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    4.015930] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.016172] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    4.016207] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    4.016241] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.016480] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    4.016514] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    4.016548] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.016782] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    4.016816] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    4.016851] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.017083] pci 0000:00:18.5: PCI bridge to [bus 20]
[    4.017119] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    4.017153] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.017385] pci 0000:00:18.6: PCI bridge to [bus 21]
[    4.017418] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    4.017451] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.017681] pci 0000:00:18.7: PCI bridge to [bus 22]
[    4.017715] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    4.017748] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.019328] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.019397] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.019462] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.019525] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.033769] iommu: Default domain type: Passthrough 
[    4.033769] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[    4.033769] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.033769] pci 0000:00:0f.0: vgaarb: bridge control possible
[    4.033769] vgaarb: loaded
[    4.033769] SCSI subsystem initialized
[    4.033769] ACPI: bus type USB registered
[    4.033769] usbcore: registered new interface driver usbfs
[    4.033769] usbcore: registered new interface driver hub
[    4.035036] usbcore: registered new device driver usb
[    4.035058] pps_core: LinuxPPS API ver. 1 registered
[    4.035059] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    4.035061] PTP clock support registered
[    4.036395] EDAC MC: Ver: 3.0.0
[    4.037510] Registered efivars operations
[    4.037510] NetLabel: Initializing
[    4.037510] NetLabel:  domain hash size = 128
[    4.037510] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.037510] NetLabel:  unlabeled traffic allowed by default
[    4.037510] PCI: Using ACPI for IRQ routing
[    4.040542] PCI: pci_cache_line_size set to 64 bytes
[    4.041262] e820: reserve RAM buffer [mem 0x0e0a1018-0x0fffffff]
[    4.041264] e820: reserve RAM buffer [mem 0x0e0a3018-0x0fffffff]
[    4.041265] e820: reserve RAM buffer [mem 0x0e0a6018-0x0fffffff]
[    4.041266] e820: reserve RAM buffer [mem 0x0ef24000-0x0fffffff]
[    4.041267] e820: reserve RAM buffer [mem 0x0ef3c000-0x0fffffff]
[    4.041268] e820: reserve RAM buffer [mem 0x0ef61000-0x0fffffff]
[    4.041269] e820: reserve RAM buffer [mem 0x0fee7000-0x0fffffff]
[    4.041278] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    4.041278] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    4.043766] clocksource: Switched to clocksource tsc-early
[    4.060172] VFS: Disk quotas dquot_6.6.0
[    4.060226] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.060415] pnp: PnP ACPI init
[    4.060553] system 00:00: [io  0x0440-0x047f] has been reserved
[    4.060555] system 00:00: [io  0x5658-0x5659] has been reserved
[    4.060556] system 00:00: [io  0x5670] has been reserved
[    4.060557] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    4.060563] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.060584] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.060598] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    4.060612] pnp 00:03: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
[    4.060749] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    4.060752] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    4.061767] system 00:05: [io  0x0400-0x041f] has been reserved
[    4.061768] system 00:05: [mem 0xe0000000-0xe7ffffff] has been reserved
[    4.061770] system 00:05: [mem 0xffc00000-0xffdfffff] could not be reserved
[    4.061772] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.062429] pnp: PnP ACPI: found 6 devices
[    4.070161] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.070330] NET: Registered protocol family 2
[    4.070708] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.071617] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    4.072349] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.072492] TCP: Hash tables configured (established 524288 bind 65536)
[    4.072689] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    4.073032] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    4.074236] NET: Registered protocol family 1
[    4.074243] NET: Registered protocol family 44
[    4.074258] pci 0000:00:0f.0: can't claim BAR 6 [mem 0xffff8000-0xffffffff pref]: no compatible bridge window
[    4.074259] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    4.074261] pci 0000:0b:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    4.074267] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    4.074269] pci 0000:00:15.1: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    4.074270] pci 0000:00:15.2: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    4.074271] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    4.074272] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    4.074273] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    4.074274] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    4.074276] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    4.074278] pci 0000:00:16.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    4.074278] pci 0000:00:16.1: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    4.074279] pci 0000:00:16.2: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    4.074280] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    4.074281] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    4.074282] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    4.074283] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    4.074284] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    4.074284] pci 0000:00:17.0: bridge window [io  0x1000-0x0fff] to [bus 13] add_size 1000
[    4.074285] pci 0000:00:17.1: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    4.074286] pci 0000:00:17.2: bridge window [io  0x1000-0x0fff] to [bus 15] add_size 1000
[    4.074287] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    4.074288] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    4.074289] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    4.074290] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    4.074291] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    4.074292] pci 0000:00:18.0: bridge window [io  0x1000-0x0fff] to [bus 1b] add_size 1000
[    4.074293] pci 0000:00:18.1: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
[    4.074294] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    4.074295] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    4.074296] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    4.074297] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    4.074298] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    4.074299] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    4.074319] pci 0000:00:15.0: BAR 15: assigned [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.074324] pci 0000:00:16.0: BAR 15: assigned [mem 0xff100000-0xff2fffff 64bit pref]
[    4.074325] pci 0000:00:0f.0: BAR 6: assigned [mem 0xff300000-0xff307fff pref]
[    4.074327] pci 0000:00:15.1: BAR 13: assigned [io  0x6000-0x6fff]
[    4.074328] pci 0000:00:15.2: BAR 13: assigned [io  0x7000-0x7fff]
[    4.074328] pci 0000:00:15.3: BAR 13: assigned [io  0x8000-0x8fff]
[    4.074329] pci 0000:00:15.4: BAR 13: assigned [io  0x9000-0x9fff]
[    4.074330] pci 0000:00:15.5: BAR 13: assigned [io  0xa000-0xafff]
[    4.074331] pci 0000:00:15.6: BAR 13: assigned [io  0xb000-0xbfff]
[    4.074332] pci 0000:00:15.7: BAR 13: assigned [io  0xc000-0xcfff]
[    4.074333] pci 0000:00:16.1: BAR 13: assigned [io  0xd000-0xdfff]
[    4.074334] pci 0000:00:16.2: BAR 13: assigned [io  0xe000-0xefff]
[    4.074335] pci 0000:00:16.3: BAR 13: assigned [io  0xf000-0xffff]
[    4.074336] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    4.074337] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    4.074339] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    4.074339] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    4.074341] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    4.074341] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    4.074343] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    4.074343] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    4.074345] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    4.074345] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    4.074347] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    4.074347] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    4.074348] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    4.074349] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    4.074350] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    4.074351] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    4.074352] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    4.074353] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    4.074354] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    4.074355] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    4.074356] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    4.074357] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    4.074358] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    4.074359] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    4.074360] pci 0000:00:18.0: BAR 13: no space for [io  size 0x1000]
[    4.074360] pci 0000:00:18.0: BAR 13: failed to assign [io  size 0x1000]
[    4.074362] pci 0000:00:18.1: BAR 13: no space for [io  size 0x1000]
[    4.074362] pci 0000:00:18.1: BAR 13: failed to assign [io  size 0x1000]
[    4.074364] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    4.074364] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    4.074366] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    4.074366] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    4.074367] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    4.074368] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    4.074369] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    4.074370] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    4.074371] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    4.074372] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    4.074373] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    4.074374] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    4.074377] pci 0000:00:18.7: BAR 13: assigned [io  0x6000-0x6fff]
[    4.074378] pci 0000:00:18.6: BAR 13: assigned [io  0x7000-0x7fff]
[    4.074379] pci 0000:00:18.5: BAR 13: assigned [io  0x8000-0x8fff]
[    4.074380] pci 0000:00:18.4: BAR 13: assigned [io  0x9000-0x9fff]
[    4.074380] pci 0000:00:18.3: BAR 13: assigned [io  0xa000-0xafff]
[    4.074381] pci 0000:00:18.2: BAR 13: assigned [io  0xb000-0xbfff]
[    4.074382] pci 0000:00:18.1: BAR 13: assigned [io  0xc000-0xcfff]
[    4.074383] pci 0000:00:18.0: BAR 13: assigned [io  0xd000-0xdfff]
[    4.074384] pci 0000:00:17.7: BAR 13: assigned [io  0xe000-0xefff]
[    4.074385] pci 0000:00:17.6: BAR 13: assigned [io  0xf000-0xffff]
[    4.074386] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    4.074387] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    4.074388] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    4.074389] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    4.074390] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    4.074391] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    4.074392] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    4.074393] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    4.074394] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    4.074395] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    4.074396] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    4.074397] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    4.074398] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    4.074398] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    4.074400] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    4.074400] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    4.074402] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    4.074402] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    4.074404] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    4.074404] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    4.074406] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    4.074406] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    4.074408] pci 0000:00:16.2: BAR 13: no space for [io  size 0x1000]
[    4.074408] pci 0000:00:16.2: BAR 13: failed to assign [io  size 0x1000]
[    4.074410] pci 0000:00:16.1: BAR 13: no space for [io  size 0x1000]
[    4.074410] pci 0000:00:16.1: BAR 13: failed to assign [io  size 0x1000]
[    4.074411] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    4.074412] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    4.074413] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    4.074414] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    4.074415] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    4.074416] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    4.074428] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    4.074428] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    4.074429] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    4.074430] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
[    4.074431] pci 0000:00:15.2: BAR 13: no space for [io  size 0x1000]
[    4.074432] pci 0000:00:15.2: BAR 13: failed to assign [io  size 0x1000]
[    4.074433] pci 0000:00:15.1: BAR 13: no space for [io  size 0x1000]
[    4.074434] pci 0000:00:15.1: BAR 13: failed to assign [io  size 0x1000]
[    4.074435] pci 0000:00:01.0: PCI bridge to [bus 01]
[    4.074500] pci 0000:00:11.0: PCI bridge to [bus 02]
[    4.074507] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    4.074526] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    4.074539] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.074563] pci 0000:03:00.0: BAR 6: assigned [mem 0xfea00000-0xfea0ffff pref]
[    4.074564] pci 0000:00:15.0: PCI bridge to [bus 03]
[    4.074571] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    4.074589] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.074602] pci 0000:00:15.0:   bridge window [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.074626] pci 0000:00:15.1: PCI bridge to [bus 04]
[    4.074644] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.074657] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.074681] pci 0000:00:15.2: PCI bridge to [bus 05]
[    4.074699] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    4.074711] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.074735] pci 0000:00:15.3: PCI bridge to [bus 06]
[    4.074753] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    4.074766] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.074790] pci 0000:00:15.4: PCI bridge to [bus 07]
[    4.074808] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    4.074820] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.074844] pci 0000:00:15.5: PCI bridge to [bus 08]
[    4.074863] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    4.074875] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.074899] pci 0000:00:15.6: PCI bridge to [bus 09]
[    4.074917] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    4.074930] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.074954] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    4.074972] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    4.074984] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.075009] pci 0000:0b:00.0: BAR 6: assigned [mem 0xfe200000-0xfe20ffff pref]
[    4.075009] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    4.075016] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    4.075039] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    4.075051] pci 0000:00:16.0:   bridge window [mem 0xff100000-0xff2fffff 64bit pref]
[    4.075075] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    4.075093] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    4.075105] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.075130] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    4.075155] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    4.075167] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.075191] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    4.075210] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    4.075222] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.075246] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    4.075265] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    4.075277] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.075301] pci 0000:00:16.5: PCI bridge to [bus 10]
[    4.075319] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    4.075332] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.075356] pci 0000:00:16.6: PCI bridge to [bus 11]
[    4.075374] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    4.075386] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.075410] pci 0000:00:16.7: PCI bridge to [bus 12]
[    4.075429] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    4.075441] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.075465] pci 0000:00:17.0: PCI bridge to [bus 13]
[    4.075483] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    4.075496] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.075520] pci 0000:00:17.1: PCI bridge to [bus 14]
[    4.075538] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    4.075550] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.075574] pci 0000:00:17.2: PCI bridge to [bus 15]
[    4.075592] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    4.075605] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.075628] pci 0000:00:17.3: PCI bridge to [bus 16]
[    4.075647] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    4.075659] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.075683] pci 0000:00:17.4: PCI bridge to [bus 17]
[    4.075702] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    4.075714] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.075740] pci 0000:00:17.5: PCI bridge to [bus 18]
[    4.075759] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    4.075772] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.075796] pci 0000:00:17.6: PCI bridge to [bus 19]
[    4.075802] pci 0000:00:17.6:   bridge window [io  0xf000-0xffff]
[    4.075821] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    4.075833] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.075857] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    4.075864] pci 0000:00:17.7:   bridge window [io  0xe000-0xefff]
[    4.075882] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    4.075894] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.075918] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    4.075925] pci 0000:00:18.0:   bridge window [io  0xd000-0xdfff]
[    4.075943] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    4.075955] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.075979] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    4.075986] pci 0000:00:18.1:   bridge window [io  0xc000-0xcfff]
[    4.076004] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    4.076016] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.076042] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    4.076049] pci 0000:00:18.2:   bridge window [io  0xb000-0xbfff]
[    4.076068] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    4.076080] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.076105] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    4.076111] pci 0000:00:18.3:   bridge window [io  0xa000-0xafff]
[    4.076130] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    4.076142] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.076172] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    4.076178] pci 0000:00:18.4:   bridge window [io  0x9000-0x9fff]
[    4.076197] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    4.076209] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.076233] pci 0000:00:18.5: PCI bridge to [bus 20]
[    4.076240] pci 0000:00:18.5:   bridge window [io  0x8000-0x8fff]
[    4.076258] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    4.076270] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.076294] pci 0000:00:18.6: PCI bridge to [bus 21]
[    4.076301] pci 0000:00:18.6:   bridge window [io  0x7000-0x7fff]
[    4.076319] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    4.076331] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.076355] pci 0000:00:18.7: PCI bridge to [bus 22]
[    4.076362] pci 0000:00:18.7:   bridge window [io  0x6000-0x6fff]
[    4.076380] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    4.076392] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.076417] pci_bus 0000:00: resource 4 [io  0x0d00-0xffff window]
[    4.076418] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    4.076418] pci_bus 0000:00: resource 6 [mem 0xfef00000-0xffdfffff window]
[    4.076419] pci_bus 0000:00: resource 7 [mem 0xfed45000-0xfedfffff window]
[    4.076419] pci_bus 0000:00: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    4.076420] pci_bus 0000:00: resource 9 [mem 0xfa300000-0xfebfffff window]
[    4.076421] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    4.076421] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xefffffff window]
[    4.076422] pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
[    4.076423] pci_bus 0000:00: resource 13 [mem 0x000c4000-0x000c7fff window]
[    4.076423] pci_bus 0000:00: resource 14 [mem 0x000c8000-0x000cbfff window]
[    4.076424] pci_bus 0000:00: resource 15 [mem 0x000d4000-0x000d7fff window]
[    4.076424] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000dbfff window]
[    4.076425] pci_bus 0000:00: resource 17 [mem 0x000e4000-0x000e7fff window]
[    4.076425] pci_bus 0000:00: resource 18 [mem 0x000e8000-0x000ebfff window]
[    4.076426] pci_bus 0000:00: resource 19 [mem 0x000ec000-0x000effff window]
[    4.076427] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    4.076427] pci_bus 0000:02: resource 1 [mem 0xfc000000-0xfc9fffff]
[    4.076428] pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.076429] pci_bus 0000:02: resource 4 [io  0x0d00-0xffff window]
[    4.076429] pci_bus 0000:02: resource 5 [io  0x0000-0x0cf7 window]
[    4.076430] pci_bus 0000:02: resource 6 [mem 0xfef00000-0xffdfffff window]
[    4.076430] pci_bus 0000:02: resource 7 [mem 0xfed45000-0xfedfffff window]
[    4.076431] pci_bus 0000:02: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    4.076432] pci_bus 0000:02: resource 9 [mem 0xfa300000-0xfebfffff window]
[    4.076432] pci_bus 0000:02: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    4.076433] pci_bus 0000:02: resource 11 [mem 0xc0000000-0xefffffff window]
[    4.076433] pci_bus 0000:02: resource 12 [mem 0x000a0000-0x000bffff window]
[    4.076434] pci_bus 0000:02: resource 13 [mem 0x000c4000-0x000c7fff window]
[    4.076435] pci_bus 0000:02: resource 14 [mem 0x000c8000-0x000cbfff window]
[    4.076435] pci_bus 0000:02: resource 15 [mem 0x000d4000-0x000d7fff window]
[    4.076436] pci_bus 0000:02: resource 16 [mem 0x000d8000-0x000dbfff window]
[    4.076436] pci_bus 0000:02: resource 17 [mem 0x000e4000-0x000e7fff window]
[    4.076437] pci_bus 0000:02: resource 18 [mem 0x000e8000-0x000ebfff window]
[    4.076438] pci_bus 0000:02: resource 19 [mem 0x000ec000-0x000effff window]
[    4.076438] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    4.076439] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    4.076439] pci_bus 0000:03: resource 2 [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.076440] pci_bus 0000:04: resource 1 [mem 0xfe900000-0xfe9fffff]
[    4.076441] pci_bus 0000:04: resource 2 [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.076441] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]
[    4.076442] pci_bus 0000:05: resource 2 [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.076442] pci_bus 0000:06: resource 1 [mem 0xfe700000-0xfe7fffff]
[    4.076443] pci_bus 0000:06: resource 2 [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.076444] pci_bus 0000:07: resource 1 [mem 0xfe600000-0xfe6fffff]
[    4.076444] pci_bus 0000:07: resource 2 [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.076445] pci_bus 0000:08: resource 1 [mem 0xfe500000-0xfe5fffff]
[    4.076445] pci_bus 0000:08: resource 2 [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.076446] pci_bus 0000:09: resource 1 [mem 0xfe400000-0xfe4fffff]
[    4.076447] pci_bus 0000:09: resource 2 [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.076447] pci_bus 0000:0a: resource 1 [mem 0xfe300000-0xfe3fffff]
[    4.076448] pci_bus 0000:0a: resource 2 [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.076448] pci_bus 0000:0b: resource 0 [io  0x3000-0x3fff]
[    4.076449] pci_bus 0000:0b: resource 1 [mem 0xfe200000-0xfe2fffff]
[    4.076450] pci_bus 0000:0b: resource 2 [mem 0xff100000-0xff2fffff 64bit pref]
[    4.076450] pci_bus 0000:0c: resource 1 [mem 0xfe100000-0xfe1fffff]
[    4.076451] pci_bus 0000:0c: resource 2 [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.076451] pci_bus 0000:0d: resource 1 [mem 0xfe000000-0xfe0fffff]
[    4.076452] pci_bus 0000:0d: resource 2 [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.076453] pci_bus 0000:0e: resource 1 [mem 0xfdf00000-0xfdffffff]
[    4.076453] pci_bus 0000:0e: resource 2 [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.076454] pci_bus 0000:0f: resource 1 [mem 0xfde00000-0xfdefffff]
[    4.076454] pci_bus 0000:0f: resource 2 [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.076455] pci_bus 0000:10: resource 1 [mem 0xfdd00000-0xfddfffff]
[    4.076456] pci_bus 0000:10: resource 2 [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.076456] pci_bus 0000:11: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    4.076457] pci_bus 0000:11: resource 2 [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.076457] pci_bus 0000:12: resource 1 [mem 0xfdb00000-0xfdbfffff]
[    4.076458] pci_bus 0000:12: resource 2 [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.076459] pci_bus 0000:13: resource 1 [mem 0xfda00000-0xfdafffff]
[    4.076459] pci_bus 0000:13: resource 2 [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.076460] pci_bus 0000:14: resource 1 [mem 0xfd900000-0xfd9fffff]
[    4.076460] pci_bus 0000:14: resource 2 [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.076461] pci_bus 0000:15: resource 1 [mem 0xfd800000-0xfd8fffff]
[    4.076462] pci_bus 0000:15: resource 2 [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.076462] pci_bus 0000:16: resource 1 [mem 0xfd700000-0xfd7fffff]
[    4.076463] pci_bus 0000:16: resource 2 [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.076463] pci_bus 0000:17: resource 1 [mem 0xfd600000-0xfd6fffff]
[    4.076464] pci_bus 0000:17: resource 2 [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.076465] pci_bus 0000:18: resource 1 [mem 0xfd500000-0xfd5fffff]
[    4.076465] pci_bus 0000:18: resource 2 [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.076466] pci_bus 0000:19: resource 0 [io  0xf000-0xffff]
[    4.076466] pci_bus 0000:19: resource 1 [mem 0xfd400000-0xfd4fffff]
[    4.076467] pci_bus 0000:19: resource 2 [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.076468] pci_bus 0000:1a: resource 0 [io  0xe000-0xefff]
[    4.076468] pci_bus 0000:1a: resource 1 [mem 0xfd300000-0xfd3fffff]
[    4.076469] pci_bus 0000:1a: resource 2 [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.076469] pci_bus 0000:1b: resource 0 [io  0xd000-0xdfff]
[    4.076470] pci_bus 0000:1b: resource 1 [mem 0xfd200000-0xfd2fffff]
[    4.076471] pci_bus 0000:1b: resource 2 [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.076471] pci_bus 0000:1c: resource 0 [io  0xc000-0xcfff]
[    4.076472] pci_bus 0000:1c: resource 1 [mem 0xfd100000-0xfd1fffff]
[    4.076472] pci_bus 0000:1c: resource 2 [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.076473] pci_bus 0000:1d: resource 0 [io  0xb000-0xbfff]
[    4.076474] pci_bus 0000:1d: resource 1 [mem 0xfd000000-0xfd0fffff]
[    4.076474] pci_bus 0000:1d: resource 2 [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.076475] pci_bus 0000:1e: resource 0 [io  0xa000-0xafff]
[    4.076476] pci_bus 0000:1e: resource 1 [mem 0xfcf00000-0xfcffffff]
[    4.076476] pci_bus 0000:1e: resource 2 [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.076477] pci_bus 0000:1f: resource 0 [io  0x9000-0x9fff]
[    4.076477] pci_bus 0000:1f: resource 1 [mem 0xfce00000-0xfcefffff]
[    4.076478] pci_bus 0000:1f: resource 2 [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.076479] pci_bus 0000:20: resource 0 [io  0x8000-0x8fff]
[    4.076479] pci_bus 0000:20: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    4.076480] pci_bus 0000:20: resource 2 [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.076480] pci_bus 0000:21: resource 0 [io  0x7000-0x7fff]
[    4.076481] pci_bus 0000:21: resource 1 [mem 0xfcc00000-0xfccfffff]
[    4.076481] pci_bus 0000:21: resource 2 [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.076482] pci_bus 0000:22: resource 0 [io  0x6000-0x6fff]
[    4.076483] pci_bus 0000:22: resource 1 [mem 0xfcb00000-0xfcbfffff]
[    4.076483] pci_bus 0000:22: resource 2 [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.076539] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    4.076603] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.076837] PCI: CLS 32 bytes, default 64
[    4.076871] Trying to unpack rootfs image as initramfs...
[    5.022544] Freeing initrd memory: 72668K
[    5.022548] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    5.022551] software IO TLB: mapped [mem 0x00000000bc000000-0x00000000c0000000] (64MB)
[    5.058610] Initialise system trusted keyrings
[    5.058619] Key type blacklist registered
[    5.058857] workingset: timestamp_bits=36 max_order=28 bucket_order=0
[    5.059800] zbud: loaded
[    5.063160] integrity: Platform Keyring initialized
[    5.071284] NET: Registered protocol family 38
[    5.071288] Key type asymmetric registered
[    5.071290] Asymmetric key parser 'x509' registered
[    5.071305] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    5.071826] io scheduler mq-deadline registered
[    5.071827] io scheduler kyber registered
[    5.071897] io scheduler bfq registered
[    5.074461] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    5.075032] pcieport 0000:00:15.0: PME: Signaling with IRQ 24
[    5.075117] pcieport 0000:00:15.0: pciehp: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.075909] pcieport 0000:00:15.1: PME: Signaling with IRQ 25
[    5.075978] pcieport 0000:00:15.1: pciehp: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.076732] pcieport 0000:00:15.2: PME: Signaling with IRQ 26
[    5.076801] pcieport 0000:00:15.2: pciehp: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.077547] pcieport 0000:00:15.3: PME: Signaling with IRQ 27
[    5.077615] pcieport 0000:00:15.3: pciehp: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.078356] pcieport 0000:00:15.4: PME: Signaling with IRQ 28
[    5.078425] pcieport 0000:00:15.4: pciehp: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.079164] pcieport 0000:00:15.5: PME: Signaling with IRQ 29
[    5.079232] pcieport 0000:00:15.5: pciehp: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.079970] pcieport 0000:00:15.6: PME: Signaling with IRQ 30
[    5.080038] pcieport 0000:00:15.6: pciehp: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.080772] pcieport 0000:00:15.7: PME: Signaling with IRQ 31
[    5.080843] pcieport 0000:00:15.7: pciehp: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.081601] pcieport 0000:00:16.0: PME: Signaling with IRQ 32
[    5.081671] pcieport 0000:00:16.0: pciehp: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.082408] pcieport 0000:00:16.1: PME: Signaling with IRQ 33
[    5.082478] pcieport 0000:00:16.1: pciehp: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.083235] pcieport 0000:00:16.2: PME: Signaling with IRQ 34
[    5.083304] pcieport 0000:00:16.2: pciehp: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.084052] pcieport 0000:00:16.3: PME: Signaling with IRQ 35
[    5.084121] pcieport 0000:00:16.3: pciehp: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.084874] pcieport 0000:00:16.4: PME: Signaling with IRQ 36
[    5.084941] pcieport 0000:00:16.4: pciehp: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.085697] pcieport 0000:00:16.5: PME: Signaling with IRQ 37
[    5.085765] pcieport 0000:00:16.5: pciehp: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.086523] pcieport 0000:00:16.6: PME: Signaling with IRQ 38
[    5.086591] pcieport 0000:00:16.6: pciehp: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.087320] pcieport 0000:00:16.7: PME: Signaling with IRQ 39
[    5.087386] pcieport 0000:00:16.7: pciehp: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.088105] pcieport 0000:00:17.0: PME: Signaling with IRQ 40
[    5.088182] pcieport 0000:00:17.0: pciehp: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.088896] pcieport 0000:00:17.1: PME: Signaling with IRQ 41
[    5.088961] pcieport 0000:00:17.1: pciehp: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.089691] pcieport 0000:00:17.2: PME: Signaling with IRQ 42
[    5.089757] pcieport 0000:00:17.2: pciehp: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.090465] pcieport 0000:00:17.3: PME: Signaling with IRQ 43
[    5.090530] pcieport 0000:00:17.3: pciehp: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.091241] pcieport 0000:00:17.4: PME: Signaling with IRQ 44
[    5.091308] pcieport 0000:00:17.4: pciehp: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.092015] pcieport 0000:00:17.5: PME: Signaling with IRQ 45
[    5.092082] pcieport 0000:00:17.5: pciehp: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.092797] pcieport 0000:00:17.6: PME: Signaling with IRQ 46
[    5.092864] pcieport 0000:00:17.6: pciehp: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.093578] pcieport 0000:00:17.7: PME: Signaling with IRQ 47
[    5.093643] pcieport 0000:00:17.7: pciehp: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.094379] pcieport 0000:00:18.0: PME: Signaling with IRQ 48
[    5.094448] pcieport 0000:00:18.0: pciehp: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.095549] pcieport 0000:00:18.1: PME: Signaling with IRQ 49
[    5.095616] pcieport 0000:00:18.1: pciehp: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.096346] pcieport 0000:00:18.2: PME: Signaling with IRQ 50
[    5.096414] pcieport 0000:00:18.2: pciehp: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.097134] pcieport 0000:00:18.3: PME: Signaling with IRQ 51
[    5.097206] pcieport 0000:00:18.3: pciehp: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.097917] pcieport 0000:00:18.4: PME: Signaling with IRQ 52
[    5.097980] pcieport 0000:00:18.4: pciehp: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.098705] pcieport 0000:00:18.5: PME: Signaling with IRQ 53
[    5.098769] pcieport 0000:00:18.5: pciehp: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.099446] pcieport 0000:00:18.6: PME: Signaling with IRQ 54
[    5.099511] pcieport 0000:00:18.6: pciehp: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.100188] pcieport 0000:00:18.7: PME: Signaling with IRQ 55
[    5.100250] pcieport 0000:00:18.7: pciehp: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.100654] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    5.100689] efifb: probing for efifb
[    5.100955] efifb: framebuffer at 0xf0000000, using 3072k, total 3072k
[    5.100956] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    5.100956] efifb: scrolling: redraw
[    5.100958] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    5.101047] Console: switching to colour frame buffer device 128x48
[    5.104003] fb0: EFI VGA frame buffer device
[    5.104014] intel_idle: Please enable MWAIT in BIOS SETUP
[    5.104319] ACPI: AC Adapter [ACAD] (on-line)
[    5.104397] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    5.104509] ACPI: Power Button [PWRF]
[    5.125704] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    5.126186] Non-volatile memory driver v1.3
[    5.139869] rdac: device handler registered
[    5.140139] hp_sw: device handler registered
[    5.140140] emc: device handler registered
[    5.140624] alua: device handler registered
[    5.140727] libphy: Fixed MDIO Bus: probed
[    5.140762] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.140765] ehci-pci: EHCI PCI platform driver
[    5.140775] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.140777] ohci-pci: OHCI PCI platform driver
[    5.140786] uhci_hcd: USB Universal Host Controller Interface driver
[    5.140828] usbcore: registered new interface driver usbserial_generic
[    5.140833] usbserial: USB Serial support registered for generic
[    5.140874] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    5.143240] serio: i8042 KBD port at 0x60,0x64 irq 1
[    5.143244] serio: i8042 AUX port at 0x60,0x64 irq 12
[    5.143385] mousedev: PS/2 mouse device common for all mice
[    5.164057] rtc_cmos 00:01: registered as rtc0
[    5.164420] rtc_cmos 00:01: setting system clock to 2020-10-19T16:53:58 UTC (1603126438)
[    5.164456] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    5.164498] intel_pstate: CPU model not supported
[    5.164633] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    5.165241] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    5.165543] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    5.165865] EFI Variables Facility v0.08 2004-May-17
[    5.171833] hid: raw HID events driver (C) Jiri Kosina
[    5.171904] usbcore: registered new interface driver usbhid
[    5.171905] usbhid: USB HID core driver
[    5.172406] drop_monitor: Initializing network drop monitor service
[    5.172499] Initializing XFRM netlink socket
[    5.172618] NET: Registered protocol family 10
[    5.173447] Segment Routing with IPv6
[    5.173465] NET: Registered protocol family 17
[    5.173587] mpls_gso: MPLS GSO support
[    5.180737] IPI shorthand broadcast: enabled
[    5.180760] AVX2 version of gcm_enc/dec engaged.
[    5.180761] AES CTR mode by8 optimization enabled
[    5.195760] sched_clock: Marking stable (5187106172, 8650799)->(5391133524, -195376553)
[    5.196478] registered taskstats version 1
[    5.196499] Loading compiled-in X.509 certificates
[    5.224754] Loaded X.509 cert 'Build time autogenerated kernel key: 982081f93f6846988adc62d58c43321f47a8fffe'
[    5.224835] zswap: loaded using pool lzo/zbud
[    5.228416] Key type encrypted registered
[    5.228855] integrity: Loading X.509 certificate: UEFI:db
[    5.228901] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    5.228902] integrity: Loading X.509 certificate: UEFI:db
[    5.229070] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    5.229071] integrity: Loading X.509 certificate: UEFI:db
[    5.229087] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    5.229088] integrity: Loading X.509 certificate: UEFI:db
[    5.229102] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    5.229786] integrity: Loading X.509 certificate: UEFI:MokListRT
[    5.229953] integrity: Loaded X.509 cert 'Red Hat Secure Boot (CA key 1): 4016841644ce3a810408050766e8f8a29c65f85c'
[    5.229956] ima: No TPM chip found, activating TPM-bypass!
[    5.229959] ima: Allocated hash algorithm: sha1
[    5.229965] ima: No architecture policies found
[    5.229981] evm: Initialising EVM extended attributes:
[    5.229982] evm: security.selinux
[    5.229982] evm: security.ima
[    5.229983] evm: security.capability
[    5.229984] evm: HMAC attrs: 0x1
[    5.236512] Freeing unused decrypted memory: 2036K
[    5.237759] Freeing unused kernel image (initmem) memory: 2352K
[    5.244190] Write protecting the kernel read-only data: 20480k
[    5.245607] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    5.246876] Freeing unused kernel image (rodata/data gap) memory: 1768K
[    5.247012] Run /init as init process
[    5.247013]   with arguments:
[    5.247014]     /init
[    5.247015]     rhgb
[    5.247015]   with environment:
[    5.247016]     HOME=/
[    5.247017]     TERM=linux
[    5.247018]     BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.9.0
[    5.247019]     crashkernel=auto
[    5.272203] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    5.272228] systemd[1]: Detected virtualization vmware.
[    5.272231] systemd[1]: Detected architecture x86-64.
[    5.272233] systemd[1]: Running in initial RAM disk.
[    5.284372] systemd[1]: Set hostname to <localhost.localdomain>.
[    5.338525] random: systemd: uninitialized urandom read (16 bytes read)
[    5.338534] systemd[1]: Reached target Timers.
[    5.338569] random: systemd: uninitialized urandom read (16 bytes read)
[    5.338574] systemd[1]: Reached target Local File Systems.
[    5.338582] random: systemd: uninitialized urandom read (16 bytes read)
[    5.338658] systemd[1]: Listening on Journal Socket (/dev/log).
[    5.338719] systemd[1]: Listening on udev Control Socket.
[    5.338762] systemd[1]: Listening on udev Kernel Socket.
[    5.833338] VMware vmxnet3 virtual NIC driver - version 1.5.0.0-k-NAPI
[    5.833391] vmxnet3 0000:0b:00.0: # of Tx queues : 8, # of Rx queues : 8
[    5.833450] vmxnet3 0000:0b:00.0: enabling device (0000 -> 0003)
[    5.838797] VMware PVSCSI driver - version 1.0.7.0-k
[    5.839629] vmw_pvscsi: using 64bit dma
[    5.839650] vmxnet3 0000:0b:00.0 eth0: NIC Link is Up 10000 Mbps
[    5.839769] vmw_pvscsi: max_id: 65
[    5.839770] vmw_pvscsi: setting ring_pages to 32
[    5.841400] vmw_pvscsi: enabling reqCallThreshold
[    5.844363] vmw_pvscsi: driver-based request coalescing enabled
[    5.844364] vmw_pvscsi: using MSI-X
[    5.844481] scsi host0: VMware PVSCSI storage adapter rev 2, req/cmp/msg rings: 32/32/1 pages, cmd_per_lun=254
[    5.845495] vmw_pvscsi 0000:03:00.0: VMware PVSCSI rev 2 host #0
[    5.845720] scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     2.0  PQ: 0 ANSI: 6
[    5.857969] libata version 3.00 loaded.
[    5.862218] ata_piix 0000:00:07.1: version 2.13
[    5.862838] scsi host1: ata_piix
[    5.863319] scsi host2: ata_piix
[    5.863351] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x2050 irq 14
[    5.863352] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x2058 irq 15
[    6.075559] [drm] DMA map mode: Caching DMA mappings.
[    6.075773] [drm] Capabilities:
[    6.075774] [drm]   Rect copy.
[    6.075775] [drm]   Cursor.
[    6.075775] [drm]   Cursor bypass.
[    6.075776] [drm]   Cursor bypass 2.
[    6.075776] [drm]   8bit emulation.
[    6.075777] [drm]   Alpha cursor.
[    6.075777] [drm]   Extended Fifo.
[    6.075778] [drm]   Multimon.
[    6.075778] [drm]   Pitchlock.
[    6.075778] [drm]   Irq mask.
[    6.075779] [drm]   Display Topology.
[    6.075779] [drm]   GMR.
[    6.075780] [drm]   Traces.
[    6.075780] [drm]   GMR2.
[    6.075781] [drm]   Screen Object 2.
[    6.075781] [drm]   Command Buffers.
[    6.075781] [drm]   Command Buffers 2.
[    6.075782] [drm]   Guest Backed Resources.
[    6.075782] [drm]   DX Features.
[    6.075783] [drm]   HP Command Queue.
[    6.075783] [drm] Capabilities2:
[    6.075784] [drm]   Grow oTable.
[    6.075786] [drm]   IntraSurface copy.
[    6.075788] [drm] Max GMR ids is 64
[    6.075788] [drm] Max number of GMR pages is 65536
[    6.075789] [drm] Max dedicated hypervisor surface memory is 0 kiB
[    6.075789] [drm] Maximum display memory size is 8192 kiB
[    6.075790] [drm] VRAM at 0xf0000000 size is 8192 kiB
[    6.075791] [drm] MMIO at 0xfb800000 size is 256 kiB
[    6.075829] vmwgfx 0000:00:0f.0: BAR 1: can't reserve [mem 0xf0000000-0xf7ffffff pref]
[    6.075830] [drm] It appears like vesafb is loaded. Ignore above error if any.
[    6.076452] [TTM] Zone  kernel: Available graphics memory: 528423290 KiB
[    6.076453] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    6.076455] [TTM] Initializing pool allocator
[    6.076458] [TTM] Initializing DMA pool allocator
[    6.080180] tsc: Refined TSC clocksource calibration: 2095.080 MHz
[    6.080231] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e3308baada, max_idle_ns: 440795237786 ns
[    6.080276] [drm] Screen Target Display device initialized
[    6.080313] [drm] width 1024
[    6.080319] [drm] height 768
[    6.080325] [drm] bpp 32
[    6.084879] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
[    6.084966] clocksource: Switched to clocksource tsc
[    6.086172] [drm] Using command buffers with DMA pool.
[    6.086180] [drm] Atomic: yes.
[    6.092030] checking generic (f0000000 300000) vs hw (f0000000 800000)
[    6.092032] fb0: switching to svgadrmfb from EFI VGA
[    6.093397] Console: switching to colour dummy device 80x25
[    6.093555] fbcon: svgadrmfb (fb0) is primary device
[    6.095020] Console: switching to colour frame buffer device 128x48
[    6.101873] [drm] Initialized vmwgfx 2.18.0 20200114 for 0000:00:0f.0 on minor 0
[    6.152741] vmxnet3 0000:0b:00.0 ens192: renamed from eth0
[    6.171496] sd 0:0:0:0: [sda] 41943040 512-byte logical blocks: (21.5 GB/20.0 GiB)
[    6.171534] sd 0:0:0:0: [sda] Write Protect is off
[    6.171535] sd 0:0:0:0: [sda] Mode Sense: 61 00 00 00
[    6.171569] sd 0:0:0:0: [sda] Cache data unavailable
[    6.171570] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    6.181027]  sda: sda1 sda2
[    6.182186] sd 0:0:0:0: [sda] Attached SCSI disk
[    6.316384] random: fast init done
[    6.440393] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    6.585473] random: crng init done
[    6.585476] random: 7 urandom warning(s) missed due to ratelimiting
[    6.780220] systemd-journald[776]: Received SIGTERM from PID 1 (systemd).
[    6.808493] printk: systemd: 22 output lines suppressed due to ratelimiting
[    6.864195] SELinux:  Runtime disable is deprecated, use selinux=0 on the kernel cmdline.
[    6.864224] SELinux:  Disabled at runtime.
[    6.901223] audit: type=1404 audit(1603126440.236:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1
[    6.926328] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    6.926344] systemd[1]: Detected virtualization vmware.
[    6.926347] systemd[1]: Detected architecture x86-64.
[    6.927001] systemd[1]: Set hostname to <localhost.localdomain>.
[    6.983440] systemd[1]: Configuration file /usr/lib/systemd/system/rc-local.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    7.043528] systemd[1]: Stopped Switch Root.
[    7.044083] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[    7.044221] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    7.044243] systemd[1]: Stopped Journal Service.
[    7.045057] systemd[1]: Starting Journal Service...
[    7.058100] EXT4-fs (sda2): re-mounted. Opts: (null)
[    7.261311] systemd-journald[4294]: Received request to flush runtime journal from PID 1
[    7.433336] vmw_vmci 0000:00:07.7: enabling device (0000 -> 0003)
[    7.435809] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x12000, irq 16
[    7.435925] vmw_vmci 0000:00:07.7: Using capabilities 0x1c
[    7.438559] Guest personality initialized and is active
[    7.439430] VMCI host device registered (name=vmci, major=10, minor=61)
[    7.439431] Initialized host personality
[    7.449738] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    7.465135] piix4_smbus 0000:00:07.3: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
[    7.473663] NET: Registered protocol family 40
[    7.547546] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    7.657240] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    7.825853] vmxnet3 0000:0b:00.0 ens192: intr type 3, mode 0, 9 vectors allocated
[    7.827044] vmxnet3 0000:0b:00.0 ens192: NIC Link is Up 10000 Mbps

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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-10-20 13:45       ` Rahul Gopakumar
@ 2020-10-20 15:18         ` bhe
  2020-10-20 15:26           ` Rahul Gopakumar
  0 siblings, 1 reply; 21+ messages in thread
From: bhe @ 2020-10-20 15:18 UTC (permalink / raw)
  To: Rahul Gopakumar
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

On 10/20/20 at 01:45pm, Rahul Gopakumar wrote:
> Hi Baoquan,
> 
> We had some trouble applying the patch to problem commit and the latest upstream commit. Steven (CC'ed) helped us by providing the updated draft patch. We applied it on the latest commit (3e4fb4346c781068610d03c12b16c0cfb0fd24a3), and it doesn't look like improving the performance numbers.

Thanks for your feedback. From the code, I am sure what the problem is,
but I didn't test it on system with huge memory. Forget mentioning my
draft patch is based on akpm/master branch since it's a mm issue, it
might be a little different with linus's mainline kernel, sorry for the
inconvenience.

I will test and debug this on a server with 4T memory in our lab, and
update if any progress.

> 
> Patch on latest commit - 20.161 secs
> Vanilla latest commit - 19.50 secs

Here, do you mean it even cost more time with the patch applied?

> 
> Here is the draft patch we tried
> 
> ------------------------
> 
> diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c
> index 8e7b8c6c576e..ff5fa4c3889e 100644
> --- a/arch/ia64/mm/init.c
> +++ b/arch/ia64/mm/init.c
> @@ -537,7 +537,7 @@ virtual_memmap_init(u64 start, u64 end, void *arg)
>  
>          if (map_start < map_end)
>                  memmap_init_zone((unsigned long)(map_end - map_start),
> -                                args->nid, args->zone, page_to_pfn(map_start),
> +                                args->nid, args->zone, page_to_pfn(map_start), page_to_pfn(map_end),
>                                   MEMINIT_EARLY, NULL);
>          return 0;
>  }
> @@ -547,7 +547,7 @@ memmap_init (unsigned long size, int nid, unsigned long zone,
>               unsigned long start_pfn)
>  {
>          if (!vmem_map) {
> -               memmap_init_zone(size, nid, zone, start_pfn,
> +               memmap_init_zone(size, nid, zone, start_pfn, start_pfn + size,
>                                   MEMINIT_EARLY, NULL);
>          } else {
>                  struct page *start;
> diff --git a/include/linux/mm.h b/include/linux/mm.h
> index 16b799a0522c..65e34b370e33 100644
> --- a/include/linux/mm.h
> +++ b/include/linux/mm.h
> @@ -2416,7 +2416,7 @@ extern int __meminit __early_pfn_to_nid(unsigned long pfn,
>  
>  extern void set_dma_reserve(unsigned long new_dma_reserve);
>  extern void memmap_init_zone(unsigned long, int, unsigned long, unsigned long,
> -               enum meminit_context, struct vmem_altmap *);
> +               unsigned long, enum meminit_context, struct vmem_altmap *);
>  extern void setup_per_zone_wmarks(void);
>  extern int __meminit init_per_zone_wmark_min(void);
>  extern void mem_init(void);
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index ce3e73e3a5c1..03fddd8f4b11 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -728,7 +728,7 @@ void __ref move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
>           * expects the zone spans the pfn range. All the pages in the range
>           * are reserved so nobody should be touching them so we should be safe
>           */
> -       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn,
> +       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn, 0,
>                           MEMINIT_HOTPLUG, altmap);
>  
>          set_zone_contiguous(zone);
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 780c8f023b28..fe80055ea59c 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -5989,8 +5989,8 @@ overlap_memmap_init(unsigned long zone, unsigned long *pfn)
>   * done. Non-atomic initialization, single-pass.
>   */
>  void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
> -               unsigned long start_pfn, enum meminit_context context,
> -               struct vmem_altmap *altmap)
> +               unsigned long start_pfn, unsigned long zone_end_pfn,
> +               enum meminit_context context, struct vmem_altmap *altmap)
>  {
>          unsigned long pfn, end_pfn = start_pfn + size;
>          struct page *page;
> @@ -6024,7 +6024,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
>                  if (context == MEMINIT_EARLY) {
>                          if (overlap_memmap_init(zone, &pfn))
>                                  continue;
> -                       if (defer_init(nid, pfn, end_pfn))
> +                       if (defer_init(nid, pfn, zone_end_pfn))
>                                  break;
>                  }
>  
> @@ -6150,7 +6150,7 @@ void __meminit __weak memmap_init(unsigned long size, int nid,
>  
>                  if (end_pfn > start_pfn) {
>                          size = end_pfn - start_pfn;
> -                       memmap_init_zone(size, nid, zone, start_pfn,
> +                       memmap_init_zone(size, nid, zone, start_pfn, range_end_pfn,
>                                           MEMINIT_EARLY, NULL);
>                  }
>          }
> 
> 
> ------------------------
> 
> We have attached default dmesg logs and also dmesg logs collected with memblock=debug kernel cmdline for both vanilla and patched kernels. Let me know if you need more info.
> 
> 
> 
> From: bhe@redhat.com <bhe@redhat.com>
> Sent: 13 October 2020 6:47 PM
> To: Rahul Gopakumar <gopakumarr@vmware.com>
> Cc: linux-mm@kvack.org <linux-mm@kvack.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; akpm@linux-foundation.org <akpm@linux-foundation.org>; natechancellor@gmail.com <natechancellor@gmail.com>; ndesaulniers@google.com <ndesaulniers@google.com>; clang-built-linux@googlegroups.com <clang-built-linux@googlegroups.com>; rostedt@goodmis.org <rostedt@goodmis.org>; Rajender M <manir@vmware.com>; Yiu Cho Lau <lauyiuch@vmware.com>; Peter Jonasson <pjonasson@vmware.com>; Venkatesh Rajaram <rajaramv@vmware.com>
> Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel 
>  
> Hi Rahul,
> 
> On 10/12/20 at 05:21pm, Rahul Gopakumar wrote:
> > Hi Baoquan,
> > 
> > Attached collected dmesg logs for with and without
> > commit after adding memblock=debug to kernel cmdline.
> 
> Can you test below draft patch and see if it works for you? 
> 
> From a2ea6caef3c73ad9efb2dd2b48039065fe430bb2 Mon Sep 17 00:00:00 2001
> From: Baoquan He <bhe@redhat.com>
> Date: Tue, 13 Oct 2020 20:05:30 +0800
> Subject: [PATCH] mm: make memmap defer init only take effect per zone
> 
> Deferred struct page init is designed to work per zone. However since
> commit 73a6e474cb376 ("mm: memmap_init: iterate over memblock regions
> rather that check each PFN"), the handling is mistakenly done in all memory
> ranges inside one zone. Especially in those unmovable zones of multiple nodes,
> memblock reservation split them into many memory ranges. This makes
> initialized struct page more than expected in early stage, then increases
> much boot time.
> 
> Let's fix it to make the memmap defer init handled in zone wide, but not in
> memory range of one zone.
> 
> Signed-off-by: Baoquan He <bhe@redhat.com>
> ---
>  arch/ia64/mm/init.c | 4 ++--
>  include/linux/mm.h  | 5 +++--
>  mm/memory_hotplug.c | 2 +-
>  mm/page_alloc.c     | 6 +++---
>  4 files changed, 9 insertions(+), 8 deletions(-)
> 
> diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c
> index ef12e097f318..27ca549ff47e 100644
> --- a/arch/ia64/mm/init.c
> +++ b/arch/ia64/mm/init.c
> @@ -536,7 +536,7 @@ virtual_memmap_init(u64 start, u64 end, void *arg)
>  
>          if (map_start < map_end)
>                  memmap_init_zone((unsigned long)(map_end - map_start),
> -                                args->nid, args->zone, page_to_pfn(map_start),
> +                                args->nid, args->zone, page_to_pfn(map_start), page_to_pfn(map_end),
>                                   MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
>          return 0;
>  }
> @@ -546,7 +546,7 @@ memmap_init (unsigned long size, int nid, unsigned long zone,
>               unsigned long start_pfn)
>  {
>          if (!vmem_map) {
> -               memmap_init_zone(size, nid, zone, start_pfn,
> +               memmap_init_zone(size, nid, zone, start_pfn, start_pfn + size,
>                                   MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
>          } else {
>                  struct page *start;
> diff --git a/include/linux/mm.h b/include/linux/mm.h
> index ef360fe70aaf..5f9fc61d5be2 100644
> --- a/include/linux/mm.h
> +++ b/include/linux/mm.h
> @@ -2439,8 +2439,9 @@ extern int __meminit __early_pfn_to_nid(unsigned long pfn,
>  #endif
>  
>  extern void set_dma_reserve(unsigned long new_dma_reserve);
> -extern void memmap_init_zone(unsigned long, int, unsigned long, unsigned long,
> -               enum meminit_context, struct vmem_altmap *, int migratetype);
> +extern void memmap_init_zone(unsigned long, int, unsigned long,
> +               unsigned long, unsigned long, enum meminit_context,
> +               struct vmem_altmap *, int migratetype);
>  extern void setup_per_zone_wmarks(void);
>  extern int __meminit init_per_zone_wmark_min(void);
>  extern void mem_init(void);
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index b44d4c7ba73b..f9a37e6abc1c 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -732,7 +732,7 @@ void __ref move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
>           * expects the zone spans the pfn range. All the pages in the range
>           * are reserved so nobody should be touching them so we should be safe
>           */
> -       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn,
> +       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn, 0,
>                           MEMINIT_HOTPLUG, altmap, migratetype);
>  
>          set_zone_contiguous(zone);
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 2ebf9ddafa3a..e8b19fdd18ec 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -6044,7 +6044,7 @@ overlap_memmap_init(unsigned long zone, unsigned long *pfn)
>   * zone stats (e.g., nr_isolate_pageblock) are touched.
>   */
>  void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
> -               unsigned long start_pfn,
> +               unsigned long start_pfn, unsigned long zone_end_pfn,
>                  enum meminit_context context,
>                  struct vmem_altmap *altmap, int migratetype)
>  {
> @@ -6080,7 +6080,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
>                  if (context == MEMINIT_EARLY) {
>                          if (overlap_memmap_init(zone, &pfn))
>                                  continue;
> -                       if (defer_init(nid, pfn, end_pfn))
> +                       if (defer_init(nid, pfn, zone_end_pfn))
>                                  break;
>                  }
>  
> @@ -6194,7 +6194,7 @@ void __meminit __weak memmap_init(unsigned long size, int nid,
>  
>                  if (end_pfn > start_pfn) {
>                          size = end_pfn - start_pfn;
> -                       memmap_init_zone(size, nid, zone, start_pfn,
> +                       memmap_init_zone(size, nid, zone, start_pfn, range_end_pfn,
>                                           MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
>                  }
>          }
> -- 
> 2.17.2






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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-10-20 15:18         ` bhe
@ 2020-10-20 15:26           ` Rahul Gopakumar
  2020-10-22  4:04             ` bhe
  0 siblings, 1 reply; 21+ messages in thread
From: Rahul Gopakumar @ 2020-10-20 15:26 UTC (permalink / raw)
  To: bhe
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

>> Here, do you mean it even cost more time with the patch applied?

Yes, we ran it multiple times and it looks like there is a 
very minor increase with the patch.


From: bhe@redhat.com <bhe@redhat.com>
Sent: 20 October 2020 8:48 PM
To: Rahul Gopakumar <gopakumarr@vmware.com>
Cc: linux-mm@kvack.org <linux-mm@kvack.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; akpm@linux-foundation.org <akpm@linux-foundation.org>; natechancellor@gmail.com <natechancellor@gmail.com>; ndesaulniers@google.com <ndesaulniers@google.com>; clang-built-linux@googlegroups.com <clang-built-linux@googlegroups.com>; rostedt@goodmis.org <rostedt@goodmis.org>; Rajender M <manir@vmware.com>; Yiu Cho Lau <lauyiuch@vmware.com>; Peter Jonasson <pjonasson@vmware.com>; Venkatesh Rajaram <rajaramv@vmware.com>
Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel 
 
On 10/20/20 at 01:45pm, Rahul Gopakumar wrote:
> Hi Baoquan,
> 
> We had some trouble applying the patch to problem commit and the latest upstream commit. Steven (CC'ed) helped us by providing the updated draft patch. We applied it on the latest commit (3e4fb4346c781068610d03c12b16c0cfb0fd24a3), and it doesn't look like improving the performance numbers.

Thanks for your feedback. From the code, I am sure what the problem is,
but I didn't test it on system with huge memory. Forget mentioning my
draft patch is based on akpm/master branch since it's a mm issue, it
might be a little different with linus's mainline kernel, sorry for the
inconvenience.

I will test and debug this on a server with 4T memory in our lab, and
update if any progress.

> 
> Patch on latest commit - 20.161 secs
> Vanilla latest commit - 19.50 secs

Here, do you mean it even cost more time with the patch applied?

> 
> Here is the draft patch we tried
> 
> ------------------------
> 
> diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c
> index 8e7b8c6c576e..ff5fa4c3889e 100644
> --- a/arch/ia64/mm/init.c
> +++ b/arch/ia64/mm/init.c
> @@ -537,7 +537,7 @@ virtual_memmap_init(u64 start, u64 end, void *arg)
>  
>          if (map_start < map_end)
>                  memmap_init_zone((unsigned long)(map_end - map_start),
> -                                args->nid, args->zone, page_to_pfn(map_start),
> +                                args->nid, args->zone, page_to_pfn(map_start), page_to_pfn(map_end),
>                                   MEMINIT_EARLY, NULL);
>          return 0;
>  }
> @@ -547,7 +547,7 @@ memmap_init (unsigned long size, int nid, unsigned long zone,
>               unsigned long start_pfn)
>  {
>          if (!vmem_map) {
> -               memmap_init_zone(size, nid, zone, start_pfn,
> +               memmap_init_zone(size, nid, zone, start_pfn, start_pfn + size,
>                                   MEMINIT_EARLY, NULL);
>          } else {
>                  struct page *start;
> diff --git a/include/linux/mm.h b/include/linux/mm.h
> index 16b799a0522c..65e34b370e33 100644
> --- a/include/linux/mm.h
> +++ b/include/linux/mm.h
> @@ -2416,7 +2416,7 @@ extern int __meminit __early_pfn_to_nid(unsigned long pfn,
>  
>  extern void set_dma_reserve(unsigned long new_dma_reserve);
>  extern void memmap_init_zone(unsigned long, int, unsigned long, unsigned long,
> -               enum meminit_context, struct vmem_altmap *);
> +               unsigned long, enum meminit_context, struct vmem_altmap *);
>  extern void setup_per_zone_wmarks(void);
>  extern int __meminit init_per_zone_wmark_min(void);
>  extern void mem_init(void);
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index ce3e73e3a5c1..03fddd8f4b11 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -728,7 +728,7 @@ void __ref move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
>           * expects the zone spans the pfn range. All the pages in the range
>           * are reserved so nobody should be touching them so we should be safe
>           */
> -       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn,
> +       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn, 0,
>                           MEMINIT_HOTPLUG, altmap);
>  
>          set_zone_contiguous(zone);
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 780c8f023b28..fe80055ea59c 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -5989,8 +5989,8 @@ overlap_memmap_init(unsigned long zone, unsigned long *pfn)
>   * done. Non-atomic initialization, single-pass.
>   */
>  void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
> -               unsigned long start_pfn, enum meminit_context context,
> -               struct vmem_altmap *altmap)
> +               unsigned long start_pfn, unsigned long zone_end_pfn,
> +               enum meminit_context context, struct vmem_altmap *altmap)
>  {
>          unsigned long pfn, end_pfn = start_pfn + size;
>          struct page *page;
> @@ -6024,7 +6024,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
>                  if (context == MEMINIT_EARLY) {
>                          if (overlap_memmap_init(zone, &pfn))
>                                  continue;
> -                       if (defer_init(nid, pfn, end_pfn))
> +                       if (defer_init(nid, pfn, zone_end_pfn))
>                                  break;
>                  }
>  
> @@ -6150,7 +6150,7 @@ void __meminit __weak memmap_init(unsigned long size, int nid,
>  
>                  if (end_pfn > start_pfn) {
>                          size = end_pfn - start_pfn;
> -                       memmap_init_zone(size, nid, zone, start_pfn,
> +                       memmap_init_zone(size, nid, zone, start_pfn, range_end_pfn,
>                                           MEMINIT_EARLY, NULL);
>                  }
>          }
> 
> 
> ------------------------
> 
> We have attached default dmesg logs and also dmesg logs collected with memblock=debug kernel cmdline for both vanilla and patched kernels. Let me know if you need more info.
> 
> 
> 
> From: bhe@redhat.com <bhe@redhat.com>
> Sent: 13 October 2020 6:47 PM
> To: Rahul Gopakumar <gopakumarr@vmware.com>
> Cc: linux-mm@kvack.org <linux-mm@kvack.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; akpm@linux-foundation.org <akpm@linux-foundation.org>; natechancellor@gmail.com <natechancellor@gmail.com>; ndesaulniers@google.com <ndesaulniers@google.com>; clang-built-linux@googlegroups.com <clang-built-linux@googlegroups.com>; rostedt@goodmis.org <rostedt@goodmis.org>; Rajender M <manir@vmware.com>; Yiu Cho Lau <lauyiuch@vmware.com>; Peter Jonasson <pjonasson@vmware.com>; Venkatesh Rajaram <rajaramv@vmware.com>
> Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel 
>  
> Hi Rahul,
> 
> On 10/12/20 at 05:21pm, Rahul Gopakumar wrote:
> > Hi Baoquan,
> > 
> > Attached collected dmesg logs for with and without
> > commit after adding memblock=debug to kernel cmdline.
> 
> Can you test below draft patch and see if it works for you? 
> 
> From a2ea6caef3c73ad9efb2dd2b48039065fe430bb2 Mon Sep 17 00:00:00 2001
> From: Baoquan He <bhe@redhat.com>
> Date: Tue, 13 Oct 2020 20:05:30 +0800
> Subject: [PATCH] mm: make memmap defer init only take effect per zone
> 
> Deferred struct page init is designed to work per zone. However since
> commit 73a6e474cb376 ("mm: memmap_init: iterate over memblock regions
> rather that check each PFN"), the handling is mistakenly done in all memory
> ranges inside one zone. Especially in those unmovable zones of multiple nodes,
> memblock reservation split them into many memory ranges. This makes
> initialized struct page more than expected in early stage, then increases
> much boot time.
> 
> Let's fix it to make the memmap defer init handled in zone wide, but not in
> memory range of one zone.
> 
> Signed-off-by: Baoquan He <bhe@redhat.com>
> ---
>  arch/ia64/mm/init.c | 4 ++--
>  include/linux/mm.h  | 5 +++--
>  mm/memory_hotplug.c | 2 +-
>  mm/page_alloc.c     | 6 +++---
>  4 files changed, 9 insertions(+), 8 deletions(-)
> 
> diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c
> index ef12e097f318..27ca549ff47e 100644
> --- a/arch/ia64/mm/init.c
> +++ b/arch/ia64/mm/init.c
> @@ -536,7 +536,7 @@ virtual_memmap_init(u64 start, u64 end, void *arg)
>  
>          if (map_start < map_end)
>                  memmap_init_zone((unsigned long)(map_end - map_start),
> -                                args->nid, args->zone, page_to_pfn(map_start),
> +                                args->nid, args->zone, page_to_pfn(map_start), page_to_pfn(map_end),
>                                   MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
>          return 0;
>  }
> @@ -546,7 +546,7 @@ memmap_init (unsigned long size, int nid, unsigned long zone,
>               unsigned long start_pfn)
>  {
>          if (!vmem_map) {
> -               memmap_init_zone(size, nid, zone, start_pfn,
> +               memmap_init_zone(size, nid, zone, start_pfn, start_pfn + size,
>                                   MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
>          } else {
>                  struct page *start;
> diff --git a/include/linux/mm.h b/include/linux/mm.h
> index ef360fe70aaf..5f9fc61d5be2 100644
> --- a/include/linux/mm.h
> +++ b/include/linux/mm.h
> @@ -2439,8 +2439,9 @@ extern int __meminit __early_pfn_to_nid(unsigned long pfn,
>  #endif
>  
>  extern void set_dma_reserve(unsigned long new_dma_reserve);
> -extern void memmap_init_zone(unsigned long, int, unsigned long, unsigned long,
> -               enum meminit_context, struct vmem_altmap *, int migratetype);
> +extern void memmap_init_zone(unsigned long, int, unsigned long,
> +               unsigned long, unsigned long, enum meminit_context,
> +               struct vmem_altmap *, int migratetype);
>  extern void setup_per_zone_wmarks(void);
>  extern int __meminit init_per_zone_wmark_min(void);
>  extern void mem_init(void);
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index b44d4c7ba73b..f9a37e6abc1c 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -732,7 +732,7 @@ void __ref move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
>           * expects the zone spans the pfn range. All the pages in the range
>           * are reserved so nobody should be touching them so we should be safe
>           */
> -       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn,
> +       memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn, 0,
>                           MEMINIT_HOTPLUG, altmap, migratetype);
>  
>          set_zone_contiguous(zone);
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 2ebf9ddafa3a..e8b19fdd18ec 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -6044,7 +6044,7 @@ overlap_memmap_init(unsigned long zone, unsigned long *pfn)
>   * zone stats (e.g., nr_isolate_pageblock) are touched.
>   */
>  void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
> -               unsigned long start_pfn,
> +               unsigned long start_pfn, unsigned long zone_end_pfn,
>                  enum meminit_context context,
>                  struct vmem_altmap *altmap, int migratetype)
>  {
> @@ -6080,7 +6080,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
>                  if (context == MEMINIT_EARLY) {
>                          if (overlap_memmap_init(zone, &pfn))
>                                  continue;
> -                       if (defer_init(nid, pfn, end_pfn))
> +                       if (defer_init(nid, pfn, zone_end_pfn))
>                                  break;
>                  }
>  
> @@ -6194,7 +6194,7 @@ void __meminit __weak memmap_init(unsigned long size, int nid,
>  
>                  if (end_pfn > start_pfn) {
>                          size = end_pfn - start_pfn;
> -                       memmap_init_zone(size, nid, zone, start_pfn,
> +                       memmap_init_zone(size, nid, zone, start_pfn, range_end_pfn,
>                                           MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
>                  }
>          }
> -- 
> 2.17.2





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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-10-20 15:26           ` Rahul Gopakumar
@ 2020-10-22  4:04             ` bhe
  2020-10-22 17:21               ` Rahul Gopakumar
  0 siblings, 1 reply; 21+ messages in thread
From: bhe @ 2020-10-22  4:04 UTC (permalink / raw)
  To: Rahul Gopakumar
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

Hi Rahul,

On 10/20/20 at 03:26pm, Rahul Gopakumar wrote:
> >> Here, do you mean it even cost more time with the patch applied?
> 
> Yes, we ran it multiple times and it looks like there is a 
> very minor increase with the patch.
> 
...... 
> On 10/20/20 at 01:45pm, Rahul Gopakumar wrote:
> > Hi Baoquan,
> > 
> > We had some trouble applying the patch to problem commit and the latest upstream commit. Steven (CC'ed) helped us by providing the updated draft patch. We applied it on the latest commit (3e4fb4346c781068610d03c12b16c0cfb0fd24a3), and it doesn't look like improving the performance numbers.
> 
> Thanks for your feedback. From the code, I am sure what the problem is,
> but I didn't test it on system with huge memory. Forget mentioning my
> draft patch is based on akpm/master branch since it's a mm issue, it
> might be a little different with linus's mainline kernel, sorry for the
> inconvenience.
> 
> I will test and debug this on a server with 4T memory in our lab, and
> update if any progress.
> 
> > 
> > Patch on latest commit - 20.161 secs
> > Vanilla latest commit - 19.50 secs
> 

Can you tell how you measure the boot time? I checked the boot logs you
attached, E.g in below two logs, I saw patch_dmesg.log even has less
time during memmap init. Now I have got a machine with 1T memory for
testing, but didn't see obvious time cost increase. At above, you said
"Patch on latest commit - 20.161 secs", could you tell where this 20.161
secs comes from, so that I can investigate and reproduce on my system?

patch_dmesg.log:
[    0.023126] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.023128] On node 1 totalpages: 89128960
[    0.023129]   Normal zone: 1392640 pages used for memmap
[    0.023130]   Normal zone: 89128960 pages, LIFO batch:63
[    0.023893] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.023895] On node 2 totalpages: 89391104
[    0.023896]   Normal zone: 1445888 pages used for memmap
[    0.023897]   Normal zone: 89391104 pages, LIFO batch:63
[    0.026744] ACPI: PM-Timer IO Port: 0x448
[    0.026747] ACPI: Local APIC address 0xfee00000

vanilla_dmesg.log:
[    0.024295] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.024298] On node 1 totalpages: 89128960
[    0.024299]   Normal zone: 1392640 pages used for memmap
[    0.024299]   Normal zone: 89128960 pages, LIFO batch:63
[    0.025289] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.025291] On node 2 totalpages: 89391104
[    0.025292]   Normal zone: 1445888 pages used for memmap
[    0.025293]   Normal zone: 89391104 pages, LIFO batch:63
[    2.096982] ACPI: PM-Timer IO Port: 0x448
[    2.096987] ACPI: Local APIC address 0xfee00000


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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-10-22  4:04             ` bhe
@ 2020-10-22 17:21               ` Rahul Gopakumar
  2020-11-02 14:15                 ` Rahul Gopakumar
  0 siblings, 1 reply; 21+ messages in thread
From: Rahul Gopakumar @ 2020-10-22 17:21 UTC (permalink / raw)
  To: bhe
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

Hi Baoquan,

>> Can you tell how you measure the boot time? 

Our test is actually boothalt, time reported by this test
includes both boot-up and shutdown time.

>> At above, you said "Patch on latest commit - 20.161 secs",
>> could you tell where this 20.161 secs comes from,

So this time is boot-up time + shutdown time.

From the dmesg.log it looks like during the memmap_init
it's taking less time in the patch. Let me take a closer look to
confirm this and also to find where the 1-sec delay in the patch
run is coming from.


From: bhe@redhat.com <bhe@redhat.com>
Sent: 22 October 2020 9:34 AM
To: Rahul Gopakumar <gopakumarr@vmware.com>
Cc: linux-mm@kvack.org <linux-mm@kvack.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; akpm@linux-foundation.org <akpm@linux-foundation.org>; natechancellor@gmail.com <natechancellor@gmail.com>; ndesaulniers@google.com <ndesaulniers@google.com>; clang-built-linux@googlegroups.com <clang-built-linux@googlegroups.com>; rostedt@goodmis.org <rostedt@goodmis.org>; Rajender M <manir@vmware.com>; Yiu Cho Lau <lauyiuch@vmware.com>; Peter Jonasson <pjonasson@vmware.com>; Venkatesh Rajaram <rajaramv@vmware.com>
Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel 
 
Hi Rahul,

On 10/20/20 at 03:26pm, Rahul Gopakumar wrote:
> >> Here, do you mean it even cost more time with the patch applied?
> 
> Yes, we ran it multiple times and it looks like there is a 
> very minor increase with the patch.
> 
...... 
> On 10/20/20 at 01:45pm, Rahul Gopakumar wrote:
> > Hi Baoquan,
> > 
> > We had some trouble applying the patch to problem commit and the latest upstream commit. Steven (CC'ed) helped us by providing the updated draft patch. We applied it on the latest commit (3e4fb4346c781068610d03c12b16c0cfb0fd24a3), and it doesn't look like improving the performance numbers.
> 
> Thanks for your feedback. From the code, I am sure what the problem is,
> but I didn't test it on system with huge memory. Forget mentioning my
> draft patch is based on akpm/master branch since it's a mm issue, it
> might be a little different with linus's mainline kernel, sorry for the
> inconvenience.
> 
> I will test and debug this on a server with 4T memory in our lab, and
> update if any progress.
> 
> > 
> > Patch on latest commit - 20.161 secs
> > Vanilla latest commit - 19.50 secs
> 

Can you tell how you measure the boot time? I checked the boot logs you
attached, E.g in below two logs, I saw patch_dmesg.log even has less
time during memmap init. Now I have got a machine with 1T memory for
testing, but didn't see obvious time cost increase. At above, you said
"Patch on latest commit - 20.161 secs", could you tell where this 20.161
secs comes from, so that I can investigate and reproduce on my system?

patch_dmesg.log:
[    0.023126] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.023128] On node 1 totalpages: 89128960
[    0.023129]   Normal zone: 1392640 pages used for memmap
[    0.023130]   Normal zone: 89128960 pages, LIFO batch:63
[    0.023893] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.023895] On node 2 totalpages: 89391104
[    0.023896]   Normal zone: 1445888 pages used for memmap
[    0.023897]   Normal zone: 89391104 pages, LIFO batch:63
[    0.026744] ACPI: PM-Timer IO Port: 0x448
[    0.026747] ACPI: Local APIC address 0xfee00000

vanilla_dmesg.log:
[    0.024295] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.024298] On node 1 totalpages: 89128960
[    0.024299]   Normal zone: 1392640 pages used for memmap
[    0.024299]   Normal zone: 89128960 pages, LIFO batch:63
[    0.025289] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.025291] On node 2 totalpages: 89391104
[    0.025292]   Normal zone: 1445888 pages used for memmap
[    0.025293]   Normal zone: 89391104 pages, LIFO batch:63
[    2.096982] ACPI: PM-Timer IO Port: 0x448
[    2.096987] ACPI: Local APIC address 0xfee00000

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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-10-22 17:21               ` Rahul Gopakumar
@ 2020-11-02 14:15                 ` Rahul Gopakumar
  2020-11-02 14:30                   ` bhe
  0 siblings, 1 reply; 21+ messages in thread
From: Rahul Gopakumar @ 2020-11-02 14:15 UTC (permalink / raw)
  To: bhe
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

Hi Baoquan,

There could still be some memory initialization problem with
the draft patch. I see a lot of page corruption errors.

BUG: Bad page state in process swapper  pfn:ab0803c

Here is the call trace

[    0.262826]  dump_stack+0x57/0x6a
[    0.262827]  bad_page.cold.119+0x63/0x93
[    0.262828]  __free_pages_ok+0x31f/0x330
[    0.262829]  memblock_free_all+0x153/0x1bf
[    0.262830]  mem_init+0x23/0x1f2
[    0.262831]  start_kernel+0x299/0x57a
[    0.262832]  secondary_startup_64_no_verify+0xb8/0xbb

I don't see this in dmesg log with vanilla kernel.

It looks like the overhead due to this initialization problem
is around 3 secs.

[    0.262831]  start_kernel+0x299/0x57a
[    0.262832]  secondary_startup_64_no_verify+0xb8/0xbb
[    3.758185] Memory: 3374072K/1073740756K available (12297K kernel code, 5778Krwdata, 4376K rodata, 2352K init, 6480K bss, 16999716K reserved, 0K cma-reserved)

But the draft patch is fixing the initial problem
reported around 2 secs (log snippet below) hence the total
delay of 1 sec.

[    0.024752]   Normal zone: 1445888 pages used for memmap
[    0.024753]   Normal zone: 89391104 pages, LIFO batch:63
[    0.027379] ACPI: PM-Timer IO Port: 0x448


________________________________________
From: Rahul Gopakumar <gopakumarr@vmware.com>
Sent: 22 October 2020 10:51 PM
To: bhe@redhat.com
Cc: linux-mm@kvack.org; linux-kernel@vger.kernel.org; akpm@linux-foundation.org; natechancellor@gmail.com; ndesaulniers@google.com; clang-built-linux@googlegroups.com; rostedt@goodmis.org; Rajender M; Yiu Cho Lau; Peter Jonasson; Venkatesh Rajaram
Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel

Hi Baoquan,

>> Can you tell how you measure the boot time?

Our test is actually boothalt, time reported by this test
includes both boot-up and shutdown time.

>> At above, you said "Patch on latest commit - 20.161 secs",
>> could you tell where this 20.161 secs comes from,

So this time is boot-up time + shutdown time.

From the dmesg.log it looks like during the memmap_init
it's taking less time in the patch. Let me take a closer look to
confirm this and also to find where the 1-sec delay in the patch
run is coming from.


From: bhe@redhat.com <bhe@redhat.com>
Sent: 22 October 2020 9:34 AM
To: Rahul Gopakumar <gopakumarr@vmware.com>
Cc: linux-mm@kvack.org <linux-mm@kvack.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; akpm@linux-foundation.org <akpm@linux-foundation.org>; natechancellor@gmail.com <natechancellor@gmail.com>; ndesaulniers@google.com <ndesaulniers@google.com>; clang-built-linux@googlegroups.com <clang-built-linux@googlegroups.com>; rostedt@goodmis.org <rostedt@goodmis.org>; Rajender M <manir@vmware.com>; Yiu Cho Lau <lauyiuch@vmware.com>; Peter Jonasson <pjonasson@vmware.com>; Venkatesh Rajaram <rajaramv@vmware.com>
Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel

Hi Rahul,

On 10/20/20 at 03:26pm, Rahul Gopakumar wrote:
> >> Here, do you mean it even cost more time with the patch applied?
>
> Yes, we ran it multiple times and it looks like there is a
> very minor increase with the patch.
>
......
> On 10/20/20 at 01:45pm, Rahul Gopakumar wrote:
> > Hi Baoquan,
> >
> > We had some trouble applying the patch to problem commit and the latest upstream commit. Steven (CC'ed) helped us by providing the updated draft patch. We applied it on the latest commit (3e4fb4346c781068610d03c12b16c0cfb0fd24a3), and it doesn't look like improving the performance numbers.
>
> Thanks for your feedback. From the code, I am sure what the problem is,
> but I didn't test it on system with huge memory. Forget mentioning my
> draft patch is based on akpm/master branch since it's a mm issue, it
> might be a little different with linus's mainline kernel, sorry for the
> inconvenience.
>
> I will test and debug this on a server with 4T memory in our lab, and
> update if any progress.
>
> >
> > Patch on latest commit - 20.161 secs
> > Vanilla latest commit - 19.50 secs
>

Can you tell how you measure the boot time? I checked the boot logs you
attached, E.g in below two logs, I saw patch_dmesg.log even has less
time during memmap init. Now I have got a machine with 1T memory for
testing, but didn't see obvious time cost increase. At above, you said
"Patch on latest commit - 20.161 secs", could you tell where this 20.161
secs comes from, so that I can investigate and reproduce on my system?

patch_dmesg.log:
[    0.023126] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.023128] On node 1 totalpages: 89128960
[    0.023129]   Normal zone: 1392640 pages used for memmap
[    0.023130]   Normal zone: 89128960 pages, LIFO batch:63
[    0.023893] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.023895] On node 2 totalpages: 89391104
[    0.023896]   Normal zone: 1445888 pages used for memmap
[    0.023897]   Normal zone: 89391104 pages, LIFO batch:63
[    0.026744] ACPI: PM-Timer IO Port: 0x448
[    0.026747] ACPI: Local APIC address 0xfee00000

vanilla_dmesg.log:
[    0.024295] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.024298] On node 1 totalpages: 89128960
[    0.024299]   Normal zone: 1392640 pages used for memmap
[    0.024299]   Normal zone: 89128960 pages, LIFO batch:63
[    0.025289] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.025291] On node 2 totalpages: 89391104
[    0.025292]   Normal zone: 1445888 pages used for memmap
[    0.025293]   Normal zone: 89391104 pages, LIFO batch:63
[    2.096982] ACPI: PM-Timer IO Port: 0x448
[    2.096987] ACPI: Local APIC address 0xfee00000

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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-11-02 14:15                 ` Rahul Gopakumar
@ 2020-11-02 14:30                   ` bhe
  2020-11-03 12:34                     ` Rahul Gopakumar
  0 siblings, 1 reply; 21+ messages in thread
From: bhe @ 2020-11-02 14:30 UTC (permalink / raw)
  To: Rahul Gopakumar
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

On 11/02/20 at 02:15pm, Rahul Gopakumar wrote:
> Hi Baoquan,
> 
> There could still be some memory initialization problem with
> the draft patch. I see a lot of page corruption errors.
> 
> BUG: Bad page state in process swapper  pfn:ab0803c
> 
> Here is the call trace
> 
> [    0.262826]  dump_stack+0x57/0x6a
> [    0.262827]  bad_page.cold.119+0x63/0x93
> [    0.262828]  __free_pages_ok+0x31f/0x330
> [    0.262829]  memblock_free_all+0x153/0x1bf
> [    0.262830]  mem_init+0x23/0x1f2
> [    0.262831]  start_kernel+0x299/0x57a
> [    0.262832]  secondary_startup_64_no_verify+0xb8/0xbb
> 
> I don't see this in dmesg log with vanilla kernel.
> 
> It looks like the overhead due to this initialization problem
> is around 3 secs.
> 
> [    0.262831]  start_kernel+0x299/0x57a
> [    0.262832]  secondary_startup_64_no_verify+0xb8/0xbb
> [    3.758185] Memory: 3374072K/1073740756K available (12297K kernel code, 5778Krwdata, 4376K rodata, 2352K init, 6480K bss, 16999716K reserved, 0K cma-reserved)
> 
> But the draft patch is fixing the initial problem
> reported around 2 secs (log snippet below) hence the total
> delay of 1 sec.
> 
> [    0.024752]   Normal zone: 1445888 pages used for memmap
> [    0.024753]   Normal zone: 89391104 pages, LIFO batch:63
> [    0.027379] ACPI: PM-Timer IO Port: 0x448

So, you mean with the draft patch applied, the initial performance
regression goes away, just many page corruption errors with call trace
are seen, right? And the performance regression is about 2sec delay in
your system?

Could you tell how you setup vmware VM so that I can ask our QA for
help to create a vmware VM for me to test? I tested the draft patch on
bare metal system with more than 1T memory, didn't see the page
corruption call trace, need reproduce and have a look.

> 
> 
> ________________________________________
> From: Rahul Gopakumar <gopakumarr@vmware.com>
> Sent: 22 October 2020 10:51 PM
> To: bhe@redhat.com
> Cc: linux-mm@kvack.org; linux-kernel@vger.kernel.org; akpm@linux-foundation.org; natechancellor@gmail.com; ndesaulniers@google.com; clang-built-linux@googlegroups.com; rostedt@goodmis.org; Rajender M; Yiu Cho Lau; Peter Jonasson; Venkatesh Rajaram
> Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
> 
> Hi Baoquan,
> 
> >> Can you tell how you measure the boot time?
> 
> Our test is actually boothalt, time reported by this test
> includes both boot-up and shutdown time.
> 
> >> At above, you said "Patch on latest commit - 20.161 secs",
> >> could you tell where this 20.161 secs comes from,
> 
> So this time is boot-up time + shutdown time.
> 
> From the dmesg.log it looks like during the memmap_init
> it's taking less time in the patch. Let me take a closer look to
> confirm this and also to find where the 1-sec delay in the patch
> run is coming from.
> 
> 
> From: bhe@redhat.com <bhe@redhat.com>
> Sent: 22 October 2020 9:34 AM
> To: Rahul Gopakumar <gopakumarr@vmware.com>
> Cc: linux-mm@kvack.org <linux-mm@kvack.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; akpm@linux-foundation.org <akpm@linux-foundation.org>; natechancellor@gmail.com <natechancellor@gmail.com>; ndesaulniers@google.com <ndesaulniers@google.com>; clang-built-linux@googlegroups.com <clang-built-linux@googlegroups.com>; rostedt@goodmis.org <rostedt@goodmis.org>; Rajender M <manir@vmware.com>; Yiu Cho Lau <lauyiuch@vmware.com>; Peter Jonasson <pjonasson@vmware.com>; Venkatesh Rajaram <rajaramv@vmware.com>
> Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
> 
> Hi Rahul,
> 
> On 10/20/20 at 03:26pm, Rahul Gopakumar wrote:
> > >> Here, do you mean it even cost more time with the patch applied?
> >
> > Yes, we ran it multiple times and it looks like there is a
> > very minor increase with the patch.
> >
> ......
> > On 10/20/20 at 01:45pm, Rahul Gopakumar wrote:
> > > Hi Baoquan,
> > >
> > > We had some trouble applying the patch to problem commit and the latest upstream commit. Steven (CC'ed) helped us by providing the updated draft patch. We applied it on the latest commit (3e4fb4346c781068610d03c12b16c0cfb0fd24a3), and it doesn't look like improving the performance numbers.
> >
> > Thanks for your feedback. From the code, I am sure what the problem is,
> > but I didn't test it on system with huge memory. Forget mentioning my
> > draft patch is based on akpm/master branch since it's a mm issue, it
> > might be a little different with linus's mainline kernel, sorry for the
> > inconvenience.
> >
> > I will test and debug this on a server with 4T memory in our lab, and
> > update if any progress.
> >
> > >
> > > Patch on latest commit - 20.161 secs
> > > Vanilla latest commit - 19.50 secs
> >
> 
> Can you tell how you measure the boot time? I checked the boot logs you
> attached, E.g in below two logs, I saw patch_dmesg.log even has less
> time during memmap init. Now I have got a machine with 1T memory for
> testing, but didn't see obvious time cost increase. At above, you said
> "Patch on latest commit - 20.161 secs", could you tell where this 20.161
> secs comes from, so that I can investigate and reproduce on my system?
> 
> patch_dmesg.log:
> [    0.023126] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
> [    0.023128] On node 1 totalpages: 89128960
> [    0.023129]   Normal zone: 1392640 pages used for memmap
> [    0.023130]   Normal zone: 89128960 pages, LIFO batch:63
> [    0.023893] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
> [    0.023895] On node 2 totalpages: 89391104
> [    0.023896]   Normal zone: 1445888 pages used for memmap
> [    0.023897]   Normal zone: 89391104 pages, LIFO batch:63
> [    0.026744] ACPI: PM-Timer IO Port: 0x448
> [    0.026747] ACPI: Local APIC address 0xfee00000
> 
> vanilla_dmesg.log:
> [    0.024295] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
> [    0.024298] On node 1 totalpages: 89128960
> [    0.024299]   Normal zone: 1392640 pages used for memmap
> [    0.024299]   Normal zone: 89128960 pages, LIFO batch:63
> [    0.025289] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
> [    0.025291] On node 2 totalpages: 89391104
> [    0.025292]   Normal zone: 1445888 pages used for memmap
> [    0.025293]   Normal zone: 89391104 pages, LIFO batch:63
> [    2.096982] ACPI: PM-Timer IO Port: 0x448
> [    2.096987] ACPI: Local APIC address 0xfee00000
> 


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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-11-02 14:30                   ` bhe
@ 2020-11-03 12:34                     ` Rahul Gopakumar
  2020-11-03 14:03                       ` bhe
  2020-11-12 14:51                       ` bhe
  0 siblings, 2 replies; 21+ messages in thread
From: Rahul Gopakumar @ 2020-11-03 12:34 UTC (permalink / raw)
  To: bhe
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

>> So, you mean with the draft patch applied, the initial performance
regression goes away, just many page corruption errors with call trace
are seen, right?

Yes, that's right.

>> And the performance regression is about 2sec delay in
your system?

The delay due to this new page corruption issue is about
3 secs.

Here is the summary

* Initial problem - 2 secs
* Draft patch - Fixes initial problem (recovers 2 secs) but
brings in new page corruption issue (3 secs)

>> Could you tell how you setup vmware VM so that I can ask our QA for
help to create a vmware VM for me to test?

* Use vSphere ESXi 6.7 or 7.0 GA.
* Create VM using vSphere Web Client and specify 1TB VM Memory.
* Install RHEL 8.1, that's the guest used in this test.

With draft patch, you should be able to reproduce the issue.
Let me know if you need more details.

________________________________________
From: bhe@redhat.com <bhe@redhat.com>
Sent: 02 November 2020 8:00 PM
To: Rahul Gopakumar
Cc: linux-mm@kvack.org; linux-kernel@vger.kernel.org; akpm@linux-foundation.org; natechancellor@gmail.com; ndesaulniers@google.com; clang-built-linux@googlegroups.com; rostedt@goodmis.org; Rajender M; Yiu Cho Lau; Peter Jonasson; Venkatesh Rajaram
Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel

On 11/02/20 at 02:15pm, Rahul Gopakumar wrote:
> Hi Baoquan,
>
> There could still be some memory initialization problem with
> the draft patch. I see a lot of page corruption errors.
>
> BUG: Bad page state in process swapper  pfn:ab0803c
>
> Here is the call trace
>
> [    0.262826]  dump_stack+0x57/0x6a
> [    0.262827]  bad_page.cold.119+0x63/0x93
> [    0.262828]  __free_pages_ok+0x31f/0x330
> [    0.262829]  memblock_free_all+0x153/0x1bf
> [    0.262830]  mem_init+0x23/0x1f2
> [    0.262831]  start_kernel+0x299/0x57a
> [    0.262832]  secondary_startup_64_no_verify+0xb8/0xbb
>
> I don't see this in dmesg log with vanilla kernel.
>
> It looks like the overhead due to this initialization problem
> is around 3 secs.
>
> [    0.262831]  start_kernel+0x299/0x57a
> [    0.262832]  secondary_startup_64_no_verify+0xb8/0xbb
> [    3.758185] Memory: 3374072K/1073740756K available (12297K kernel code, 5778Krwdata, 4376K rodata, 2352K init, 6480K bss, 16999716K reserved, 0K cma-reserved)
>
> But the draft patch is fixing the initial problem
> reported around 2 secs (log snippet below) hence the total
> delay of 1 sec.
>
> [    0.024752]   Normal zone: 1445888 pages used for memmap
> [    0.024753]   Normal zone: 89391104 pages, LIFO batch:63
> [    0.027379] ACPI: PM-Timer IO Port: 0x448

So, you mean with the draft patch applied, the initial performance
regression goes away, just many page corruption errors with call trace
are seen, right? And the performance regression is about 2sec delay in
your system?

Could you tell how you setup vmware VM so that I can ask our QA for
help to create a vmware VM for me to test? I tested the draft patch on
bare metal system with more than 1T memory, didn't see the page
corruption call trace, need reproduce and have a look.

>
>
> ________________________________________
> From: Rahul Gopakumar <gopakumarr@vmware.com>
> Sent: 22 October 2020 10:51 PM
> To: bhe@redhat.com
> Cc: linux-mm@kvack.org; linux-kernel@vger.kernel.org; akpm@linux-foundation.org; natechancellor@gmail.com; ndesaulniers@google.com; clang-built-linux@googlegroups.com; rostedt@goodmis.org; Rajender M; Yiu Cho Lau; Peter Jonasson; Venkatesh Rajaram
> Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
>
> Hi Baoquan,
>
> >> Can you tell how you measure the boot time?
>
> Our test is actually boothalt, time reported by this test
> includes both boot-up and shutdown time.
>
> >> At above, you said "Patch on latest commit - 20.161 secs",
> >> could you tell where this 20.161 secs comes from,
>
> So this time is boot-up time + shutdown time.
>
> From the dmesg.log it looks like during the memmap_init
> it's taking less time in the patch. Let me take a closer look to
> confirm this and also to find where the 1-sec delay in the patch
> run is coming from.
>
>
> From: bhe@redhat.com <bhe@redhat.com>
> Sent: 22 October 2020 9:34 AM
> To: Rahul Gopakumar <gopakumarr@vmware.com>
> Cc: linux-mm@kvack.org <linux-mm@kvack.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; akpm@linux-foundation.org <akpm@linux-foundation.org>; natechancellor@gmail.com <natechancellor@gmail.com>; ndesaulniers@google.com <ndesaulniers@google.com>; clang-built-linux@googlegroups.com <clang-built-linux@googlegroups.com>; rostedt@goodmis.org <rostedt@goodmis.org>; Rajender M <manir@vmware.com>; Yiu Cho Lau <lauyiuch@vmware.com>; Peter Jonasson <pjonasson@vmware.com>; Venkatesh Rajaram <rajaramv@vmware.com>
> Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
>
> Hi Rahul,
>
> On 10/20/20 at 03:26pm, Rahul Gopakumar wrote:
> > >> Here, do you mean it even cost more time with the patch applied?
> >
> > Yes, we ran it multiple times and it looks like there is a
> > very minor increase with the patch.
> >
> ......
> > On 10/20/20 at 01:45pm, Rahul Gopakumar wrote:
> > > Hi Baoquan,
> > >
> > > We had some trouble applying the patch to problem commit and the latest upstream commit. Steven (CC'ed) helped us by providing the updated draft patch. We applied it on the latest commit (3e4fb4346c781068610d03c12b16c0cfb0fd24a3), and it doesn't look like improving the performance numbers.
> >
> > Thanks for your feedback. From the code, I am sure what the problem is,
> > but I didn't test it on system with huge memory. Forget mentioning my
> > draft patch is based on akpm/master branch since it's a mm issue, it
> > might be a little different with linus's mainline kernel, sorry for the
> > inconvenience.
> >
> > I will test and debug this on a server with 4T memory in our lab, and
> > update if any progress.
> >
> > >
> > > Patch on latest commit - 20.161 secs
> > > Vanilla latest commit - 19.50 secs
> >
>
> Can you tell how you measure the boot time? I checked the boot logs you
> attached, E.g in below two logs, I saw patch_dmesg.log even has less
> time during memmap init. Now I have got a machine with 1T memory for
> testing, but didn't see obvious time cost increase. At above, you said
> "Patch on latest commit - 20.161 secs", could you tell where this 20.161
> secs comes from, so that I can investigate and reproduce on my system?
>
> patch_dmesg.log:
> [    0.023126] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
> [    0.023128] On node 1 totalpages: 89128960
> [    0.023129]   Normal zone: 1392640 pages used for memmap
> [    0.023130]   Normal zone: 89128960 pages, LIFO batch:63
> [    0.023893] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
> [    0.023895] On node 2 totalpages: 89391104
> [    0.023896]   Normal zone: 1445888 pages used for memmap
> [    0.023897]   Normal zone: 89391104 pages, LIFO batch:63
> [    0.026744] ACPI: PM-Timer IO Port: 0x448
> [    0.026747] ACPI: Local APIC address 0xfee00000
>
> vanilla_dmesg.log:
> [    0.024295] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
> [    0.024298] On node 1 totalpages: 89128960
> [    0.024299]   Normal zone: 1392640 pages used for memmap
> [    0.024299]   Normal zone: 89128960 pages, LIFO batch:63
> [    0.025289] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
> [    0.025291] On node 2 totalpages: 89391104
> [    0.025292]   Normal zone: 1445888 pages used for memmap
> [    0.025293]   Normal zone: 89391104 pages, LIFO batch:63
> [    2.096982] ACPI: PM-Timer IO Port: 0x448
> [    2.096987] ACPI: Local APIC address 0xfee00000
>


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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-11-03 12:34                     ` Rahul Gopakumar
@ 2020-11-03 14:03                       ` bhe
  2020-11-12 14:51                       ` bhe
  1 sibling, 0 replies; 21+ messages in thread
From: bhe @ 2020-11-03 14:03 UTC (permalink / raw)
  To: Rahul Gopakumar
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

On 11/03/20 at 12:34pm, Rahul Gopakumar wrote:
> >> So, you mean with the draft patch applied, the initial performance
> regression goes away, just many page corruption errors with call trace
> are seen, right?
> 
> Yes, that's right.
> 
> >> And the performance regression is about 2sec delay in
> your system?
> 
> The delay due to this new page corruption issue is about
> 3 secs.
> 
> Here is the summary
> 
> * Initial problem - 2 secs
> * Draft patch - Fixes initial problem (recovers 2 secs) but
> brings in new page corruption issue (3 secs)
> 
> >> Could you tell how you setup vmware VM so that I can ask our QA for
> help to create a vmware VM for me to test?
> 
> * Use vSphere ESXi 6.7 or 7.0 GA.
> * Create VM using vSphere Web Client and specify 1TB VM Memory.
> * Install RHEL 8.1, that's the guest used in this test.

OK, I see. The draft patch fix the original issue, seems some boundary
of memory region is not handled correctly. Thanks for confirmation.

The memory layout is important in this case. Not sure if making a VM gesut
as you suggested can also create a system with below memory layout.

[    0.008842] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.008842] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[    0.008843] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x55ffffffff]
[    0.008844] ACPI: SRAT: Node 1 PXM 1 [mem 0x5600000000-0xaaffffffff]
[    0.008844] ACPI: SRAT: Node 2 PXM 2 [mem 0xab00000000-0xfcffffffff]
[    0.008845] ACPI: SRAT: Node 2 PXM 2 [mem 0x10000000000-0x1033fffffff]


> 
> With draft patch, you should be able to reproduce the issue.
> Let me know if you need more details.


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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-11-03 12:34                     ` Rahul Gopakumar
  2020-11-03 14:03                       ` bhe
@ 2020-11-12 14:51                       ` bhe
  2020-11-20  3:11                         ` Rahul Gopakumar
  1 sibling, 1 reply; 21+ messages in thread
From: bhe @ 2020-11-12 14:51 UTC (permalink / raw)
  To: Rahul Gopakumar
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

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

On 11/03/20 at 12:34pm, Rahul Gopakumar wrote:
> >> So, you mean with the draft patch applied, the initial performance
> regression goes away, just many page corruption errors with call trace
> are seen, right?
> 
> Yes, that's right.
> 
> >> And the performance regression is about 2sec delay in
> your system?
> 
> The delay due to this new page corruption issue is about
> 3 secs.
> 
> Here is the summary
> 
> * Initial problem - 2 secs
> * Draft patch - Fixes initial problem (recovers 2 secs) but
> brings in new page corruption issue (3 secs)
> 
> >> Could you tell how you setup vmware VM so that I can ask our QA for
> help to create a vmware VM for me to test?
> 
> * Use vSphere ESXi 6.7 or 7.0 GA.
> * Create VM using vSphere Web Client and specify 1TB VM Memory.
> * Install RHEL 8.1, that's the guest used in this test.

Can you try the attached draft patch?

> 
> With draft patch, you should be able to reproduce the issue.
> Let me know if you need more details.


[-- Attachment #2: 0001-mm-make-memmap-defer-init-only-take-effect-per-zone.patch --]
[-- Type: text/plain, Size: 4651 bytes --]

From 24d9b1fe55d79892cac3478711af216d898c7159 Mon Sep 17 00:00:00 2001
From: Baoquan He <bhe@redhat.com>
Date: Tue, 13 Oct 2020 20:05:30 +0800
Subject: [PATCH v2] mm: make memmap defer init only take effect per zone

Deferred struct page init is designed to work in zone wide. However since
commit 73a6e474cb376 ("mm: memmap_init: iterate over memblock regions
rather that check each PFN"), the handling is mistakenly done in all memory
ranges inside one zone. Especially in those unmovable zones of multiple nodes,
memblock allocation split them into many memory ranges. This makes initialized
struct page more than expected in early stage, then increases much boot time.

Let's fix it to make the memmap defer init handled in zone wide, but not in
sub memor range of one zone.

Signed-off-by: Baoquan He <bhe@redhat.com>
---
 arch/ia64/mm/init.c | 4 ++--
 include/linux/mm.h  | 5 +++--
 mm/memory_hotplug.c | 2 +-
 mm/page_alloc.c     | 8 +++++---
 4 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c
index ef12e097f318..27ca549ff47e 100644
--- a/arch/ia64/mm/init.c
+++ b/arch/ia64/mm/init.c
@@ -536,7 +536,7 @@ virtual_memmap_init(u64 start, u64 end, void *arg)
 
 	if (map_start < map_end)
 		memmap_init_zone((unsigned long)(map_end - map_start),
-				 args->nid, args->zone, page_to_pfn(map_start),
+				 args->nid, args->zone, page_to_pfn(map_start), page_to_pfn(map_end),
 				 MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
 	return 0;
 }
@@ -546,7 +546,7 @@ memmap_init (unsigned long size, int nid, unsigned long zone,
 	     unsigned long start_pfn)
 {
 	if (!vmem_map) {
-		memmap_init_zone(size, nid, zone, start_pfn,
+		memmap_init_zone(size, nid, zone, start_pfn, start_pfn + size,
 				 MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
 	} else {
 		struct page *start;
diff --git a/include/linux/mm.h b/include/linux/mm.h
index dae8e599f6c1..f82e73fd5d61 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -2439,8 +2439,9 @@ extern int __meminit __early_pfn_to_nid(unsigned long pfn,
 #endif
 
 extern void set_dma_reserve(unsigned long new_dma_reserve);
-extern void memmap_init_zone(unsigned long, int, unsigned long, unsigned long,
-		enum meminit_context, struct vmem_altmap *, int migratetype);
+extern void memmap_init_zone(unsigned long, int, unsigned long,
+		unsigned long, unsigned long, enum meminit_context,
+		struct vmem_altmap *, int migratetype);
 extern void setup_per_zone_wmarks(void);
 extern int __meminit init_per_zone_wmark_min(void);
 extern void mem_init(void);
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index b44d4c7ba73b..f9a37e6abc1c 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -732,7 +732,7 @@ void __ref move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
 	 * expects the zone spans the pfn range. All the pages in the range
 	 * are reserved so nobody should be touching them so we should be safe
 	 */
-	memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn,
+	memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn, 0,
 			 MEMINIT_HOTPLUG, altmap, migratetype);
 
 	set_zone_contiguous(zone);
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index fa6076e1a840..5e5b74e88d69 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -448,6 +448,8 @@ defer_init(int nid, unsigned long pfn, unsigned long end_pfn)
 	if (end_pfn < pgdat_end_pfn(NODE_DATA(nid)))
 		return false;
 
+	if (NODE_DATA(nid)->first_deferred_pfn != ULONG_MAX)
+		return true;
 	/*
 	 * We start only with one section of pages, more pages are added as
 	 * needed until the rest of deferred pages are initialized.
@@ -6044,7 +6046,7 @@ overlap_memmap_init(unsigned long zone, unsigned long *pfn)
  * zone stats (e.g., nr_isolate_pageblock) are touched.
  */
 void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
-		unsigned long start_pfn,
+		unsigned long start_pfn, unsigned long zone_end_pfn,
 		enum meminit_context context,
 		struct vmem_altmap *altmap, int migratetype)
 {
@@ -6080,7 +6082,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
 		if (context == MEMINIT_EARLY) {
 			if (overlap_memmap_init(zone, &pfn))
 				continue;
-			if (defer_init(nid, pfn, end_pfn))
+			if (defer_init(nid, pfn, zone_end_pfn))
 				break;
 		}
 
@@ -6194,7 +6196,7 @@ void __meminit __weak memmap_init(unsigned long size, int nid,
 
 		if (end_pfn > start_pfn) {
 			size = end_pfn - start_pfn;
-			memmap_init_zone(size, nid, zone, start_pfn,
+			memmap_init_zone(size, nid, zone, start_pfn, range_end_pfn,
 					 MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
 		}
 	}
-- 
2.17.2


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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-11-12 14:51                       ` bhe
@ 2020-11-20  3:11                         ` Rahul Gopakumar
  2020-11-22  1:08                           ` bhe
  0 siblings, 1 reply; 21+ messages in thread
From: Rahul Gopakumar @ 2020-11-20  3:11 UTC (permalink / raw)
  To: bhe
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

Hi Baoquan,

To which commit should we apply the draft patch. We tried applying
the patch to the commit 3e4fb4346c781068610d03c12b16c0cfb0fd24a3
(the one we used for applying the previous patch) but it fails.


From: bhe@redhat.com <bhe@redhat.com>
Sent: 12 November 2020 8:21 PM
To: Rahul Gopakumar <gopakumarr@vmware.com>
Cc: linux-mm@kvack.org <linux-mm@kvack.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; akpm@linux-foundation.org <akpm@linux-foundation.org>; natechancellor@gmail.com <natechancellor@gmail.com>; ndesaulniers@google.com <ndesaulniers@google.com>; clang-built-linux@googlegroups.com <clang-built-linux@googlegroups.com>; rostedt@goodmis.org <rostedt@goodmis.org>; Rajender M <manir@vmware.com>; Yiu Cho Lau <lauyiuch@vmware.com>; Peter Jonasson <pjonasson@vmware.com>; Venkatesh Rajaram <rajaramv@vmware.com>
Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel 
 
On 11/03/20 at 12:34pm, Rahul Gopakumar wrote:
> >> So, you mean with the draft patch applied, the initial performance
> regression goes away, just many page corruption errors with call trace
> are seen, right?
> 
> Yes, that's right.
> 
> >> And the performance regression is about 2sec delay in
> your system?
> 
> The delay due to this new page corruption issue is about
> 3 secs.
> 
> Here is the summary
> 
> * Initial problem - 2 secs
> * Draft patch - Fixes initial problem (recovers 2 secs) but
> brings in new page corruption issue (3 secs)
> 
> >> Could you tell how you setup vmware VM so that I can ask our QA for
> help to create a vmware VM for me to test?
> 
> * Use vSphere ESXi 6.7 or 7.0 GA.
> * Create VM using vSphere Web Client and specify 1TB VM Memory.
> * Install RHEL 8.1, that's the guest used in this test.

Can you try the attached draft patch?

> 
> With draft patch, you should be able to reproduce the issue.
> Let me know if you need more details.

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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-11-20  3:11                         ` Rahul Gopakumar
@ 2020-11-22  1:08                           ` bhe
  2020-11-24 15:03                             ` Rahul Gopakumar
  0 siblings, 1 reply; 21+ messages in thread
From: bhe @ 2020-11-22  1:08 UTC (permalink / raw)
  To: Rahul Gopakumar
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

On 11/20/20 at 03:11am, Rahul Gopakumar wrote:
> Hi Baoquan,
> 
> To which commit should we apply the draft patch. We tried applying
> the patch to the commit 3e4fb4346c781068610d03c12b16c0cfb0fd24a3
> (the one we used for applying the previous patch) but it fails.

I tested on 5.10-rc3+. You can append below change to the old patch in
your testing kernel.

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index fa6076e1a840..5e5b74e88d69 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -448,6 +448,8 @@ defer_init(int nid, unsigned long pfn, unsigned long end_pfn)
 	if (end_pfn < pgdat_end_pfn(NODE_DATA(nid)))
 		return false;
 
+	if (NODE_DATA(nid)->first_deferred_pfn != ULONG_MAX)
+		return true;
 	/*
 	 * We start only with one section of pages, more pages are added as
 	 * needed until the rest of deferred pages are initialized.


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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-11-22  1:08                           ` bhe
@ 2020-11-24 15:03                             ` Rahul Gopakumar
  2020-11-30 16:55                               ` Mike Rapoport
  2020-12-11 16:16                               ` Rahul Gopakumar
  0 siblings, 2 replies; 21+ messages in thread
From: Rahul Gopakumar @ 2020-11-24 15:03 UTC (permalink / raw)
  To: bhe
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

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

Hi Baoquan,

We applied the new patch to 5.10 rc3 and tested it. We are still
observing the same page corruption issue which we saw with the
old patch. This is causing 3 secs delay in boot time.

Attached dmesg log from the new patch and also from vanilla
5.10 rc3 kernel.

There are multiple lines like below in the dmesg log of the
new patch.

"BUG: Bad page state in process swapper  pfn:ab08001"

________________________________________
From: bhe@redhat.com <bhe@redhat.com>
Sent: 22 November 2020 6:38 AM
To: Rahul Gopakumar
Cc: linux-mm@kvack.org; linux-kernel@vger.kernel.org; akpm@linux-foundation.org; natechancellor@gmail.com; ndesaulniers@google.com; clang-built-linux@googlegroups.com; rostedt@goodmis.org; Rajender M; Yiu Cho Lau; Peter Jonasson; Venkatesh Rajaram
Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel

On 11/20/20 at 03:11am, Rahul Gopakumar wrote:
> Hi Baoquan,
>
> To which commit should we apply the draft patch. We tried applying
> the patch to the commit 3e4fb4346c781068610d03c12b16c0cfb0fd24a3
> (the one we used for applying the previous patch) but it fails.

I tested on 5.10-rc3+. You can append below change to the old patch in
your testing kernel.

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index fa6076e1a840..5e5b74e88d69 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -448,6 +448,8 @@ defer_init(int nid, unsigned long pfn, unsigned long end_pfn)
        if (end_pfn < pgdat_end_pfn(NODE_DATA(nid)))
                return false;

+       if (NODE_DATA(nid)->first_deferred_pfn != ULONG_MAX)
+               return true;
        /*
         * We start only with one section of pages, more pages are added as
         * needed until the rest of deferred pages are initialized.


[-- Attachment #2: new-patch-dmesg.log --]
[-- Type: application/octet-stream, Size: 201376 bytes --]

[    0.000000] Linux version 5.10.0-rc3 (root@w1-hs1-mwenig-dhcp-175.eng.vmware.com) (gcc (GCC) 8.3.1 20190507 (Red Hat 8.3.1-4), GNU ld version 2.30-58.el8) #1 SMP Tue Nov 24 01:33:05 EST 2020
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    0.000000] Disabled fast string operations
[    0.000000] ------------[ cut here ]------------
[    0.000000] XSAVE consistency problem, dumping leaves
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/fpu/xstate.c:657 fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.10.0-rc3 #1
[    0.000000] RIP: 0010:fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Code: 85 7c fd ff ff 44 3b 35 f1 55 22 00 74 2c 80 3d 6c 78 bc ff 00 75 15 48 c7 c7 a8 8c ce 98 c6 05 5c 78 bc ff 01 e8 e2 15 b9 fe <0f> 0b 83 3d 9a b9 68 ff 00 74 05 e8 40 d0 b8 fe 48 8b 35 0c b4 bf
[    0.000000] RSP: 0000:ffffffff99003e60 EFLAGS: 00010086 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: 0000000000000a88 RCX: 0000000000000000
[    0.000000] RDX: ffffffff99003c70 RSI: 00000000ffff7fff RDI: ffffffff99c2cecc
[    0.000000] RBP: 0000000000000010 R08: 0000000000000000 R09: c0000000ffff7fff
[    0.000000] R10: 0000000000000001 R11: ffffffff99003c68 R12: 0000000000000a88
[    0.000000] R13: 0000000000000008 R14: 0000000000000988 R15: 0000000000000001
[    0.000000] FS:  0000000000000000(0000) GS:ffffffff9995f000(0000) knlGS:0000000000000000
[    0.000000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: ffff88800e0b0000 CR3: 0000004971bf6000 CR4: 00000000000406a0
[    0.000000] Call Trace:
[    0.000000]  ? 0xffffffff97c00000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xc2/0xcb
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.10.0-rc3 #1
[    0.000000] Call Trace:
[    0.000000]  ? dump_stack+0x57/0x6a
[    0.000000]  ? __warn.cold.14+0xe/0x3d
[    0.000000]  ? fpu__init_system_xstate+0x415/0x8d3
[    0.000000]  ? report_bug+0xc0/0xf0
[    0.000000]  ? early_fixup_exception+0x59/0xa6
[    0.000000]  ? early_idt_handler_common+0x2f/0x3a
[    0.000000]  ? fpu__init_system_xstate+0x415/0x8d3
[    0.000000]  ? 0xffffffff97c00000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xc2/0xcb
[    0.000000] random: get_random_bytes called from print_oops_end_marker+0x26/0x40 with crng_init=0
[    0.000000] ---[ end trace 4a97d0a3c7e83b9c ]---
[    0.000000] CPUID[0d, 00]: eax=000002e7 ebx=00000a88 ecx=00000a88 edx=00000000
[    0.000000] CPUID[0d, 01]: eax=0000000f ebx=00000a88 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 02]: eax=00000100 ebx=00000240 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 03]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 04]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 05]: eax=00000040 ebx=00000440 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 06]: eax=00000200 ebx=00000480 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 07]: eax=00000400 ebx=00000680 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 08]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 09]: eax=00000008 ebx=00000a80 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0d]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0e]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0f]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 10]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 11]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 12]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 13]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 14]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 15]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 16]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 17]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 18]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 19]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2696 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000ef23fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000e0a1017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a1018-0x000000000e0a2857] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a2858-0x000000000e0a3017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a3018-0x000000000e0a5057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a5058-0x000000000e0a6017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a6018-0x000000000e0ae057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0ae058-0x000000000ef23fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] efi: EFI v2.31 by VMware, Inc.
[    0.000000] efi: SMBIOS=0xef42000 ACPI 2.0=0xff66000 MEMATTR=0xfda1018 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.000000] vmware: hypercall mode: 0x02
[    0.000000] Hypervisor detected: VMware
[    0.000000] vmware: TSC freq read from hypervisor : 2095.078 MHz
[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[    0.000000] vmware: using clock offset of 7142701565 ns
[    0.000011] tsc: Detected 2095.078 MHz processor
[    0.002037] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.002038] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.002043] last_pfn = 0x10340000 max_arch_pfn = 0x400000000
[    0.002075] MTRR default type: uncachable
[    0.002075] MTRR fixed ranges enabled:
[    0.002076]   00000-9FFFF write-back
[    0.002077]   A0000-FFFFF uncachable
[    0.002078] MTRR variable ranges enabled:
[    0.002079]   0 base 000000000000 mask 1E0000000000 write-back
[    0.002079]   1 base 0000C0000000 mask 1FFFC0000000 uncachable
[    0.002080]   2 disabled
[    0.002080]   3 disabled
[    0.002081]   4 disabled
[    0.002081]   5 disabled
[    0.002081]   6 disabled
[    0.002082]   7 disabled
[    0.002092] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002110] total RAM covered: 2096128M
[    0.002163]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002164]  gran_size: 64K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002165]  gran_size: 64K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002166]  gran_size: 64K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002167]  gran_size: 64K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002168]  gran_size: 64K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002169]  gran_size: 64K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002169]  gran_size: 64K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002170]  gran_size: 64K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002171]  gran_size: 64K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002172]  gran_size: 64K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002173]  gran_size: 64K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002173]  gran_size: 64K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002174]  gran_size: 64K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002175]  gran_size: 64K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002176]  gran_size: 64K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002177]  gran_size: 128K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002177]  gran_size: 128K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002178]  gran_size: 128K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002179]  gran_size: 128K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002180]  gran_size: 128K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002181]  gran_size: 128K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002181]  gran_size: 128K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002182]  gran_size: 128K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002183]  gran_size: 128K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002184]  gran_size: 128K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002185]  gran_size: 128K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002185]  gran_size: 128K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002186]  gran_size: 128K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002187]  gran_size: 128K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002188]  gran_size: 128K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002188]  gran_size: 256K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002189]  gran_size: 256K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002190]  gran_size: 256K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002191]  gran_size: 256K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002192]  gran_size: 256K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002192]  gran_size: 256K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002193]  gran_size: 256K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002194]  gran_size: 256K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002195]  gran_size: 256K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002196]  gran_size: 256K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002196]  gran_size: 256K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002197]  gran_size: 256K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002198]  gran_size: 256K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002199]  gran_size: 256K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002200]  gran_size: 512K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002200]  gran_size: 512K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002201]  gran_size: 512K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002202]  gran_size: 512K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002203]  gran_size: 512K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002204]  gran_size: 512K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002205]  gran_size: 512K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002206]  gran_size: 512K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002206]  gran_size: 512K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002207]  gran_size: 512K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002208]  gran_size: 512K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002209]  gran_size: 512K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002210]  gran_size: 512K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002210]  gran_size: 1M 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002211]  gran_size: 1M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002212]  gran_size: 1M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002213]  gran_size: 1M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002214]  gran_size: 1M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002214]  gran_size: 1M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002215]  gran_size: 1M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002216]  gran_size: 1M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002217]  gran_size: 1M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002218]  gran_size: 1M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002218]  gran_size: 1M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002219]  gran_size: 1M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002220]  gran_size: 2M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002221]  gran_size: 2M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002222]  gran_size: 2M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002222]  gran_size: 2M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002223]  gran_size: 2M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002224]  gran_size: 2M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002225]  gran_size: 2M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002225]  gran_size: 2M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002226]  gran_size: 2M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002227]  gran_size: 2M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002228]  gran_size: 2M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002229]  gran_size: 4M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002229]  gran_size: 4M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002230]  gran_size: 4M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002231]  gran_size: 4M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002232]  gran_size: 4M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002233]  gran_size: 4M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002233]  gran_size: 4M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002234]  gran_size: 4M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002235]  gran_size: 4M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002236]  gran_size: 4M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002237]  gran_size: 8M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002237]  gran_size: 8M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002238]  gran_size: 8M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002239]  gran_size: 8M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002240]  gran_size: 8M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002241]  gran_size: 8M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002241]  gran_size: 8M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002242]  gran_size: 8M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002243]  gran_size: 8M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002244]  gran_size: 16M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002245]  gran_size: 16M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002246]  gran_size: 16M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002246]  gran_size: 16M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002247]  gran_size: 16M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002248]  gran_size: 16M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002249]  gran_size: 16M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002250]  gran_size: 16M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002250]  gran_size: 32M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002251]  gran_size: 32M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002252]  gran_size: 32M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002253]  gran_size: 32M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002253]  gran_size: 32M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002254]  gran_size: 32M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002255]  gran_size: 32M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002256]  gran_size: 64M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002257]  gran_size: 64M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002257]  gran_size: 64M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002258]  gran_size: 64M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002259]  gran_size: 64M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002260]  gran_size: 64M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002261]  gran_size: 128M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002261]  gran_size: 128M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002262]  gran_size: 128M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002263]  gran_size: 128M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002264]  gran_size: 128M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002265]  gran_size: 256M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002265]  gran_size: 256M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002266]  gran_size: 256M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002267]  gran_size: 256M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002268]  gran_size: 512M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002269]  gran_size: 512M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002269]  gran_size: 512M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002270]  gran_size: 1G 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002271]  gran_size: 1G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002272]  gran_size: 2G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1537G
[    0.002272] mtrr_cleanup: can not find optimal value
[    0.002273] please specify mtrr_gran_size/mtrr_chunk_size
[    0.002283] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.002288] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
[    0.008213] kexec: Reserving the low 1M of memory for crashkernel
[    0.008234] Using GB pages for direct mapping
[    0.009185] Secure boot disabled
[    0.009186] RAMDISK: [mem 0x05df8000-0x0a985fff]
[    0.009197] ACPI: Early table checksum verification disabled
[    0.009199] ACPI: RSDP 0x000000000FF66000 000024 (v02 VMWARE)
[    0.009202] ACPI: XSDT 0x000000000FF66064 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.009206] ACPI: SRAT 0x000000000FF660C0 000660 (v03 VMWARE EFISRAT  06040001 VMW  000007CE)
[    0.009209] ACPI: FACP 0x000000000FF7252C 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.009213] ACPI: DSDT 0x000000000FF66720 00BE0C (v01 PTLTD  Custom   00000000 INTL 20130823)
[    0.009215] ACPI: FACS 0x000000000FF76000 000040
[    0.009217] ACPI: FACS 0x000000000FF76000 000040
[    0.009219] ACPI: APIC 0x000000000FF72694 0004DA (v03 VMWARE EFIAPIC  06040001 VMW  000007CE)
[    0.009221] ACPI: MCFG 0x000000000FF72B6E 00003C (v01 VMWARE EFIMCFG  06040001 VMW  000007CE)
[    0.009223] ACPI: HPET 0x000000000FF72BAA 000038 (v01 VMWARE VMW HPET 00000000 VMW  00000000)
[    0.009225] ACPI: WAET 0x000000000FF72BE2 000028 (v01 VMWARE VMW WAET 06040001 VMW  00000001)
[    0.009227] ACPI: WSMT 0x000000000FF72C0A 000028 (v01 VMWARE VMW WSMT 06040001 VMW  00000001)
[    0.009232] ACPI: Local APIC address 0xfee00000
[    0.009263] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.009264] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.009265] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.009266] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.009266] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.009267] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.009267] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.009268] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.009268] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.009269] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.009269] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.009270] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.009270] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.009271] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.009271] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.009272] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[    0.009272] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.009273] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.009273] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.009274] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.009274] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.009275] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.009275] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[    0.009275] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[    0.009276] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[    0.009276] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.009277] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.009277] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.009278] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.009278] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.009279] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[    0.009279] SRAT: PXM 1 -> APIC 0x3e -> Node 1
[    0.009280] SRAT: PXM 1 -> APIC 0x40 -> Node 1
[    0.009280] SRAT: PXM 1 -> APIC 0x42 -> Node 1
[    0.009281] SRAT: PXM 1 -> APIC 0x44 -> Node 1
[    0.009281] SRAT: PXM 1 -> APIC 0x46 -> Node 1
[    0.009282] SRAT: PXM 1 -> APIC 0x48 -> Node 1
[    0.009282] SRAT: PXM 1 -> APIC 0x4a -> Node 1
[    0.009283] SRAT: PXM 1 -> APIC 0x4c -> Node 1
[    0.009283] SRAT: PXM 1 -> APIC 0x4e -> Node 1
[    0.009284] SRAT: PXM 1 -> APIC 0x50 -> Node 1
[    0.009284] SRAT: PXM 1 -> APIC 0x52 -> Node 1
[    0.009284] SRAT: PXM 1 -> APIC 0x54 -> Node 1
[    0.009285] SRAT: PXM 1 -> APIC 0x56 -> Node 1
[    0.009285] SRAT: PXM 1 -> APIC 0x58 -> Node 1
[    0.009286] SRAT: PXM 1 -> APIC 0x5a -> Node 1
[    0.009286] SRAT: PXM 1 -> APIC 0x5c -> Node 1
[    0.009287] SRAT: PXM 1 -> APIC 0x5e -> Node 1
[    0.009287] SRAT: PXM 1 -> APIC 0x60 -> Node 1
[    0.009288] SRAT: PXM 1 -> APIC 0x62 -> Node 1
[    0.009288] SRAT: PXM 1 -> APIC 0x64 -> Node 1
[    0.009289] SRAT: PXM 1 -> APIC 0x66 -> Node 1
[    0.009289] SRAT: PXM 1 -> APIC 0x68 -> Node 1
[    0.009290] SRAT: PXM 1 -> APIC 0x6a -> Node 1
[    0.009290] SRAT: PXM 1 -> APIC 0x6c -> Node 1
[    0.009290] SRAT: PXM 1 -> APIC 0x6e -> Node 1
[    0.009291] SRAT: PXM 2 -> APIC 0x70 -> Node 2
[    0.009291] SRAT: PXM 2 -> APIC 0x72 -> Node 2
[    0.009292] SRAT: PXM 2 -> APIC 0x74 -> Node 2
[    0.009292] SRAT: PXM 2 -> APIC 0x76 -> Node 2
[    0.009293] SRAT: PXM 2 -> APIC 0x78 -> Node 2
[    0.009293] SRAT: PXM 2 -> APIC 0x7a -> Node 2
[    0.009294] SRAT: PXM 2 -> APIC 0x7c -> Node 2
[    0.009294] SRAT: PXM 2 -> APIC 0x7e -> Node 2
[    0.009295] SRAT: PXM 2 -> APIC 0x80 -> Node 2
[    0.009295] SRAT: PXM 2 -> APIC 0x82 -> Node 2
[    0.009296] SRAT: PXM 2 -> APIC 0x84 -> Node 2
[    0.009296] SRAT: PXM 2 -> APIC 0x86 -> Node 2
[    0.009296] SRAT: PXM 2 -> APIC 0x88 -> Node 2
[    0.009297] SRAT: PXM 2 -> APIC 0x8a -> Node 2
[    0.009297] SRAT: PXM 2 -> APIC 0x8c -> Node 2
[    0.009298] SRAT: PXM 2 -> APIC 0x8e -> Node 2
[    0.009298] SRAT: PXM 2 -> APIC 0x90 -> Node 2
[    0.009299] SRAT: PXM 2 -> APIC 0x92 -> Node 2
[    0.009299] SRAT: PXM 2 -> APIC 0x94 -> Node 2
[    0.009300] SRAT: PXM 2 -> APIC 0x96 -> Node 2
[    0.009300] SRAT: PXM 2 -> APIC 0x98 -> Node 2
[    0.009301] SRAT: PXM 2 -> APIC 0x9a -> Node 2
[    0.009301] SRAT: PXM 2 -> APIC 0x9c -> Node 2
[    0.009302] SRAT: PXM 2 -> APIC 0x9e -> Node 2
[    0.009302] SRAT: PXM 2 -> APIC 0xa0 -> Node 2
[    0.009303] SRAT: PXM 2 -> APIC 0xa2 -> Node 2
[    0.009303] SRAT: PXM 2 -> APIC 0xa4 -> Node 2
[    0.009304] SRAT: PXM 2 -> APIC 0xa6 -> Node 2
[    0.009306] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.009306] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[    0.009307] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x55ffffffff]
[    0.009308] ACPI: SRAT: Node 1 PXM 1 [mem 0x5600000000-0xaaffffffff]
[    0.009308] ACPI: SRAT: Node 2 PXM 2 [mem 0xab00000000-0xfcffffffff]
[    0.009309] ACPI: SRAT: Node 2 PXM 2 [mem 0x10000000000-0x1033fffffff]
[    0.009310] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xbfffffff] -> [mem 0x00000000-0xbfffffff]
[    0.009311] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x55ffffffff] -> [mem 0x00000000-0x55ffffffff]
[    0.009312] NUMA: Node 2 [mem 0xab00000000-0xfcffffffff] + [mem 0x10000000000-0x1033fffffff] -> [mem 0xab00000000-0x1033fffffff]
[    0.009320] NODE_DATA(0) allocated [mem 0x55fffd6000-0x55ffffffff]
[    0.009685] NODE_DATA(1) allocated [mem 0xaafffd6000-0xaaffffffff]
[    0.010304] NODE_DATA(2) allocated [mem 0x1033ffd5000-0x1033fffefff]
[    0.010409] crashkernel: memory value expected
[    0.011098] Zone ranges:
[    0.011099]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.011100]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.011101]   Normal   [mem 0x0000000100000000-0x000001033fffffff]
[    0.011102]   Device   empty
[    0.011103] Movable zone start for each node
[    0.011105] Early memory node ranges
[    0.011106]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.011106]   node   0: [mem 0x0000000000100000-0x000000000ef23fff]
[    0.011107]   node   0: [mem 0x000000000ef2d000-0x000000000ef3bfff]
[    0.011107]   node   0: [mem 0x000000000ef48000-0x000000000ef60fff]
[    0.011108]   node   0: [mem 0x000000000ef66000-0x000000000fee6fff]
[    0.011108]   node   0: [mem 0x000000000ff77000-0x00000000bfffffff]
[    0.011109]   node   0: [mem 0x0000000100000000-0x00000055ffffffff]
[    0.011123]   node   1: [mem 0x0000005600000000-0x000000aaffffffff]
[    0.011137]   node   2: [mem 0x000000ab00000000-0x000000fcffffffff]
[    0.011151]   node   2: [mem 0x0000010000000000-0x000001033fffffff]
[    0.011890] Zeroed struct page in unavailable ranges: 267 pages
[    0.011891] Initmem setup node 0 [mem 0x0000000000001000-0x00000055ffffffff]
[    0.011892] On node 0 totalpages: 89915125
[    0.011892]   DMA zone: 64 pages used for memmap
[    0.011893]   DMA zone: 159 pages reserved
[    0.011893]   DMA zone: 3999 pages, LIFO batch:0
[    0.011914]   DMA32 zone: 12222 pages used for memmap
[    0.011915]   DMA32 zone: 782166 pages, LIFO batch:63
[    0.023477]   Normal zone: 1392640 pages used for memmap
[    0.023478]   Normal zone: 89128960 pages, LIFO batch:63
[    0.023999] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.024002] On node 1 totalpages: 89128960
[    0.024003]   Normal zone: 1392640 pages used for memmap
[    0.024003]   Normal zone: 89128960 pages, LIFO batch:63
[    0.024792] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.024793] On node 2 totalpages: 89391104
[    0.024794]   Normal zone: 1445888 pages used for memmap
[    0.024794]   Normal zone: 89391104 pages, LIFO batch:63
[    0.027380] ACPI: PM-Timer IO Port: 0x448
[    0.027382] ACPI: Local APIC address 0xfee00000
[    0.027399] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.027400] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.027400] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.027401] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.027401] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.027402] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.027403] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.027403] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.027404] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.027404] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.027405] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.027406] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.027406] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.027407] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.027407] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.027408] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.027409] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.027409] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.027409] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.027410] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.027410] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.027411] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.027411] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.027412] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.027412] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.027413] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.027413] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.027414] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.027414] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.027414] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.027415] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.027415] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.027416] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.027416] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.027417] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.027417] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.027418] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.027418] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.027419] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.027420] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.027420] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.027421] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.027421] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.027422] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.027422] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.027423] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.027423] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.027423] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.027424] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    0.027424] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    0.027425] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    0.027425] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    0.027426] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    0.027426] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    0.027427] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    0.027427] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    0.027428] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    0.027428] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    0.027428] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    0.027429] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    0.027429] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[    0.027430] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    0.027430] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[    0.027431] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[    0.027431] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[    0.027432] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[    0.027432] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[    0.027433] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[    0.027433] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[    0.027433] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[    0.027434] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[    0.027434] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[    0.027435] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[    0.027435] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[    0.027436] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[    0.027437] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[    0.027437] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[    0.027438] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[    0.027438] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[    0.027439] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[    0.027440] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[    0.027440] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[    0.027441] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[    0.027441] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[    0.027471] IOAPIC[0]: apic_id 84, version 32, address 0xfec00000, GSI 0-23
[    0.027473] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    0.027474] ACPI: IRQ0 used by override.
[    0.027475] ACPI: IRQ9 used by override.
[    0.027476] Using ACPI (MADT) for SMP configuration information
[    0.027478] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[    0.027482] TSC deadline timer available
[    0.027483] smpboot: Allowing 84 CPUs, 0 hotplug CPUs
[    0.027517] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.027520] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.027521] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.027524] PM: hibernation: Registered nosave memory: [mem 0x0e0a1000-0x0e0a1fff]
[    0.027525] PM: hibernation: Registered nosave memory: [mem 0x0e0a2000-0x0e0a2fff]
[    0.027526] PM: hibernation: Registered nosave memory: [mem 0x0e0a3000-0x0e0a3fff]
[    0.027529] PM: hibernation: Registered nosave memory: [mem 0x0e0a5000-0x0e0a5fff]
[    0.027530] PM: hibernation: Registered nosave memory: [mem 0x0e0a6000-0x0e0a6fff]
[    0.027533] PM: hibernation: Registered nosave memory: [mem 0x0e0ae000-0x0e0aefff]
[    0.027536] PM: hibernation: Registered nosave memory: [mem 0x0ef24000-0x0ef2cfff]
[    0.027538] PM: hibernation: Registered nosave memory: [mem 0x0ef3c000-0x0ef41fff]
[    0.027539] PM: hibernation: Registered nosave memory: [mem 0x0ef42000-0x0ef47fff]
[    0.027542] PM: hibernation: Registered nosave memory: [mem 0x0ef61000-0x0ef65fff]
[    0.027545] PM: hibernation: Registered nosave memory: [mem 0x0fee7000-0x0ff56fff]
[    0.027546] PM: hibernation: Registered nosave memory: [mem 0x0ff57000-0x0ff72fff]
[    0.027547] PM: hibernation: Registered nosave memory: [mem 0x0ff73000-0x0ff76fff]
[    0.027550] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xffbfffff]
[    0.027551] PM: hibernation: Registered nosave memory: [mem 0xffc00000-0xffc29fff]
[    0.027552] PM: hibernation: Registered nosave memory: [mem 0xffc2a000-0xffffffff]
[    0.027555] PM: hibernation: Registered nosave memory: [mem 0xfd00000000-0xffffffffff]
[    0.027557] [mem 0xc0000000-0xffbfffff] available for PCI devices
[    0.027559] Booting paravirtualized kernel on VMware hypervisor
[    0.027561] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.031410] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:84 nr_cpu_ids:84 nr_node_ids:3
[    0.040326] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
[    0.040335] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
[    0.040336] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.040342] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
[    0.040348] pcpu-alloc: [1] 28 29 30 31 32 33 34 35 [1] 36 37 38 39 40 41 42 43 
[    0.040354] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 [1] 52 53 54 55 -- -- -- -- 
[    0.040360] pcpu-alloc: [2] 56 57 58 59 60 61 62 63 [2] 64 65 66 67 68 69 70 71 
[    0.040365] pcpu-alloc: [2] 72 73 74 75 76 77 78 79 [2] 80 81 82 83 -- -- -- -- 
[    0.040408] Built 3 zonelists, mobility grouping on.  Total pages: 264191576
[    0.040408] Policy zone: Normal
[    0.040410] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    0.041411] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.261328] BUG: Bad page state in process swapper  pfn:ab08001
[    0.261333] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08001
[    0.261334] flags: 0x0()
[    0.261336] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261337] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261337] page dumped because: nonzero mapcount
[    0.261338] Modules linked in:
[    0.261341] CPU: 0 PID: 0 Comm: swapper Tainted: G        W         5.10.0-rc3 #1
[    0.261341] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261342] Call Trace:
[    0.261350]  dump_stack+0x57/0x6a
[    0.261352]  bad_page.cold.119+0x63/0x93
[    0.261355]  __free_pages_ok+0x323/0x380
[    0.261359]  memblock_free_all+0x153/0x1bf
[    0.261362]  mem_init+0x23/0x1f2
[    0.261364]  start_kernel+0x299/0x57a
[    0.261368]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261370] Disabling lock debugging due to kernel taint
[    0.261371] BUG: Bad page state in process swapper  pfn:ab08002
[    0.261372] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08002
[    0.261373] flags: 0x0()
[    0.261373] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261374] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261375] page dumped because: nonzero mapcount
[    0.261375] Modules linked in:
[    0.261377] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261378] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261378] Call Trace:
[    0.261380]  dump_stack+0x57/0x6a
[    0.261381]  bad_page.cold.119+0x63/0x93
[    0.261382]  __free_pages_ok+0x323/0x380
[    0.261383]  memblock_free_all+0x153/0x1bf
[    0.261385]  mem_init+0x23/0x1f2
[    0.261386]  start_kernel+0x299/0x57a
[    0.261387]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261389] BUG: Bad page state in process swapper  pfn:ab08003
[    0.261390] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08003
[    0.261390] flags: 0x0()
[    0.261391] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261392] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261392] page dumped because: nonzero mapcount
[    0.261392] Modules linked in:
[    0.261393] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261394] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261394] Call Trace:
[    0.261395]  dump_stack+0x57/0x6a
[    0.261396]  bad_page.cold.119+0x63/0x93
[    0.261398]  __free_pages_ok+0x323/0x380
[    0.261399]  memblock_free_all+0x153/0x1bf
[    0.261400]  mem_init+0x23/0x1f2
[    0.261401]  start_kernel+0x299/0x57a
[    0.261403]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261404] BUG: Bad page state in process swapper  pfn:ab08004
[    0.261405] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08004
[    0.261406] flags: 0x0()
[    0.261406] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261407] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261407] page dumped because: nonzero mapcount
[    0.261408] Modules linked in:
[    0.261409] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261409] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261409] Call Trace:
[    0.261411]  dump_stack+0x57/0x6a
[    0.261411]  bad_page.cold.119+0x63/0x93
[    0.261413]  __free_pages_ok+0x323/0x380
[    0.261414]  memblock_free_all+0x153/0x1bf
[    0.261415]  mem_init+0x23/0x1f2
[    0.261416]  start_kernel+0x299/0x57a
[    0.261417]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261419] BUG: Bad page state in process swapper  pfn:ab08005
[    0.261419] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08005
[    0.261420] flags: 0x0()
[    0.261420] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261421] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261422] page dumped because: nonzero mapcount
[    0.261422] Modules linked in:
[    0.261423] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261424] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261424] Call Trace:
[    0.261425]  dump_stack+0x57/0x6a
[    0.261426]  bad_page.cold.119+0x63/0x93
[    0.261427]  __free_pages_ok+0x323/0x380
[    0.261429]  memblock_free_all+0x153/0x1bf
[    0.261430]  mem_init+0x23/0x1f2
[    0.261431]  start_kernel+0x299/0x57a
[    0.261432]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261433] BUG: Bad page state in process swapper  pfn:ab08006
[    0.261434] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08006
[    0.261434] flags: 0x0()
[    0.261435] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261436] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261436] page dumped because: nonzero mapcount
[    0.261437] Modules linked in:
[    0.261438] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261438] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261439] Call Trace:
[    0.261440]  dump_stack+0x57/0x6a
[    0.261441]  bad_page.cold.119+0x63/0x93
[    0.261442]  __free_pages_ok+0x323/0x380
[    0.261443]  memblock_free_all+0x153/0x1bf
[    0.261445]  mem_init+0x23/0x1f2
[    0.261445]  start_kernel+0x299/0x57a
[    0.261447]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261448] BUG: Bad page state in process swapper  pfn:ab08007
[    0.261449] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08007
[    0.261449] flags: 0x0()
[    0.261450] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261450] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261451] page dumped because: nonzero mapcount
[    0.261451] Modules linked in:
[    0.261452] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261452] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261453] Call Trace:
[    0.261454]  dump_stack+0x57/0x6a
[    0.261455]  bad_page.cold.119+0x63/0x93
[    0.261456]  __free_pages_ok+0x323/0x380
[    0.261457]  memblock_free_all+0x153/0x1bf
[    0.261458]  mem_init+0x23/0x1f2
[    0.261459]  start_kernel+0x299/0x57a
[    0.261460]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261462] BUG: Bad page state in process swapper  pfn:ab08008
[    0.261462] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08008
[    0.261463] flags: 0x0()
[    0.261464] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261464] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261465] page dumped because: nonzero mapcount
[    0.261465] Modules linked in:
[    0.261466] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261466] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261466] Call Trace:
[    0.261468]  dump_stack+0x57/0x6a
[    0.261468]  bad_page.cold.119+0x63/0x93
[    0.261470]  __free_pages_ok+0x323/0x380
[    0.261471]  memblock_free_all+0x153/0x1bf
[    0.261472]  mem_init+0x23/0x1f2
[    0.261473]  start_kernel+0x299/0x57a
[    0.261474]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261475] BUG: Bad page state in process swapper  pfn:ab08009
[    0.261476] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08009
[    0.261477] flags: 0x0()
[    0.261478] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261479] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261479] page dumped because: nonzero mapcount
[    0.261480] Modules linked in:
[    0.261480] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261481] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261481] Call Trace:
[    0.261483]  dump_stack+0x57/0x6a
[    0.261484]  bad_page.cold.119+0x63/0x93
[    0.261485]  __free_pages_ok+0x323/0x380
[    0.261486]  memblock_free_all+0x153/0x1bf
[    0.261488]  mem_init+0x23/0x1f2
[    0.261489]  start_kernel+0x299/0x57a
[    0.261490]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261491] BUG: Bad page state in process swapper  pfn:ab0800a
[    0.261492] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800a
[    0.261493] flags: 0x0()
[    0.261493] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261494] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261495] page dumped because: nonzero mapcount
[    0.261495] Modules linked in:
[    0.261496] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261496] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261497] Call Trace:
[    0.261498]  dump_stack+0x57/0x6a
[    0.261499]  bad_page.cold.119+0x63/0x93
[    0.261500]  __free_pages_ok+0x323/0x380
[    0.261501]  memblock_free_all+0x153/0x1bf
[    0.261502]  mem_init+0x23/0x1f2
[    0.261503]  start_kernel+0x299/0x57a
[    0.261504]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261505] BUG: Bad page state in process swapper  pfn:ab0800b
[    0.261506] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800b
[    0.261507] flags: 0x0()
[    0.261507] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261508] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261508] page dumped because: nonzero mapcount
[    0.261509] Modules linked in:
[    0.261509] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261510] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261510] Call Trace:
[    0.261511]  dump_stack+0x57/0x6a
[    0.261512]  bad_page.cold.119+0x63/0x93
[    0.261513]  __free_pages_ok+0x323/0x380
[    0.261515]  memblock_free_all+0x153/0x1bf
[    0.261516]  mem_init+0x23/0x1f2
[    0.261517]  start_kernel+0x299/0x57a
[    0.261518]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261520] BUG: Bad page state in process swapper  pfn:ab0800c
[    0.261520] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800c
[    0.261521] flags: 0x0()
[    0.261521] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261522] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261523] page dumped because: nonzero mapcount
[    0.261523] Modules linked in:
[    0.261524] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261524] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261524] Call Trace:
[    0.261526]  dump_stack+0x57/0x6a
[    0.261526]  bad_page.cold.119+0x63/0x93
[    0.261528]  __free_pages_ok+0x323/0x380
[    0.261529]  memblock_free_all+0x153/0x1bf
[    0.261530]  mem_init+0x23/0x1f2
[    0.261531]  start_kernel+0x299/0x57a
[    0.261532]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261533] BUG: Bad page state in process swapper  pfn:ab0800d
[    0.261534] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800d
[    0.261535] flags: 0x0()
[    0.261535] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261536] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261536] page dumped because: nonzero mapcount
[    0.261537] Modules linked in:
[    0.261538] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261538] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261538] Call Trace:
[    0.261539]  dump_stack+0x57/0x6a
[    0.261540]  bad_page.cold.119+0x63/0x93
[    0.261541]  __free_pages_ok+0x323/0x380
[    0.261543]  memblock_free_all+0x153/0x1bf
[    0.261544]  mem_init+0x23/0x1f2
[    0.261545]  start_kernel+0x299/0x57a
[    0.261546]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261547] BUG: Bad page state in process swapper  pfn:ab0800e
[    0.261548] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800e
[    0.261549] flags: 0x0()
[    0.261550] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261550] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261551] page dumped because: nonzero mapcount
[    0.261551] Modules linked in:
[    0.261552] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261553] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261553] Call Trace:
[    0.261554]  dump_stack+0x57/0x6a
[    0.261555]  bad_page.cold.119+0x63/0x93
[    0.261556]  __free_pages_ok+0x323/0x380
[    0.261558]  memblock_free_all+0x153/0x1bf
[    0.261559]  mem_init+0x23/0x1f2
[    0.261560]  start_kernel+0x299/0x57a
[    0.261562]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261563] BUG: Bad page state in process swapper  pfn:ab0800f
[    0.261564] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0800f
[    0.261564] flags: 0x0()
[    0.261565] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261565] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261566] page dumped because: nonzero mapcount
[    0.261566] Modules linked in:
[    0.261567] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261567] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261568] Call Trace:
[    0.261569]  dump_stack+0x57/0x6a
[    0.261570]  bad_page.cold.119+0x63/0x93
[    0.261571]  __free_pages_ok+0x323/0x380
[    0.261572]  memblock_free_all+0x153/0x1bf
[    0.261573]  mem_init+0x23/0x1f2
[    0.261574]  start_kernel+0x299/0x57a
[    0.261575]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261577] BUG: Bad page state in process swapper  pfn:ab08010
[    0.261577] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08010
[    0.261578] flags: 0x0()
[    0.261578] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261579] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261579] page dumped because: nonzero mapcount
[    0.261580] Modules linked in:
[    0.261581] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261581] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261581] Call Trace:
[    0.261582]  dump_stack+0x57/0x6a
[    0.261583]  bad_page.cold.119+0x63/0x93
[    0.261584]  __free_pages_ok+0x323/0x380
[    0.261586]  memblock_free_all+0x153/0x1bf
[    0.261587]  mem_init+0x23/0x1f2
[    0.261588]  start_kernel+0x299/0x57a
[    0.261589]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261590] BUG: Bad page state in process swapper  pfn:ab08011
[    0.261591] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08011
[    0.261591] flags: 0x0()
[    0.261592] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261593] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261593] page dumped because: nonzero mapcount
[    0.261594] Modules linked in:
[    0.261594] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261595] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261595] Call Trace:
[    0.261597]  dump_stack+0x57/0x6a
[    0.261598]  bad_page.cold.119+0x63/0x93
[    0.261599]  __free_pages_ok+0x323/0x380
[    0.261600]  memblock_free_all+0x153/0x1bf
[    0.261601]  mem_init+0x23/0x1f2
[    0.261602]  start_kernel+0x299/0x57a
[    0.261603]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261605] BUG: Bad page state in process swapper  pfn:ab08012
[    0.261605] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08012
[    0.261606] flags: 0x0()
[    0.261606] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261607] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261608] page dumped because: nonzero mapcount
[    0.261608] Modules linked in:
[    0.261609] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261609] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261610] Call Trace:
[    0.261611]  dump_stack+0x57/0x6a
[    0.261612]  bad_page.cold.119+0x63/0x93
[    0.261613]  __free_pages_ok+0x323/0x380
[    0.261614]  memblock_free_all+0x153/0x1bf
[    0.261615]  mem_init+0x23/0x1f2
[    0.261616]  start_kernel+0x299/0x57a
[    0.261617]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261619] BUG: Bad page state in process swapper  pfn:ab08013
[    0.261619] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08013
[    0.261620] flags: 0x0()
[    0.261621] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261621] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261622] page dumped because: nonzero mapcount
[    0.261622] Modules linked in:
[    0.261623] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261623] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261623] Call Trace:
[    0.261625]  dump_stack+0x57/0x6a
[    0.261625]  bad_page.cold.119+0x63/0x93
[    0.261626]  __free_pages_ok+0x323/0x380
[    0.261628]  memblock_free_all+0x153/0x1bf
[    0.261629]  mem_init+0x23/0x1f2
[    0.261630]  start_kernel+0x299/0x57a
[    0.261631]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261632] BUG: Bad page state in process swapper  pfn:ab08014
[    0.261633] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08014
[    0.261634] flags: 0x0()
[    0.261635] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261635] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261636] page dumped because: nonzero mapcount
[    0.261636] Modules linked in:
[    0.261637] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261637] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261637] Call Trace:
[    0.261639]  dump_stack+0x57/0x6a
[    0.261639]  bad_page.cold.119+0x63/0x93
[    0.261641]  __free_pages_ok+0x323/0x380
[    0.261642]  memblock_free_all+0x153/0x1bf
[    0.261643]  mem_init+0x23/0x1f2
[    0.261644]  start_kernel+0x299/0x57a
[    0.261645]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261646] BUG: Bad page state in process swapper  pfn:ab08015
[    0.261647] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08015
[    0.261647] flags: 0x0()
[    0.261648] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261649] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261649] page dumped because: nonzero mapcount
[    0.261649] Modules linked in:
[    0.261650] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261651] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261651] Call Trace:
[    0.261652]  dump_stack+0x57/0x6a
[    0.261653]  bad_page.cold.119+0x63/0x93
[    0.261654]  __free_pages_ok+0x323/0x380
[    0.261655]  memblock_free_all+0x153/0x1bf
[    0.261657]  mem_init+0x23/0x1f2
[    0.261657]  start_kernel+0x299/0x57a
[    0.261659]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261660] BUG: Bad page state in process swapper  pfn:ab08016
[    0.261661] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08016
[    0.261661] flags: 0x0()
[    0.261662] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261662] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261663] page dumped because: nonzero mapcount
[    0.261663] Modules linked in:
[    0.261664] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261664] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261665] Call Trace:
[    0.261666]  dump_stack+0x57/0x6a
[    0.261667]  bad_page.cold.119+0x63/0x93
[    0.261668]  __free_pages_ok+0x323/0x380
[    0.261669]  memblock_free_all+0x153/0x1bf
[    0.261670]  mem_init+0x23/0x1f2
[    0.261671]  start_kernel+0x299/0x57a
[    0.261672]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261674] BUG: Bad page state in process swapper  pfn:ab08017
[    0.261675] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08017
[    0.261675] flags: 0x0()
[    0.261676] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261676] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261677] page dumped because: nonzero mapcount
[    0.261677] Modules linked in:
[    0.261678] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261678] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261679] Call Trace:
[    0.261680]  dump_stack+0x57/0x6a
[    0.261680]  bad_page.cold.119+0x63/0x93
[    0.261682]  __free_pages_ok+0x323/0x380
[    0.261683]  memblock_free_all+0x153/0x1bf
[    0.261684]  mem_init+0x23/0x1f2
[    0.261685]  start_kernel+0x299/0x57a
[    0.261686]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261687] BUG: Bad page state in process swapper  pfn:ab08018
[    0.261688] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08018
[    0.261689] flags: 0x0()
[    0.261689] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261690] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261690] page dumped because: nonzero mapcount
[    0.261691] Modules linked in:
[    0.261691] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261692] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261692] Call Trace:
[    0.261693]  dump_stack+0x57/0x6a
[    0.261694]  bad_page.cold.119+0x63/0x93
[    0.261695]  __free_pages_ok+0x323/0x380
[    0.261697]  memblock_free_all+0x153/0x1bf
[    0.261698]  mem_init+0x23/0x1f2
[    0.261699]  start_kernel+0x299/0x57a
[    0.261700]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261701] BUG: Bad page state in process swapper  pfn:ab08019
[    0.261702] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08019
[    0.261702] flags: 0x0()
[    0.261703] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261704] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261704] page dumped because: nonzero mapcount
[    0.261704] Modules linked in:
[    0.261705] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261706] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261706] Call Trace:
[    0.261707]  dump_stack+0x57/0x6a
[    0.261708]  bad_page.cold.119+0x63/0x93
[    0.261709]  __free_pages_ok+0x323/0x380
[    0.261710]  memblock_free_all+0x153/0x1bf
[    0.261711]  mem_init+0x23/0x1f2
[    0.261712]  start_kernel+0x299/0x57a
[    0.261713]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261715] BUG: Bad page state in process swapper  pfn:ab0801a
[    0.261715] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801a
[    0.261716] flags: 0x0()
[    0.261717] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261717] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261718] page dumped because: nonzero mapcount
[    0.261718] Modules linked in:
[    0.261719] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261719] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261719] Call Trace:
[    0.261721]  dump_stack+0x57/0x6a
[    0.261722]  bad_page.cold.119+0x63/0x93
[    0.261723]  __free_pages_ok+0x323/0x380
[    0.261724]  memblock_free_all+0x153/0x1bf
[    0.261725]  mem_init+0x23/0x1f2
[    0.261726]  start_kernel+0x299/0x57a
[    0.261727]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261728] BUG: Bad page state in process swapper  pfn:ab0801b
[    0.261729] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801b
[    0.261730] flags: 0x0()
[    0.261730] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261731] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261731] page dumped because: nonzero mapcount
[    0.261732] Modules linked in:
[    0.261732] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261733] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261733] Call Trace:
[    0.261734]  dump_stack+0x57/0x6a
[    0.261735]  bad_page.cold.119+0x63/0x93
[    0.261736]  __free_pages_ok+0x323/0x380
[    0.261738]  memblock_free_all+0x153/0x1bf
[    0.261739]  mem_init+0x23/0x1f2
[    0.261740]  start_kernel+0x299/0x57a
[    0.261741]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261742] BUG: Bad page state in process swapper  pfn:ab0801c
[    0.261743] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801c
[    0.261743] flags: 0x0()
[    0.261744] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261744] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261745] page dumped because: nonzero mapcount
[    0.261745] Modules linked in:
[    0.261746] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261746] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261747] Call Trace:
[    0.261748]  dump_stack+0x57/0x6a
[    0.261749]  bad_page.cold.119+0x63/0x93
[    0.261750]  __free_pages_ok+0x323/0x380
[    0.261751]  memblock_free_all+0x153/0x1bf
[    0.261752]  mem_init+0x23/0x1f2
[    0.261753]  start_kernel+0x299/0x57a
[    0.261754]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261756] BUG: Bad page state in process swapper  pfn:ab0801d
[    0.261756] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801d
[    0.261757] flags: 0x0()
[    0.261757] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261758] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261759] page dumped because: nonzero mapcount
[    0.261759] Modules linked in:
[    0.261760] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261760] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261760] Call Trace:
[    0.261762]  dump_stack+0x57/0x6a
[    0.261762]  bad_page.cold.119+0x63/0x93
[    0.261764]  __free_pages_ok+0x323/0x380
[    0.261765]  memblock_free_all+0x153/0x1bf
[    0.261766]  mem_init+0x23/0x1f2
[    0.261767]  start_kernel+0x299/0x57a
[    0.261768]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261769] BUG: Bad page state in process swapper  pfn:ab0801e
[    0.261770] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801e
[    0.261770] flags: 0x0()
[    0.261771] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261772] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261772] page dumped because: nonzero mapcount
[    0.261772] Modules linked in:
[    0.261773] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261774] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261774] Call Trace:
[    0.261775]  dump_stack+0x57/0x6a
[    0.261776]  bad_page.cold.119+0x63/0x93
[    0.261777]  __free_pages_ok+0x323/0x380
[    0.261778]  memblock_free_all+0x153/0x1bf
[    0.261780]  mem_init+0x23/0x1f2
[    0.261780]  start_kernel+0x299/0x57a
[    0.261782]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261783] BUG: Bad page state in process swapper  pfn:ab0801f
[    0.261784] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0801f
[    0.261784] flags: 0x0()
[    0.261785] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261786] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261786] page dumped because: nonzero mapcount
[    0.261786] Modules linked in:
[    0.261787] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261787] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261788] Call Trace:
[    0.261789]  dump_stack+0x57/0x6a
[    0.261790]  bad_page.cold.119+0x63/0x93
[    0.261791]  __free_pages_ok+0x323/0x380
[    0.261792]  memblock_free_all+0x153/0x1bf
[    0.261793]  mem_init+0x23/0x1f2
[    0.261794]  start_kernel+0x299/0x57a
[    0.261795]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261797] BUG: Bad page state in process swapper  pfn:ab08020
[    0.261797] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08020
[    0.261798] flags: 0x0()
[    0.261799] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261799] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261800] page dumped because: nonzero mapcount
[    0.261800] Modules linked in:
[    0.261801] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261801] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261801] Call Trace:
[    0.261803]  dump_stack+0x57/0x6a
[    0.261803]  bad_page.cold.119+0x63/0x93
[    0.261805]  __free_pages_ok+0x323/0x380
[    0.261806]  memblock_free_all+0x153/0x1bf
[    0.261807]  mem_init+0x23/0x1f2
[    0.261808]  start_kernel+0x299/0x57a
[    0.261809]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261810] BUG: Bad page state in process swapper  pfn:ab08021
[    0.261811] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08021
[    0.261812] flags: 0x0()
[    0.261812] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261813] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261813] page dumped because: nonzero mapcount
[    0.261813] Modules linked in:
[    0.261814] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261815] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261815] Call Trace:
[    0.261816]  dump_stack+0x57/0x6a
[    0.261817]  bad_page.cold.119+0x63/0x93
[    0.261818]  __free_pages_ok+0x323/0x380
[    0.261820]  memblock_free_all+0x153/0x1bf
[    0.261821]  mem_init+0x23/0x1f2
[    0.261822]  start_kernel+0x299/0x57a
[    0.261823]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261824] BUG: Bad page state in process swapper  pfn:ab08022
[    0.261825] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08022
[    0.261825] flags: 0x0()
[    0.261826] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261827] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261827] page dumped because: nonzero mapcount
[    0.261827] Modules linked in:
[    0.261828] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261828] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261829] Call Trace:
[    0.261830]  dump_stack+0x57/0x6a
[    0.261831]  bad_page.cold.119+0x63/0x93
[    0.261832]  __free_pages_ok+0x323/0x380
[    0.261833]  memblock_free_all+0x153/0x1bf
[    0.261834]  mem_init+0x23/0x1f2
[    0.261835]  start_kernel+0x299/0x57a
[    0.261836]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261838] BUG: Bad page state in process swapper  pfn:ab08023
[    0.261838] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08023
[    0.261839] flags: 0x0()
[    0.261839] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261840] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261841] page dumped because: nonzero mapcount
[    0.261841] Modules linked in:
[    0.261842] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261842] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261843] Call Trace:
[    0.261844]  dump_stack+0x57/0x6a
[    0.261845]  bad_page.cold.119+0x63/0x93
[    0.261846]  __free_pages_ok+0x323/0x380
[    0.261847]  memblock_free_all+0x153/0x1bf
[    0.261848]  mem_init+0x23/0x1f2
[    0.261849]  start_kernel+0x299/0x57a
[    0.261850]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261852] BUG: Bad page state in process swapper  pfn:ab08024
[    0.261852] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08024
[    0.261853] flags: 0x0()
[    0.261853] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261854] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261854] page dumped because: nonzero mapcount
[    0.261855] Modules linked in:
[    0.261856] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261856] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261856] Call Trace:
[    0.261858]  dump_stack+0x57/0x6a
[    0.261858]  bad_page.cold.119+0x63/0x93
[    0.261860]  __free_pages_ok+0x323/0x380
[    0.261861]  memblock_free_all+0x153/0x1bf
[    0.261862]  mem_init+0x23/0x1f2
[    0.261863]  start_kernel+0x299/0x57a
[    0.261864]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261865] BUG: Bad page state in process swapper  pfn:ab08025
[    0.261866] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08025
[    0.261866] flags: 0x0()
[    0.261867] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261868] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261868] page dumped because: nonzero mapcount
[    0.261868] Modules linked in:
[    0.261869] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261870] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261870] Call Trace:
[    0.261871]  dump_stack+0x57/0x6a
[    0.261872]  bad_page.cold.119+0x63/0x93
[    0.261873]  __free_pages_ok+0x323/0x380
[    0.261874]  memblock_free_all+0x153/0x1bf
[    0.261876]  mem_init+0x23/0x1f2
[    0.261876]  start_kernel+0x299/0x57a
[    0.261878]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261879] BUG: Bad page state in process swapper  pfn:ab08026
[    0.261880] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08026
[    0.261880] flags: 0x0()
[    0.261881] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261881] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261882] page dumped because: nonzero mapcount
[    0.261882] Modules linked in:
[    0.261883] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261883] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261884] Call Trace:
[    0.261885]  dump_stack+0x57/0x6a
[    0.261886]  bad_page.cold.119+0x63/0x93
[    0.261887]  __free_pages_ok+0x323/0x380
[    0.261888]  memblock_free_all+0x153/0x1bf
[    0.261889]  mem_init+0x23/0x1f2
[    0.261890]  start_kernel+0x299/0x57a
[    0.261891]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261892] BUG: Bad page state in process swapper  pfn:ab08027
[    0.261893] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08027
[    0.261894] flags: 0x0()
[    0.261894] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261895] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261895] page dumped because: nonzero mapcount
[    0.261896] Modules linked in:
[    0.261896] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261897] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261897] Call Trace:
[    0.261898]  dump_stack+0x57/0x6a
[    0.261899]  bad_page.cold.119+0x63/0x93
[    0.261900]  __free_pages_ok+0x323/0x380
[    0.261902]  memblock_free_all+0x153/0x1bf
[    0.261903]  mem_init+0x23/0x1f2
[    0.261904]  start_kernel+0x299/0x57a
[    0.261905]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261906] BUG: Bad page state in process swapper  pfn:ab08028
[    0.261907] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08028
[    0.261907] flags: 0x0()
[    0.261908] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261909] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261909] page dumped because: nonzero mapcount
[    0.261909] Modules linked in:
[    0.261910] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261911] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261911] Call Trace:
[    0.261912]  dump_stack+0x57/0x6a
[    0.261913]  bad_page.cold.119+0x63/0x93
[    0.261914]  __free_pages_ok+0x323/0x380
[    0.261915]  memblock_free_all+0x153/0x1bf
[    0.261916]  mem_init+0x23/0x1f2
[    0.261917]  start_kernel+0x299/0x57a
[    0.261918]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261920] BUG: Bad page state in process swapper  pfn:ab08029
[    0.261921] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08029
[    0.261921] flags: 0x0()
[    0.261922] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261922] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261923] page dumped because: nonzero mapcount
[    0.261923] Modules linked in:
[    0.261924] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261924] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261925] Call Trace:
[    0.261926]  dump_stack+0x57/0x6a
[    0.261926]  bad_page.cold.119+0x63/0x93
[    0.261928]  __free_pages_ok+0x323/0x380
[    0.261929]  memblock_free_all+0x153/0x1bf
[    0.261930]  mem_init+0x23/0x1f2
[    0.261931]  start_kernel+0x299/0x57a
[    0.261932]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261933] BUG: Bad page state in process swapper  pfn:ab0802a
[    0.261934] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802a
[    0.261935] flags: 0x0()
[    0.261935] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261936] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261936] page dumped because: nonzero mapcount
[    0.261937] Modules linked in:
[    0.261937] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261938] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261938] Call Trace:
[    0.261939]  dump_stack+0x57/0x6a
[    0.261940]  bad_page.cold.119+0x63/0x93
[    0.261941]  __free_pages_ok+0x323/0x380
[    0.261942]  memblock_free_all+0x153/0x1bf
[    0.261944]  mem_init+0x23/0x1f2
[    0.261945]  start_kernel+0x299/0x57a
[    0.261946]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261947] BUG: Bad page state in process swapper  pfn:ab0802b
[    0.261948] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802b
[    0.261948] flags: 0x0()
[    0.261949] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261950] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261950] page dumped because: nonzero mapcount
[    0.261950] Modules linked in:
[    0.261951] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261951] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261952] Call Trace:
[    0.261953]  dump_stack+0x57/0x6a
[    0.261954]  bad_page.cold.119+0x63/0x93
[    0.261955]  __free_pages_ok+0x323/0x380
[    0.261956]  memblock_free_all+0x153/0x1bf
[    0.261957]  mem_init+0x23/0x1f2
[    0.261958]  start_kernel+0x299/0x57a
[    0.261959]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261961] BUG: Bad page state in process swapper  pfn:ab0802c
[    0.261961] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802c
[    0.261962] flags: 0x0()
[    0.261963] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261963] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261964] page dumped because: nonzero mapcount
[    0.261964] Modules linked in:
[    0.261965] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261965] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261965] Call Trace:
[    0.261967]  dump_stack+0x57/0x6a
[    0.261968]  bad_page.cold.119+0x63/0x93
[    0.261969]  __free_pages_ok+0x323/0x380
[    0.261970]  memblock_free_all+0x153/0x1bf
[    0.261971]  mem_init+0x23/0x1f2
[    0.261972]  start_kernel+0x299/0x57a
[    0.261973]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261974] BUG: Bad page state in process swapper  pfn:ab0802d
[    0.261975] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802d
[    0.261976] flags: 0x0()
[    0.261976] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261977] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261977] page dumped because: nonzero mapcount
[    0.261978] Modules linked in:
[    0.261978] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261979] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261979] Call Trace:
[    0.261980]  dump_stack+0x57/0x6a
[    0.261981]  bad_page.cold.119+0x63/0x93
[    0.261982]  __free_pages_ok+0x323/0x380
[    0.261984]  memblock_free_all+0x153/0x1bf
[    0.261985]  mem_init+0x23/0x1f2
[    0.261986]  start_kernel+0x299/0x57a
[    0.261987]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.261988] BUG: Bad page state in process swapper  pfn:ab0802e
[    0.261989] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802e
[    0.261989] flags: 0x0()
[    0.261990] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261991] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.261991] page dumped because: nonzero mapcount
[    0.261991] Modules linked in:
[    0.261992] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.261992] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.261993] Call Trace:
[    0.261994]  dump_stack+0x57/0x6a
[    0.261995]  bad_page.cold.119+0x63/0x93
[    0.261996]  __free_pages_ok+0x323/0x380
[    0.261997]  memblock_free_all+0x153/0x1bf
[    0.261998]  mem_init+0x23/0x1f2
[    0.261999]  start_kernel+0x299/0x57a
[    0.262000]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262002] BUG: Bad page state in process swapper  pfn:ab0802f
[    0.262002] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0802f
[    0.262003] flags: 0x0()
[    0.262003] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262004] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262004] page dumped because: nonzero mapcount
[    0.262005] Modules linked in:
[    0.262006] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262006] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262006] Call Trace:
[    0.262007]  dump_stack+0x57/0x6a
[    0.262008]  bad_page.cold.119+0x63/0x93
[    0.262009]  __free_pages_ok+0x323/0x380
[    0.262011]  memblock_free_all+0x153/0x1bf
[    0.262012]  mem_init+0x23/0x1f2
[    0.262013]  start_kernel+0x299/0x57a
[    0.262014]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262015] BUG: Bad page state in process swapper  pfn:ab08030
[    0.262016] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08030
[    0.262016] flags: 0x0()
[    0.262017] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262018] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262018] page dumped because: nonzero mapcount
[    0.262018] Modules linked in:
[    0.262019] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262020] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262020] Call Trace:
[    0.262021]  dump_stack+0x57/0x6a
[    0.262022]  bad_page.cold.119+0x63/0x93
[    0.262023]  __free_pages_ok+0x323/0x380
[    0.262024]  memblock_free_all+0x153/0x1bf
[    0.262026]  mem_init+0x23/0x1f2
[    0.262027]  start_kernel+0x299/0x57a
[    0.262028]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262029] BUG: Bad page state in process swapper  pfn:ab08031
[    0.262030] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08031
[    0.262030] flags: 0x0()
[    0.262031] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262031] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262032] page dumped because: nonzero mapcount
[    0.262032] Modules linked in:
[    0.262033] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262033] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262034] Call Trace:
[    0.262035]  dump_stack+0x57/0x6a
[    0.262036]  bad_page.cold.119+0x63/0x93
[    0.262037]  __free_pages_ok+0x323/0x380
[    0.262038]  memblock_free_all+0x153/0x1bf
[    0.262039]  mem_init+0x23/0x1f2
[    0.262040]  start_kernel+0x299/0x57a
[    0.262041]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262043] BUG: Bad page state in process swapper  pfn:ab08032
[    0.262043] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08032
[    0.262044] flags: 0x0()
[    0.262044] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262045] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262045] page dumped because: nonzero mapcount
[    0.262046] Modules linked in:
[    0.262047] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262047] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262047] Call Trace:
[    0.262048]  dump_stack+0x57/0x6a
[    0.262049]  bad_page.cold.119+0x63/0x93
[    0.262050]  __free_pages_ok+0x323/0x380
[    0.262052]  memblock_free_all+0x153/0x1bf
[    0.262053]  mem_init+0x23/0x1f2
[    0.262054]  start_kernel+0x299/0x57a
[    0.262055]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262056] BUG: Bad page state in process swapper  pfn:ab08033
[    0.262057] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08033
[    0.262057] flags: 0x0()
[    0.262058] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262059] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262059] page dumped because: nonzero mapcount
[    0.262059] Modules linked in:
[    0.262060] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262061] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262061] Call Trace:
[    0.262062]  dump_stack+0x57/0x6a
[    0.262063]  bad_page.cold.119+0x63/0x93
[    0.262064]  __free_pages_ok+0x323/0x380
[    0.262065]  memblock_free_all+0x153/0x1bf
[    0.262066]  mem_init+0x23/0x1f2
[    0.262067]  start_kernel+0x299/0x57a
[    0.262068]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262070] BUG: Bad page state in process swapper  pfn:ab08034
[    0.262071] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08034
[    0.262071] flags: 0x0()
[    0.262072] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262072] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262073] page dumped because: nonzero mapcount
[    0.262073] Modules linked in:
[    0.262074] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262074] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262075] Call Trace:
[    0.262076]  dump_stack+0x57/0x6a
[    0.262077]  bad_page.cold.119+0x63/0x93
[    0.262078]  __free_pages_ok+0x323/0x380
[    0.262079]  memblock_free_all+0x153/0x1bf
[    0.262080]  mem_init+0x23/0x1f2
[    0.262081]  start_kernel+0x299/0x57a
[    0.262082]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262084] BUG: Bad page state in process swapper  pfn:ab08035
[    0.262084] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08035
[    0.262085] flags: 0x0()
[    0.262085] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262086] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262087] page dumped because: nonzero mapcount
[    0.262087] Modules linked in:
[    0.262088] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262088] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262088] Call Trace:
[    0.262090]  dump_stack+0x57/0x6a
[    0.262090]  bad_page.cold.119+0x63/0x93
[    0.262092]  __free_pages_ok+0x323/0x380
[    0.262093]  memblock_free_all+0x153/0x1bf
[    0.262094]  mem_init+0x23/0x1f2
[    0.262095]  start_kernel+0x299/0x57a
[    0.262096]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262097] BUG: Bad page state in process swapper  pfn:ab08036
[    0.262098] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08036
[    0.262099] flags: 0x0()
[    0.262099] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262100] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262100] page dumped because: nonzero mapcount
[    0.262101] Modules linked in:
[    0.262101] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262102] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262102] Call Trace:
[    0.262103]  dump_stack+0x57/0x6a
[    0.262104]  bad_page.cold.119+0x63/0x93
[    0.262105]  __free_pages_ok+0x323/0x380
[    0.262106]  memblock_free_all+0x153/0x1bf
[    0.262108]  mem_init+0x23/0x1f2
[    0.262109]  start_kernel+0x299/0x57a
[    0.262110]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262111] BUG: Bad page state in process swapper  pfn:ab08037
[    0.262112] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08037
[    0.262112] flags: 0x0()
[    0.262113] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262113] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262114] page dumped because: nonzero mapcount
[    0.262114] Modules linked in:
[    0.262115] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262115] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262116] Call Trace:
[    0.262117]  dump_stack+0x57/0x6a
[    0.262118]  bad_page.cold.119+0x63/0x93
[    0.262119]  __free_pages_ok+0x323/0x380
[    0.262120]  memblock_free_all+0x153/0x1bf
[    0.262121]  mem_init+0x23/0x1f2
[    0.262122]  start_kernel+0x299/0x57a
[    0.262123]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262125] BUG: Bad page state in process swapper  pfn:ab08038
[    0.262125] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08038
[    0.262126] flags: 0x0()
[    0.262127] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262127] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262128] page dumped because: nonzero mapcount
[    0.262128] Modules linked in:
[    0.262129] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262129] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262129] Call Trace:
[    0.262131]  dump_stack+0x57/0x6a
[    0.262131]  bad_page.cold.119+0x63/0x93
[    0.262133]  __free_pages_ok+0x323/0x380
[    0.262134]  memblock_free_all+0x153/0x1bf
[    0.262135]  mem_init+0x23/0x1f2
[    0.262136]  start_kernel+0x299/0x57a
[    0.262137]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262138] BUG: Bad page state in process swapper  pfn:ab08039
[    0.262139] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab08039
[    0.262140] flags: 0x0()
[    0.262140] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262141] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262141] page dumped because: nonzero mapcount
[    0.262142] Modules linked in:
[    0.262142] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262143] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262143] Call Trace:
[    0.262144]  dump_stack+0x57/0x6a
[    0.262145]  bad_page.cold.119+0x63/0x93
[    0.262146]  __free_pages_ok+0x323/0x380
[    0.262147]  memblock_free_all+0x153/0x1bf
[    0.262149]  mem_init+0x23/0x1f2
[    0.262150]  start_kernel+0x299/0x57a
[    0.262151]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262152] BUG: Bad page state in process swapper  pfn:ab0803a
[    0.262153] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0803a
[    0.262153] flags: 0x0()
[    0.262154] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262154] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262155] page dumped because: nonzero mapcount
[    0.262155] Modules linked in:
[    0.262156] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262156] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262157] Call Trace:
[    0.262158]  dump_stack+0x57/0x6a
[    0.262159]  bad_page.cold.119+0x63/0x93
[    0.262160]  __free_pages_ok+0x323/0x380
[    0.262161]  memblock_free_all+0x153/0x1bf
[    0.262162]  mem_init+0x23/0x1f2
[    0.262163]  start_kernel+0x299/0x57a
[    0.262164]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262166] BUG: Bad page state in process swapper  pfn:ab0803b
[    0.262166] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0803b
[    0.262167] flags: 0x0()
[    0.262167] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262168] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262168] page dumped because: nonzero mapcount
[    0.262169] Modules linked in:
[    0.262170] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262170] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262170] Call Trace:
[    0.262171]  dump_stack+0x57/0x6a
[    0.262172]  bad_page.cold.119+0x63/0x93
[    0.262173]  __free_pages_ok+0x323/0x380
[    0.262175]  memblock_free_all+0x153/0x1bf
[    0.262176]  mem_init+0x23/0x1f2
[    0.262177]  start_kernel+0x299/0x57a
[    0.262178]  secondary_startup_64_no_verify+0xc2/0xcb
[    0.262179] BUG: Bad page state in process swapper  pfn:ab0803c
[    0.262180] page:(____ptrval____) refcount:0 mapcount:1 mapping:0000000000000000 index:0x0 pfn:0xab0803c
[    0.262180] flags: 0x0()
[    0.262181] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262182] raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[    0.262182] page dumped because: nonzero mapcount
[    0.262182] Modules linked in:
[    0.262183] CPU: 0 PID: 0 Comm: swapper Tainted: G    B   W         5.10.0-rc3 #1
[    0.262184] Hardware name: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.262184] Call Trace:
[    0.262185]  dump_stack+0x57/0x6a
[    0.262186]  bad_page.cold.119+0x63/0x93
[    0.262187]  __free_pages_ok+0x323/0x380
[    0.262188]  memblock_free_all+0x153/0x1bf
[    0.262189]  mem_init+0x23/0x1f2
[    0.262190]  start_kernel+0x299/0x57a
[    0.262191]  secondary_startup_64_no_verify+0xc2/0xcb
[    3.830184] Memory: 3377380K/1073740756K available (12297K kernel code, 5775K rwdata, 4412K rodata, 2356K init, 6444K bss, 16996408K reserved, 0K cma-reserved)
[    3.832161] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=84, Nodes=3
[    3.832208] Kernel/User page tables isolation: enabled
[    3.832254] ftrace: allocating 39728 entries in 156 pages
[    3.843426] ftrace: allocated 156 pages with 4 groups
[    3.844742] rcu: Hierarchical RCU implementation.
[    3.844744] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=84.
[    3.844745] 	Rude variant of Tasks RCU enabled.
[    3.844745] 	Tracing variant of Tasks RCU enabled.
[    3.844746] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    3.844747] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=84
[    3.847491] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    3.848208] Console: colour dummy device 80x25
[    3.848315] printk: console [tty0] enabled
[    3.848477] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    3.848479] ACPI: Core revision 20200925
[    3.853855] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    3.853951] APIC: Switch to symmetric I/O mode setup
[    3.855424] x2apic enabled
[    3.857041] Switched APIC routing to physical x2apic.
[    3.861204] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    3.861241] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e3306b9ada, max_idle_ns: 440795224413 ns
[    3.861243] Calibrating delay loop (skipped) preset value.. 4190.15 BogoMIPS (lpj=2095078)
[    3.861246] pid_max: default: 86016 minimum: 672
[    3.862748] LSM: Security Framework initializing
[    3.862782] Yama: becoming mindful.
[    3.862820] SELinux:  Initializing.
[    3.955371] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes, vmalloc)
[    4.003336] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc)
[    4.004114] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    4.005498] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    4.007571] Disabled fast string operations
[    4.007716] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    4.007716] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    4.007723] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    4.007724] Spectre V2 : Mitigation: Full generic retpoline
[    4.007724] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    4.007725] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    4.007726] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    4.007727] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    4.007729] MDS: Mitigation: Clear CPU buffers
[    4.007936] Freeing SMP alternatives memory: 32K
[    4.008791] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8176 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x4)
[    4.008990] Performance Events: Skylake events, core PMU driver.
[    4.009048] core: CPUID marked event: 'cpu cycles' unavailable
[    4.009048] core: CPUID marked event: 'instructions' unavailable
[    4.009049] core: CPUID marked event: 'bus cycles' unavailable
[    4.009050] core: CPUID marked event: 'cache references' unavailable
[    4.009051] core: CPUID marked event: 'cache misses' unavailable
[    4.009051] core: CPUID marked event: 'branch instructions' unavailable
[    4.009052] core: CPUID marked event: 'branch misses' unavailable
[    4.009053] ... version:                1
[    4.009054] ... bit width:              48
[    4.009054] ... generic registers:      4
[    4.009055] ... value mask:             0000ffffffffffff
[    4.009055] ... max period:             000000007fffffff
[    4.009056] ... fixed-purpose events:   0
[    4.009056] ... event mask:             000000000000000f
[    4.009182] rcu: Hierarchical SRCU implementation.
[    4.009242] NMI watchdog: Perf NMI watchdog permanently disabled
[    4.010982] smp: Bringing up secondary CPUs ...
[    4.011063] x86: Booting SMP configuration:
[    4.011063] .... node  #0, CPUs:        #1
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 1 Converting physical 2 to logical package 1
[    0.012187] smpboot: CPU 1 Converting physical 0 to logical die 1
[    4.012340]   #2
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 2 Converting physical 4 to logical package 2
[    0.012187] smpboot: CPU 2 Converting physical 0 to logical die 2
[    4.013323]   #3
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 3 Converting physical 6 to logical package 3
[    0.012187] smpboot: CPU 3 Converting physical 0 to logical die 3
[    4.014301]   #4
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 4 Converting physical 8 to logical package 4
[    0.012187] smpboot: CPU 4 Converting physical 0 to logical die 4
[    4.014997]   #5
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 5 Converting physical 10 to logical package 5
[    0.012187] smpboot: CPU 5 Converting physical 0 to logical die 5
[    4.015870]   #6
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 6 Converting physical 12 to logical package 6
[    0.012187] smpboot: CPU 6 Converting physical 0 to logical die 6
[    4.016681]   #7
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 7 Converting physical 14 to logical package 7
[    0.012187] smpboot: CPU 7 Converting physical 0 to logical die 7
[    4.017313]   #8
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 8 Converting physical 16 to logical package 8
[    0.012187] smpboot: CPU 8 Converting physical 0 to logical die 8
[    4.018317]   #9
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 9 Converting physical 18 to logical package 9
[    0.012187] smpboot: CPU 9 Converting physical 0 to logical die 9
[    4.019084]  #10
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 10 Converting physical 20 to logical package 10
[    0.012187] smpboot: CPU 10 Converting physical 0 to logical die 10
[    4.019766]  #11
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 11 Converting physical 22 to logical package 11
[    0.012187] smpboot: CPU 11 Converting physical 0 to logical die 11
[    4.020549]  #12
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 12 Converting physical 24 to logical package 12
[    0.012187] smpboot: CPU 12 Converting physical 0 to logical die 12
[    4.021314]  #13
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 13 Converting physical 26 to logical package 13
[    0.012187] smpboot: CPU 13 Converting physical 0 to logical die 13
[    4.021924]  #14
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 14 Converting physical 28 to logical package 14
[    0.012187] smpboot: CPU 14 Converting physical 0 to logical die 14
[    4.022888]  #15
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 15 Converting physical 30 to logical package 15
[    0.012187] smpboot: CPU 15 Converting physical 0 to logical die 15
[    4.023625]  #16
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 16 Converting physical 32 to logical package 16
[    0.012187] smpboot: CPU 16 Converting physical 0 to logical die 16
[    4.024317]  #17
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 17 Converting physical 34 to logical package 17
[    0.012187] smpboot: CPU 17 Converting physical 0 to logical die 17
[    4.024933]  #18
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 18 Converting physical 36 to logical package 18
[    0.012187] smpboot: CPU 18 Converting physical 0 to logical die 18
[    4.026305]  #19
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 19 Converting physical 38 to logical package 19
[    0.012187] smpboot: CPU 19 Converting physical 0 to logical die 19
[    4.027066]  #20
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 20 Converting physical 40 to logical package 20
[    0.012187] smpboot: CPU 20 Converting physical 0 to logical die 20
[    4.027872]  #21
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 21 Converting physical 42 to logical package 21
[    0.012187] smpboot: CPU 21 Converting physical 0 to logical die 21
[    4.028315]  #22
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 22 Converting physical 44 to logical package 22
[    0.012187] smpboot: CPU 22 Converting physical 0 to logical die 22
[    4.029252]  #23
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 23 Converting physical 46 to logical package 23
[    0.012187] smpboot: CPU 23 Converting physical 0 to logical die 23
[    4.029817]  #24
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 24 Converting physical 48 to logical package 24
[    0.012187] smpboot: CPU 24 Converting physical 0 to logical die 24
[    4.030315]  #25
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 25 Converting physical 50 to logical package 25
[    0.012187] smpboot: CPU 25 Converting physical 0 to logical die 25
[    4.031007]  #26
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 26 Converting physical 52 to logical package 26
[    0.012187] smpboot: CPU 26 Converting physical 0 to logical die 26
[    4.031955]  #27
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 27 Converting physical 54 to logical package 27
[    0.012187] smpboot: CPU 27 Converting physical 0 to logical die 27

[    4.032788] .... node  #1, CPUs:   #28
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 28 Converting physical 56 to logical package 28
[    0.012187] smpboot: CPU 28 Converting physical 0 to logical die 28
[    4.033349]  #29
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 29 Converting physical 58 to logical package 29
[    0.012187] smpboot: CPU 29 Converting physical 0 to logical die 29
[    4.034328]  #30
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 30 Converting physical 60 to logical package 30
[    0.012187] smpboot: CPU 30 Converting physical 0 to logical die 30
[    4.035330]  #31
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 31 Converting physical 62 to logical package 31
[    0.012187] smpboot: CPU 31 Converting physical 0 to logical die 31
[    4.035910]  #32
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 32 Converting physical 64 to logical package 32
[    0.012187] smpboot: CPU 32 Converting physical 0 to logical die 32
[    4.036926]  #33
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 33 Converting physical 66 to logical package 33
[    0.012187] smpboot: CPU 33 Converting physical 0 to logical die 33
[    4.037796]  #34
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 34 Converting physical 68 to logical package 34
[    0.012187] smpboot: CPU 34 Converting physical 0 to logical die 34
[    4.038332]  #35
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 35 Converting physical 70 to logical package 35
[    0.012187] smpboot: CPU 35 Converting physical 0 to logical die 35
[    4.039271]  #36
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 36 Converting physical 72 to logical package 36
[    0.012187] smpboot: CPU 36 Converting physical 0 to logical die 36
[    4.039977]  #37
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 37 Converting physical 74 to logical package 37
[    0.012187] smpboot: CPU 37 Converting physical 0 to logical die 37
[    4.040874]  #38
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 38 Converting physical 76 to logical package 38
[    0.012187] smpboot: CPU 38 Converting physical 0 to logical die 38
[    4.041991]  #39
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 39 Converting physical 78 to logical package 39
[    0.012187] smpboot: CPU 39 Converting physical 0 to logical die 39
[    4.042875]  #40
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 40 Converting physical 80 to logical package 40
[    0.012187] smpboot: CPU 40 Converting physical 0 to logical die 40
[    4.043458]  #41
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 41 Converting physical 82 to logical package 41
[    0.012187] smpboot: CPU 41 Converting physical 0 to logical die 41
[    4.044317]  #42
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 42 Converting physical 84 to logical package 42
[    0.012187] smpboot: CPU 42 Converting physical 0 to logical die 42
[    4.044944]  #43
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 43 Converting physical 86 to logical package 43
[    0.012187] smpboot: CPU 43 Converting physical 0 to logical die 43
[    4.045794]  #44
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 44 Converting physical 88 to logical package 44
[    0.012187] smpboot: CPU 44 Converting physical 0 to logical die 44
[    4.046325]  #45
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 45 Converting physical 90 to logical package 45
[    0.012187] smpboot: CPU 45 Converting physical 0 to logical die 45
[    4.047292]  #46
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 46 Converting physical 92 to logical package 46
[    0.012187] smpboot: CPU 46 Converting physical 0 to logical die 46
[    4.047851]  #47
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 47 Converting physical 94 to logical package 47
[    0.012187] smpboot: CPU 47 Converting physical 0 to logical die 47
[    4.048372]  #48
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 48 Converting physical 96 to logical package 48
[    0.012187] smpboot: CPU 48 Converting physical 0 to logical die 48
[    4.048970]  #49
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 49 Converting physical 98 to logical package 49
[    0.012187] smpboot: CPU 49 Converting physical 0 to logical die 49
[    4.049850]  #50
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 50 Converting physical 100 to logical package 50
[    0.012187] smpboot: CPU 50 Converting physical 0 to logical die 50
[    4.050506]  #51
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 51 Converting physical 102 to logical package 51
[    0.012187] smpboot: CPU 51 Converting physical 0 to logical die 51
[    4.052009]  #52
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 52 Converting physical 104 to logical package 52
[    0.012187] smpboot: CPU 52 Converting physical 0 to logical die 52
[    4.053298]  #53
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 53 Converting physical 106 to logical package 53
[    0.012187] smpboot: CPU 53 Converting physical 0 to logical die 53
[    4.053987]  #54
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 54 Converting physical 108 to logical package 54
[    0.012187] smpboot: CPU 54 Converting physical 0 to logical die 54
[    4.054910]  #55
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 55 Converting physical 110 to logical package 55
[    0.012187] smpboot: CPU 55 Converting physical 0 to logical die 55

[    4.055353] .... node  #2, CPUs:   #56
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 56 Converting physical 112 to logical package 56
[    0.012187] smpboot: CPU 56 Converting physical 0 to logical die 56
[    4.056338]  #57
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 57 Converting physical 114 to logical package 57
[    0.012187] smpboot: CPU 57 Converting physical 0 to logical die 57
[    4.057256]  #58
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 58 Converting physical 116 to logical package 58
[    0.012187] smpboot: CPU 58 Converting physical 0 to logical die 58
[    4.057957]  #59
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 59 Converting physical 118 to logical package 59
[    0.012187] smpboot: CPU 59 Converting physical 0 to logical die 59
[    4.058860]  #60
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 60 Converting physical 120 to logical package 60
[    0.012187] smpboot: CPU 60 Converting physical 0 to logical die 60
[    4.059336]  #61
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 61 Converting physical 122 to logical package 61
[    0.012187] smpboot: CPU 61 Converting physical 0 to logical die 61
[    4.060394]  #62
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 62 Converting physical 124 to logical package 62
[    0.012187] smpboot: CPU 62 Converting physical 0 to logical die 62
[    4.060939]  #63
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 63 Converting physical 126 to logical package 63
[    0.012187] smpboot: CPU 63 Converting physical 0 to logical die 63
[    4.061871]  #64
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 64 Converting physical 128 to logical package 64
[    0.012187] smpboot: CPU 64 Converting physical 0 to logical die 64
[    4.062452]  #65
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 65 Converting physical 130 to logical package 65
[    0.012187] smpboot: CPU 65 Converting physical 0 to logical die 65
[    4.063337]  #66
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 66 Converting physical 132 to logical package 66
[    0.012187] smpboot: CPU 66 Converting physical 0 to logical die 66
[    4.064950]  #67
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 67 Converting physical 134 to logical package 67
[    0.012187] smpboot: CPU 67 Converting physical 0 to logical die 67
[    4.065502]  #68
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 68 Converting physical 136 to logical package 68
[    0.012187] smpboot: CPU 68 Converting physical 0 to logical die 68
[    4.066323]  #69
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 69 Converting physical 138 to logical package 69
[    0.012187] smpboot: CPU 69 Converting physical 0 to logical die 69
[    4.067302]  #70
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 70 Converting physical 140 to logical package 70
[    0.012187] smpboot: CPU 70 Converting physical 0 to logical die 70
[    4.067901]  #71
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 71 Converting physical 142 to logical package 71
[    0.012187] smpboot: CPU 71 Converting physical 0 to logical die 71
[    4.068444]  #72
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 72 Converting physical 144 to logical package 72
[    0.012187] smpboot: CPU 72 Converting physical 0 to logical die 72
[    4.069332]  #73
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 73 Converting physical 146 to logical package 73
[    0.012187] smpboot: CPU 73 Converting physical 0 to logical die 73
[    4.070267]  #74
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 74 Converting physical 148 to logical package 74
[    0.012187] smpboot: CPU 74 Converting physical 0 to logical die 74
[    4.070868]  #75
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 75 Converting physical 150 to logical package 75
[    0.012187] smpboot: CPU 75 Converting physical 0 to logical die 75
[    4.071485]  #76
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 76 Converting physical 152 to logical package 76
[    0.012187] smpboot: CPU 76 Converting physical 0 to logical die 76
[    4.072323]  #77
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 77 Converting physical 154 to logical package 77
[    0.012187] smpboot: CPU 77 Converting physical 0 to logical die 77
[    4.073271]  #78
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 78 Converting physical 156 to logical package 78
[    0.012187] smpboot: CPU 78 Converting physical 0 to logical die 78
[    4.074282]  #79
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 79 Converting physical 158 to logical package 79
[    0.012187] smpboot: CPU 79 Converting physical 0 to logical die 79
[    4.074860]  #80
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 80 Converting physical 160 to logical package 80
[    0.012187] smpboot: CPU 80 Converting physical 0 to logical die 80
[    4.075497]  #81
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 81 Converting physical 162 to logical package 81
[    0.012187] smpboot: CPU 81 Converting physical 0 to logical die 81
[    4.076331]  #82
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 82 Converting physical 164 to logical package 82
[    0.012187] smpboot: CPU 82 Converting physical 0 to logical die 82
[    4.076871]  #83
[    0.012187] Disabled fast string operations
[    0.012187] smpboot: CPU 83 Converting physical 166 to logical package 83
[    0.012187] smpboot: CPU 83 Converting physical 0 to logical die 83
[    4.078581] smp: Brought up 3 nodes, 84 CPUs
[    4.078583] smpboot: Max logical packages: 84
[    4.078587] smpboot: Total of 84 processors activated (351973.10 BogoMIPS)
[    4.110492] node 2 deferred pages initialised in 28ms
[    4.227065] node 0 deferred pages initialised in 144ms
[    4.259291] node 1 deferred pages initialised in 177ms
[    4.285789] devtmpfs: initialized
[    4.285789] x86/mm: Memory block size: 1024MB
[    4.293282] PM: Registering ACPI NVS region [mem 0x00000000-0x00000fff] (4096 bytes)
[    4.293283] PM: Registering ACPI NVS region [mem 0x0ef42000-0x0ef47fff] (24576 bytes)
[    4.293285] PM: Registering ACPI NVS region [mem 0x0ff73000-0x0ff76fff] (16384 bytes)
[    4.294260] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    4.294337] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    4.295830] pinctrl core: initialized pinctrl subsystem
[    4.296559] NET: Registered protocol family 16
[    4.296661] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    4.296672] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    4.296684] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    4.296691] audit: initializing netlink subsys (disabled)
[    4.296702] audit: type=2000 audit(1606201808.437:1): state=initialized audit_enabled=0 res=1
[    4.296702] thermal_sys: Registered thermal governor 'fair_share'
[    4.296702] thermal_sys: Registered thermal governor 'bang_bang'
[    4.296702] thermal_sys: Registered thermal governor 'step_wise'
[    4.296702] thermal_sys: Registered thermal governor 'user_space'
[    4.296702] cpuidle: using governor menu
[    4.296702] ACPI: bus type PCI registered
[    4.296702] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    4.297600] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    4.297602] PCI: not using MMCONFIG
[    4.297604] PCI: Using configuration type 1 for base access
[    4.302394] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    4.302394] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    4.332463] cryptd: max_cpu_qlen set to 1000
[    4.351893] ACPI: Added _OSI(Module Device)
[    4.351894] ACPI: Added _OSI(Processor Device)
[    4.351895] ACPI: Added _OSI(3.0 _SCP Extensions)
[    4.351896] ACPI: Added _OSI(Processor Aggregator Device)
[    4.351897] ACPI: Added _OSI(Linux-Dell-Video)
[    4.351898] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    4.351899] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    4.355540] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    4.356461] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    4.356466] ACPI: BIOS _OSI(Darwin) query ignored
[    4.365477] ACPI: Interpreter enabled
[    4.365488] ACPI: (supports S0 S1 S4 S5)
[    4.365489] ACPI: Using IOAPIC for interrupt routing
[    4.365505] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    4.366069] PCI: MMCONFIG at [mem 0xe0000000-0xe7ffffff] reserved in ACPI motherboard resources
[    4.366087] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    4.366251] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    4.366647] ACPI: Enabled 4 GPEs in block 00 to 0F
[    4.383587] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    4.383592] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.383731] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[    4.383859] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    4.384519] PCI host bridge to bus 0000:00
[    4.384520] pci_bus 0000:00: Unknown NUMA node; performance will be reduced
[    4.384522] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    4.384523] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    4.384524] pci_bus 0000:00: root bus resource [mem 0xfef00000-0xffdfffff window]
[    4.384525] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfedfffff window]
[    4.384526] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfed3ffff window]
[    4.384527] pci_bus 0000:00: root bus resource [mem 0xfa300000-0xfebfffff window]
[    4.384527] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfa2fffff pref window]
[    4.384528] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xefffffff window]
[    4.384529] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.384530] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    4.384531] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    4.384532] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    4.384532] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    4.384533] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    4.384534] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    4.384535] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    4.384536] pci_bus 0000:00: root bus resource [bus 00-7f]
[    4.384626] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    4.385167] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    4.385643] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    4.386262] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    4.390774] pci 0000:00:07.1: reg 0x20: [io  0x2050-0x205f]
[    4.392779] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    4.392780] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    4.392781] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    4.392782] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    4.392986] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    4.393353] pci 0000:00:07.3: quirk: [io  0x0440-0x047f] claimed by PIIX4 ACPI
[    4.393655] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    4.393745] pci 0000:00:07.7: reg 0x10: [io  0x2000-0x203f]
[    4.393821] pci 0000:00:07.7: reg 0x14: [mem 0xffbf0000-0xffbf1fff 64bit]
[    4.394495] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    4.396245] pci 0000:00:0f.0: reg 0x10: [io  0x2040-0x204f]
[    4.398245] pci 0000:00:0f.0: reg 0x14: [mem 0xf0000000-0xf7ffffff pref]
[    4.400244] pci 0000:00:0f.0: reg 0x18: [mem 0xfb800000-0xfbffffff]
[    4.408245] pci 0000:00:0f.0: reg 0x30: [mem 0xffff8000-0xffffffff pref]
[    4.408286] pci 0000:00:0f.0: BAR 1: assigned to efifb
[    4.408729] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    4.409477] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    4.410226] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    4.410576] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    4.411333] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    4.411686] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    4.412432] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    4.412777] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    4.413522] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    4.413872] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    4.414620] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    4.414969] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    4.415719] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    4.416067] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    4.416824] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    4.417175] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    4.417921] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    4.418259] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    4.418987] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    4.419332] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    4.420087] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    4.420425] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    4.421165] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    4.421509] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    4.422249] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    4.422589] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    4.423331] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    4.423669] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    4.424412] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    4.424749] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    4.425476] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    4.425812] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    4.426539] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    4.426877] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    4.427605] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    4.427944] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    4.428672] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    4.429012] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    4.429748] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    4.430092] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    4.430823] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    4.431165] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    4.431890] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    4.432261] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    4.432993] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    4.433332] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    4.434075] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    4.434428] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    4.435156] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    4.435494] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    4.436218] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    4.436557] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    4.437307] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    4.437648] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    4.438378] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    4.438715] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    4.439458] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    4.439801] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    4.440530] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    4.440868] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    4.441596] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    4.441946] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    4.442671] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    4.443021] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    4.443743] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    4.444089] pci_bus 0000:01: extended config space not accessible
[    4.444133] pci 0000:00:01.0: PCI bridge to [bus 01]
[    4.444316] pci_bus 0000:02: extended config space not accessible
[    4.444481] acpiphp: Slot [32] registered
[    4.444490] acpiphp: Slot [33] registered
[    4.444498] acpiphp: Slot [34] registered
[    4.444506] acpiphp: Slot [35] registered
[    4.444513] acpiphp: Slot [36] registered
[    4.444521] acpiphp: Slot [37] registered
[    4.444529] acpiphp: Slot [38] registered
[    4.444538] acpiphp: Slot [39] registered
[    4.444546] acpiphp: Slot [40] registered
[    4.444553] acpiphp: Slot [41] registered
[    4.444561] acpiphp: Slot [42] registered
[    4.444569] acpiphp: Slot [43] registered
[    4.444576] acpiphp: Slot [44] registered
[    4.444584] acpiphp: Slot [45] registered
[    4.444592] acpiphp: Slot [46] registered
[    4.444600] acpiphp: Slot [47] registered
[    4.444607] acpiphp: Slot [48] registered
[    4.444615] acpiphp: Slot [49] registered
[    4.444622] acpiphp: Slot [50] registered
[    4.444631] acpiphp: Slot [51] registered
[    4.444640] acpiphp: Slot [52] registered
[    4.444647] acpiphp: Slot [53] registered
[    4.444655] acpiphp: Slot [54] registered
[    4.444663] acpiphp: Slot [55] registered
[    4.444671] acpiphp: Slot [56] registered
[    4.444678] acpiphp: Slot [57] registered
[    4.444687] acpiphp: Slot [58] registered
[    4.444694] acpiphp: Slot [59] registered
[    4.444702] acpiphp: Slot [60] registered
[    4.444709] acpiphp: Slot [61] registered
[    4.444717] acpiphp: Slot [62] registered
[    4.444724] acpiphp: Slot [63] registered
[    4.444758] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    4.444782] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    4.444799] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    4.444832] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.444833] pci 0000:00:11.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    4.444834] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    4.444835] pci 0000:00:11.0:   bridge window [mem 0xfef00000-0xffdfffff window] (subtractive decode)
[    4.444836] pci 0000:00:11.0:   bridge window [mem 0xfed45000-0xfedfffff window] (subtractive decode)
[    4.444837] pci 0000:00:11.0:   bridge window [mem 0xfec10000-0xfed3ffff window] (subtractive decode)
[    4.444838] pci 0000:00:11.0:   bridge window [mem 0xfa300000-0xfebfffff window] (subtractive decode)
[    4.444839] pci 0000:00:11.0:   bridge window [mem 0xf0000000-0xfa2fffff pref window] (subtractive decode)
[    4.444839] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xefffffff window] (subtractive decode)
[    4.444840] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    4.444841] pci 0000:00:11.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    4.444842] pci 0000:00:11.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    4.444843] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    4.444844] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    4.444845] pci 0000:00:11.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    4.444846] pci 0000:00:11.0:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    4.444847] pci 0000:00:11.0:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    4.445205] pci 0000:03:00.0: [15ad:07c0] type 00 class 0x010700
[    4.447245] pci 0000:03:00.0: reg 0x10: [io  0x4000-0x4007]
[    4.449244] pci 0000:03:00.0: reg 0x14: [mem 0xfea10000-0xfea17fff 64bit]
[    4.457245] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    4.457705] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    4.458010] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    4.458055] pci 0000:00:15.0: PCI bridge to [bus 03]
[    4.458073] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    4.458091] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.458359] pci 0000:00:15.1: PCI bridge to [bus 04]
[    4.458392] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.458426] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.458658] pci 0000:00:15.2: PCI bridge to [bus 05]
[    4.458693] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    4.458727] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.458966] pci 0000:00:15.3: PCI bridge to [bus 06]
[    4.459000] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    4.459034] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.459270] pci 0000:00:15.4: PCI bridge to [bus 07]
[    4.459304] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    4.459338] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.459573] pci 0000:00:15.5: PCI bridge to [bus 08]
[    4.459606] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    4.459639] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.459867] pci 0000:00:15.6: PCI bridge to [bus 09]
[    4.459900] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    4.459933] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.460162] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    4.460195] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    4.460229] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.460579] pci 0000:0b:00.0: [15ad:07b0] type 00 class 0x020000
[    4.460679] pci 0000:0b:00.0: reg 0x10: [mem 0xfe213000-0xfe213fff]
[    4.460721] pci 0000:0b:00.0: reg 0x14: [mem 0xfe212000-0xfe212fff]
[    4.460764] pci 0000:0b:00.0: reg 0x18: [mem 0xfe210000-0xfe211fff]
[    4.460805] pci 0000:0b:00.0: reg 0x1c: [io  0x3000-0x300f]
[    4.460930] pci 0000:0b:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    4.461368] pci 0000:0b:00.0: supports D1 D2
[    4.461369] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    4.461716] pci 0000:0b:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    4.461761] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    4.461779] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    4.461797] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    4.462074] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    4.462108] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    4.462143] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.462379] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    4.462413] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    4.462446] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.462678] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    4.462711] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    4.462745] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.462973] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    4.463007] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    4.463041] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.463281] pci 0000:00:16.5: PCI bridge to [bus 10]
[    4.463314] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    4.463348] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.463593] pci 0000:00:16.6: PCI bridge to [bus 11]
[    4.463627] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    4.463660] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.463893] pci 0000:00:16.7: PCI bridge to [bus 12]
[    4.463928] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    4.463965] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.464204] pci 0000:00:17.0: PCI bridge to [bus 13]
[    4.464237] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    4.464269] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.464501] pci 0000:00:17.1: PCI bridge to [bus 14]
[    4.464534] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    4.464568] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.464800] pci 0000:00:17.2: PCI bridge to [bus 15]
[    4.464833] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    4.464867] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.465104] pci 0000:00:17.3: PCI bridge to [bus 16]
[    4.465138] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    4.465172] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.465404] pci 0000:00:17.4: PCI bridge to [bus 17]
[    4.465438] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    4.465472] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.465705] pci 0000:00:17.5: PCI bridge to [bus 18]
[    4.465738] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    4.465772] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.466000] pci 0000:00:17.6: PCI bridge to [bus 19]
[    4.466033] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    4.466065] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.466296] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    4.466329] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    4.466362] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.466587] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    4.466620] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    4.466654] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.466886] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    4.466919] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    4.466952] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.467185] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    4.467218] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    4.467243] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.467476] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    4.467508] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    4.467540] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.467767] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    4.467800] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    4.467833] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.468063] pci 0000:00:18.5: PCI bridge to [bus 20]
[    4.468095] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    4.468129] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.468370] pci 0000:00:18.6: PCI bridge to [bus 21]
[    4.468403] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    4.468437] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.468673] pci 0000:00:18.7: PCI bridge to [bus 22]
[    4.468708] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    4.468742] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.470363] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.470430] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.470491] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.470552] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    4.484657] iommu: Default domain type: Passthrough 
[    4.484657] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[    4.484657] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.484657] pci 0000:00:0f.0: vgaarb: bridge control possible
[    4.484657] vgaarb: loaded
[    4.484657] SCSI subsystem initialized
[    4.485301] ACPI: bus type USB registered
[    4.485314] usbcore: registered new interface driver usbfs
[    4.485322] usbcore: registered new interface driver hub
[    4.486160] usbcore: registered new device driver usb
[    4.486179] pps_core: LinuxPPS API ver. 1 registered
[    4.486180] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    4.486182] PTP clock support registered
[    4.487555] EDAC MC: Ver: 3.0.0
[    4.488630] Registered efivars operations
[    4.488630] NetLabel: Initializing
[    4.488630] NetLabel:  domain hash size = 128
[    4.488630] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.488630] NetLabel:  unlabeled traffic allowed by default
[    4.488630] PCI: Using ACPI for IRQ routing
[    4.491707] PCI: pci_cache_line_size set to 64 bytes
[    4.492412] e820: reserve RAM buffer [mem 0x0e0a1018-0x0fffffff]
[    4.492414] e820: reserve RAM buffer [mem 0x0e0a3018-0x0fffffff]
[    4.492416] e820: reserve RAM buffer [mem 0x0e0a6018-0x0fffffff]
[    4.492417] e820: reserve RAM buffer [mem 0x0ef24000-0x0fffffff]
[    4.492418] e820: reserve RAM buffer [mem 0x0ef3c000-0x0fffffff]
[    4.492419] e820: reserve RAM buffer [mem 0x0ef61000-0x0fffffff]
[    4.492419] e820: reserve RAM buffer [mem 0x0fee7000-0x0fffffff]
[    4.492428] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    4.492428] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    4.494922] clocksource: Switched to clocksource tsc-early
[    4.510825] VFS: Disk quotas dquot_6.6.0
[    4.510895] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.511132] pnp: PnP ACPI init
[    4.511275] system 00:00: [io  0x0440-0x047f] has been reserved
[    4.511277] system 00:00: [io  0x5658-0x5659] has been reserved
[    4.511278] system 00:00: [io  0x5670] has been reserved
[    4.511279] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    4.511284] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.511302] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.511318] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    4.511332] pnp 00:03: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
[    4.511468] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    4.511471] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    4.512457] system 00:05: [io  0x0400-0x041f] has been reserved
[    4.512458] system 00:05: [mem 0xe0000000-0xe7ffffff] has been reserved
[    4.512460] system 00:05: [mem 0xffc00000-0xffdfffff] could not be reserved
[    4.512462] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.513114] pnp: PnP ACPI: found 6 devices
[    4.520393] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.520555] NET: Registered protocol family 2
[    4.520901] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.521222] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    4.521957] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.522722] TCP: Hash tables configured (established 524288 bind 65536)
[    4.522921] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    4.523263] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    4.523770] NET: Registered protocol family 1
[    4.523775] NET: Registered protocol family 44
[    4.523790] pci 0000:00:0f.0: can't claim BAR 6 [mem 0xffff8000-0xffffffff pref]: no compatible bridge window
[    4.523791] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    4.523792] pci 0000:0b:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    4.523798] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    4.523799] pci 0000:00:15.1: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    4.523800] pci 0000:00:15.2: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    4.523802] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    4.523803] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    4.523804] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    4.523805] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    4.523806] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    4.523807] pci 0000:00:16.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    4.523808] pci 0000:00:16.1: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    4.523809] pci 0000:00:16.2: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    4.523810] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    4.523811] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    4.523811] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    4.523812] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    4.523813] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    4.523814] pci 0000:00:17.0: bridge window [io  0x1000-0x0fff] to [bus 13] add_size 1000
[    4.523814] pci 0000:00:17.1: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    4.523815] pci 0000:00:17.2: bridge window [io  0x1000-0x0fff] to [bus 15] add_size 1000
[    4.523816] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    4.523817] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    4.523818] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    4.523819] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    4.523820] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    4.523821] pci 0000:00:18.0: bridge window [io  0x1000-0x0fff] to [bus 1b] add_size 1000
[    4.523822] pci 0000:00:18.1: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
[    4.523823] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    4.523824] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    4.523824] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    4.523825] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    4.523826] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    4.523827] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    4.523847] pci 0000:00:15.0: BAR 15: assigned [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.523851] pci 0000:00:16.0: BAR 15: assigned [mem 0xff100000-0xff2fffff 64bit pref]
[    4.523852] pci 0000:00:0f.0: BAR 6: assigned [mem 0xff300000-0xff307fff pref]
[    4.523853] pci 0000:00:15.1: BAR 13: assigned [io  0x6000-0x6fff]
[    4.523854] pci 0000:00:15.2: BAR 13: assigned [io  0x7000-0x7fff]
[    4.523855] pci 0000:00:15.3: BAR 13: assigned [io  0x8000-0x8fff]
[    4.523856] pci 0000:00:15.4: BAR 13: assigned [io  0x9000-0x9fff]
[    4.523857] pci 0000:00:15.5: BAR 13: assigned [io  0xa000-0xafff]
[    4.523858] pci 0000:00:15.6: BAR 13: assigned [io  0xb000-0xbfff]
[    4.523858] pci 0000:00:15.7: BAR 13: assigned [io  0xc000-0xcfff]
[    4.523859] pci 0000:00:16.1: BAR 13: assigned [io  0xd000-0xdfff]
[    4.523860] pci 0000:00:16.2: BAR 13: assigned [io  0xe000-0xefff]
[    4.523861] pci 0000:00:16.3: BAR 13: assigned [io  0xf000-0xffff]
[    4.523863] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    4.523863] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    4.523865] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    4.523865] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    4.523867] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    4.523867] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    4.523868] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    4.523869] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    4.523870] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    4.523871] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    4.523872] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    4.523873] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    4.523874] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    4.523875] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    4.523876] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    4.523876] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    4.523878] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    4.523878] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    4.523879] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    4.523880] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    4.523881] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    4.523882] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    4.523883] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    4.523883] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    4.523885] pci 0000:00:18.0: BAR 13: no space for [io  size 0x1000]
[    4.523885] pci 0000:00:18.0: BAR 13: failed to assign [io  size 0x1000]
[    4.523887] pci 0000:00:18.1: BAR 13: no space for [io  size 0x1000]
[    4.523887] pci 0000:00:18.1: BAR 13: failed to assign [io  size 0x1000]
[    4.523888] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    4.523889] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    4.523890] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    4.523891] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    4.523892] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    4.523893] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    4.523894] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    4.523894] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    4.523896] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    4.523896] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    4.523897] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    4.523898] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    4.523901] pci 0000:00:18.7: BAR 13: assigned [io  0x6000-0x6fff]
[    4.523902] pci 0000:00:18.6: BAR 13: assigned [io  0x7000-0x7fff]
[    4.523903] pci 0000:00:18.5: BAR 13: assigned [io  0x8000-0x8fff]
[    4.523903] pci 0000:00:18.4: BAR 13: assigned [io  0x9000-0x9fff]
[    4.523904] pci 0000:00:18.3: BAR 13: assigned [io  0xa000-0xafff]
[    4.523905] pci 0000:00:18.2: BAR 13: assigned [io  0xb000-0xbfff]
[    4.523906] pci 0000:00:18.1: BAR 13: assigned [io  0xc000-0xcfff]
[    4.523907] pci 0000:00:18.0: BAR 13: assigned [io  0xd000-0xdfff]
[    4.523908] pci 0000:00:17.7: BAR 13: assigned [io  0xe000-0xefff]
[    4.523909] pci 0000:00:17.6: BAR 13: assigned [io  0xf000-0xffff]
[    4.523910] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    4.523911] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    4.523912] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    4.523912] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    4.523914] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    4.523914] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    4.523916] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    4.523916] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    4.523917] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    4.523918] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    4.523919] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    4.523920] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    4.523921] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    4.523922] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    4.523923] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    4.523924] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    4.523925] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    4.523925] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    4.523927] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    4.523927] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    4.523928] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    4.523929] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    4.523930] pci 0000:00:16.2: BAR 13: no space for [io  size 0x1000]
[    4.523931] pci 0000:00:16.2: BAR 13: failed to assign [io  size 0x1000]
[    4.523932] pci 0000:00:16.1: BAR 13: no space for [io  size 0x1000]
[    4.523933] pci 0000:00:16.1: BAR 13: failed to assign [io  size 0x1000]
[    4.523934] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    4.523935] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    4.523936] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    4.523936] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    4.523938] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    4.523938] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    4.523939] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    4.523940] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    4.523941] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    4.523942] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
[    4.523943] pci 0000:00:15.2: BAR 13: no space for [io  size 0x1000]
[    4.523944] pci 0000:00:15.2: BAR 13: failed to assign [io  size 0x1000]
[    4.523945] pci 0000:00:15.1: BAR 13: no space for [io  size 0x1000]
[    4.523945] pci 0000:00:15.1: BAR 13: failed to assign [io  size 0x1000]
[    4.523947] pci 0000:00:01.0: PCI bridge to [bus 01]
[    4.524010] pci 0000:00:11.0: PCI bridge to [bus 02]
[    4.524017] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    4.524036] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    4.524048] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.524073] pci 0000:03:00.0: BAR 6: assigned [mem 0xfea00000-0xfea0ffff pref]
[    4.524074] pci 0000:00:15.0: PCI bridge to [bus 03]
[    4.524080] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    4.524098] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.524111] pci 0000:00:15.0:   bridge window [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.524134] pci 0000:00:15.1: PCI bridge to [bus 04]
[    4.524153] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.524165] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.524189] pci 0000:00:15.2: PCI bridge to [bus 05]
[    4.524207] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    4.524219] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.524248] pci 0000:00:15.3: PCI bridge to [bus 06]
[    4.524266] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    4.524279] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.524303] pci 0000:00:15.4: PCI bridge to [bus 07]
[    4.524321] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    4.524334] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.524358] pci 0000:00:15.5: PCI bridge to [bus 08]
[    4.524376] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    4.524388] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.524412] pci 0000:00:15.6: PCI bridge to [bus 09]
[    4.524430] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    4.524442] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.524466] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    4.524484] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    4.524496] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.524521] pci 0000:0b:00.0: BAR 6: assigned [mem 0xfe200000-0xfe20ffff pref]
[    4.524522] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    4.524528] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    4.524546] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    4.524558] pci 0000:00:16.0:   bridge window [mem 0xff100000-0xff2fffff 64bit pref]
[    4.524582] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    4.524600] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    4.524613] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.524637] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    4.524655] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    4.524667] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.524691] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    4.524709] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    4.524721] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.524745] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    4.524763] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    4.524775] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.524799] pci 0000:00:16.5: PCI bridge to [bus 10]
[    4.524817] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    4.524829] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.524853] pci 0000:00:16.6: PCI bridge to [bus 11]
[    4.524871] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    4.524884] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.524907] pci 0000:00:16.7: PCI bridge to [bus 12]
[    4.524925] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    4.524938] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.524961] pci 0000:00:17.0: PCI bridge to [bus 13]
[    4.524982] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    4.524994] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.525018] pci 0000:00:17.1: PCI bridge to [bus 14]
[    4.525037] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    4.525049] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.525073] pci 0000:00:17.2: PCI bridge to [bus 15]
[    4.525091] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    4.525103] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.525127] pci 0000:00:17.3: PCI bridge to [bus 16]
[    4.525145] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    4.525157] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.525181] pci 0000:00:17.4: PCI bridge to [bus 17]
[    4.525199] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    4.525211] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.525235] pci 0000:00:17.5: PCI bridge to [bus 18]
[    4.525259] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    4.525271] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.525313] pci 0000:00:17.6: PCI bridge to [bus 19]
[    4.525328] pci 0000:00:17.6:   bridge window [io  0xf000-0xffff]
[    4.525347] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    4.525360] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.525386] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    4.525392] pci 0000:00:17.7:   bridge window [io  0xe000-0xefff]
[    4.525411] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    4.525425] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.525450] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    4.525457] pci 0000:00:18.0:   bridge window [io  0xd000-0xdfff]
[    4.525476] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    4.525489] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.525514] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    4.525521] pci 0000:00:18.1:   bridge window [io  0xc000-0xcfff]
[    4.525540] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    4.525553] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.525578] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    4.525585] pci 0000:00:18.2:   bridge window [io  0xb000-0xbfff]
[    4.525604] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    4.525617] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.525642] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    4.525649] pci 0000:00:18.3:   bridge window [io  0xa000-0xafff]
[    4.525669] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    4.525681] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.525707] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    4.525714] pci 0000:00:18.4:   bridge window [io  0x9000-0x9fff]
[    4.525733] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    4.525746] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.525771] pci 0000:00:18.5: PCI bridge to [bus 20]
[    4.525778] pci 0000:00:18.5:   bridge window [io  0x8000-0x8fff]
[    4.525797] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    4.525810] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.525835] pci 0000:00:18.6: PCI bridge to [bus 21]
[    4.525841] pci 0000:00:18.6:   bridge window [io  0x7000-0x7fff]
[    4.525861] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    4.525873] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.525899] pci 0000:00:18.7: PCI bridge to [bus 22]
[    4.525905] pci 0000:00:18.7:   bridge window [io  0x6000-0x6fff]
[    4.525924] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    4.525937] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.525963] pci_bus 0000:00: resource 4 [io  0x0d00-0xffff window]
[    4.525964] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    4.525965] pci_bus 0000:00: resource 6 [mem 0xfef00000-0xffdfffff window]
[    4.525965] pci_bus 0000:00: resource 7 [mem 0xfed45000-0xfedfffff window]
[    4.525966] pci_bus 0000:00: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    4.525966] pci_bus 0000:00: resource 9 [mem 0xfa300000-0xfebfffff window]
[    4.525967] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    4.525968] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xefffffff window]
[    4.525968] pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
[    4.525969] pci_bus 0000:00: resource 13 [mem 0x000c4000-0x000c7fff window]
[    4.525970] pci_bus 0000:00: resource 14 [mem 0x000c8000-0x000cbfff window]
[    4.525970] pci_bus 0000:00: resource 15 [mem 0x000d4000-0x000d7fff window]
[    4.525971] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000dbfff window]
[    4.525972] pci_bus 0000:00: resource 17 [mem 0x000e4000-0x000e7fff window]
[    4.525972] pci_bus 0000:00: resource 18 [mem 0x000e8000-0x000ebfff window]
[    4.525973] pci_bus 0000:00: resource 19 [mem 0x000ec000-0x000effff window]
[    4.525974] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    4.525974] pci_bus 0000:02: resource 1 [mem 0xfc000000-0xfc9fffff]
[    4.525975] pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.525976] pci_bus 0000:02: resource 4 [io  0x0d00-0xffff window]
[    4.525976] pci_bus 0000:02: resource 5 [io  0x0000-0x0cf7 window]
[    4.525977] pci_bus 0000:02: resource 6 [mem 0xfef00000-0xffdfffff window]
[    4.525978] pci_bus 0000:02: resource 7 [mem 0xfed45000-0xfedfffff window]
[    4.525978] pci_bus 0000:02: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    4.525979] pci_bus 0000:02: resource 9 [mem 0xfa300000-0xfebfffff window]
[    4.525979] pci_bus 0000:02: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    4.525980] pci_bus 0000:02: resource 11 [mem 0xc0000000-0xefffffff window]
[    4.525981] pci_bus 0000:02: resource 12 [mem 0x000a0000-0x000bffff window]
[    4.525981] pci_bus 0000:02: resource 13 [mem 0x000c4000-0x000c7fff window]
[    4.525982] pci_bus 0000:02: resource 14 [mem 0x000c8000-0x000cbfff window]
[    4.525983] pci_bus 0000:02: resource 15 [mem 0x000d4000-0x000d7fff window]
[    4.525983] pci_bus 0000:02: resource 16 [mem 0x000d8000-0x000dbfff window]
[    4.525984] pci_bus 0000:02: resource 17 [mem 0x000e4000-0x000e7fff window]
[    4.525984] pci_bus 0000:02: resource 18 [mem 0x000e8000-0x000ebfff window]
[    4.525985] pci_bus 0000:02: resource 19 [mem 0x000ec000-0x000effff window]
[    4.525986] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    4.525986] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    4.525987] pci_bus 0000:03: resource 2 [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.525988] pci_bus 0000:04: resource 1 [mem 0xfe900000-0xfe9fffff]
[    4.525988] pci_bus 0000:04: resource 2 [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.525989] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]
[    4.525990] pci_bus 0000:05: resource 2 [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.525990] pci_bus 0000:06: resource 1 [mem 0xfe700000-0xfe7fffff]
[    4.525991] pci_bus 0000:06: resource 2 [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.525992] pci_bus 0000:07: resource 1 [mem 0xfe600000-0xfe6fffff]
[    4.525992] pci_bus 0000:07: resource 2 [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.525994] pci_bus 0000:08: resource 1 [mem 0xfe500000-0xfe5fffff]
[    4.525994] pci_bus 0000:08: resource 2 [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.525995] pci_bus 0000:09: resource 1 [mem 0xfe400000-0xfe4fffff]
[    4.525995] pci_bus 0000:09: resource 2 [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.525996] pci_bus 0000:0a: resource 1 [mem 0xfe300000-0xfe3fffff]
[    4.525997] pci_bus 0000:0a: resource 2 [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.525997] pci_bus 0000:0b: resource 0 [io  0x3000-0x3fff]
[    4.525998] pci_bus 0000:0b: resource 1 [mem 0xfe200000-0xfe2fffff]
[    4.525998] pci_bus 0000:0b: resource 2 [mem 0xff100000-0xff2fffff 64bit pref]
[    4.525999] pci_bus 0000:0c: resource 1 [mem 0xfe100000-0xfe1fffff]
[    4.526000] pci_bus 0000:0c: resource 2 [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.526001] pci_bus 0000:0d: resource 1 [mem 0xfe000000-0xfe0fffff]
[    4.526001] pci_bus 0000:0d: resource 2 [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.526002] pci_bus 0000:0e: resource 1 [mem 0xfdf00000-0xfdffffff]
[    4.526003] pci_bus 0000:0e: resource 2 [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.526003] pci_bus 0000:0f: resource 1 [mem 0xfde00000-0xfdefffff]
[    4.526004] pci_bus 0000:0f: resource 2 [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.526005] pci_bus 0000:10: resource 1 [mem 0xfdd00000-0xfddfffff]
[    4.526005] pci_bus 0000:10: resource 2 [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.526006] pci_bus 0000:11: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    4.526007] pci_bus 0000:11: resource 2 [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.526007] pci_bus 0000:12: resource 1 [mem 0xfdb00000-0xfdbfffff]
[    4.526008] pci_bus 0000:12: resource 2 [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.526009] pci_bus 0000:13: resource 1 [mem 0xfda00000-0xfdafffff]
[    4.526009] pci_bus 0000:13: resource 2 [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.526010] pci_bus 0000:14: resource 1 [mem 0xfd900000-0xfd9fffff]
[    4.526011] pci_bus 0000:14: resource 2 [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.526011] pci_bus 0000:15: resource 1 [mem 0xfd800000-0xfd8fffff]
[    4.526012] pci_bus 0000:15: resource 2 [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.526013] pci_bus 0000:16: resource 1 [mem 0xfd700000-0xfd7fffff]
[    4.526013] pci_bus 0000:16: resource 2 [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.526014] pci_bus 0000:17: resource 1 [mem 0xfd600000-0xfd6fffff]
[    4.526014] pci_bus 0000:17: resource 2 [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.526015] pci_bus 0000:18: resource 1 [mem 0xfd500000-0xfd5fffff]
[    4.526016] pci_bus 0000:18: resource 2 [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.526017] pci_bus 0000:19: resource 0 [io  0xf000-0xffff]
[    4.526017] pci_bus 0000:19: resource 1 [mem 0xfd400000-0xfd4fffff]
[    4.526018] pci_bus 0000:19: resource 2 [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.526018] pci_bus 0000:1a: resource 0 [io  0xe000-0xefff]
[    4.526019] pci_bus 0000:1a: resource 1 [mem 0xfd300000-0xfd3fffff]
[    4.526020] pci_bus 0000:1a: resource 2 [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.526020] pci_bus 0000:1b: resource 0 [io  0xd000-0xdfff]
[    4.526021] pci_bus 0000:1b: resource 1 [mem 0xfd200000-0xfd2fffff]
[    4.526021] pci_bus 0000:1b: resource 2 [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.526022] pci_bus 0000:1c: resource 0 [io  0xc000-0xcfff]
[    4.526023] pci_bus 0000:1c: resource 1 [mem 0xfd100000-0xfd1fffff]
[    4.526023] pci_bus 0000:1c: resource 2 [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.526024] pci_bus 0000:1d: resource 0 [io  0xb000-0xbfff]
[    4.526025] pci_bus 0000:1d: resource 1 [mem 0xfd000000-0xfd0fffff]
[    4.526025] pci_bus 0000:1d: resource 2 [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.526026] pci_bus 0000:1e: resource 0 [io  0xa000-0xafff]
[    4.526027] pci_bus 0000:1e: resource 1 [mem 0xfcf00000-0xfcffffff]
[    4.526027] pci_bus 0000:1e: resource 2 [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.526028] pci_bus 0000:1f: resource 0 [io  0x9000-0x9fff]
[    4.526029] pci_bus 0000:1f: resource 1 [mem 0xfce00000-0xfcefffff]
[    4.526029] pci_bus 0000:1f: resource 2 [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.526030] pci_bus 0000:20: resource 0 [io  0x8000-0x8fff]
[    4.526030] pci_bus 0000:20: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    4.526031] pci_bus 0000:20: resource 2 [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.526032] pci_bus 0000:21: resource 0 [io  0x7000-0x7fff]
[    4.526032] pci_bus 0000:21: resource 1 [mem 0xfcc00000-0xfccfffff]
[    4.526033] pci_bus 0000:21: resource 2 [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.526034] pci_bus 0000:22: resource 0 [io  0x6000-0x6fff]
[    4.526034] pci_bus 0000:22: resource 1 [mem 0xfcb00000-0xfcbfffff]
[    4.526035] pci_bus 0000:22: resource 2 [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.526093] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    4.526159] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.526410] PCI: CLS 32 bytes, default 64
[    4.526438] Trying to unpack rootfs image as initramfs...
[    5.497969] Freeing initrd memory: 77368K
[    5.497979] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    5.497981] software IO TLB: mapped [mem 0x00000000bc000000-0x00000000c0000000] (64MB)
[    5.533962] Initialise system trusted keyrings
[    5.533967] Key type blacklist registered
[    5.534250] workingset: timestamp_bits=36 max_order=28 bucket_order=0
[    5.535788] zbud: loaded
[    5.538682] integrity: Platform Keyring initialized
[    5.547023] NET: Registered protocol family 38
[    5.547026] Key type asymmetric registered
[    5.547027] Asymmetric key parser 'x509' registered
[    5.547034] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    5.547654] io scheduler mq-deadline registered
[    5.547655] io scheduler kyber registered
[    5.547687] io scheduler bfq registered
[    5.550348] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    5.550893] pcieport 0000:00:15.0: PME: Signaling with IRQ 24
[    5.550969] pcieport 0000:00:15.0: pciehp: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.551769] pcieport 0000:00:15.1: PME: Signaling with IRQ 25
[    5.551839] pcieport 0000:00:15.1: pciehp: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.552644] pcieport 0000:00:15.2: PME: Signaling with IRQ 26
[    5.552713] pcieport 0000:00:15.2: pciehp: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.553494] pcieport 0000:00:15.3: PME: Signaling with IRQ 27
[    5.553564] pcieport 0000:00:15.3: pciehp: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.554351] pcieport 0000:00:15.4: PME: Signaling with IRQ 28
[    5.554419] pcieport 0000:00:15.4: pciehp: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.555204] pcieport 0000:00:15.5: PME: Signaling with IRQ 29
[    5.555278] pcieport 0000:00:15.5: pciehp: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.556046] pcieport 0000:00:15.6: PME: Signaling with IRQ 30
[    5.556111] pcieport 0000:00:15.6: pciehp: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.556873] pcieport 0000:00:15.7: PME: Signaling with IRQ 31
[    5.556939] pcieport 0000:00:15.7: pciehp: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.557699] pcieport 0000:00:16.0: PME: Signaling with IRQ 32
[    5.557765] pcieport 0000:00:16.0: pciehp: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.558505] pcieport 0000:00:16.1: PME: Signaling with IRQ 33
[    5.558566] pcieport 0000:00:16.1: pciehp: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.559335] pcieport 0000:00:16.2: PME: Signaling with IRQ 34
[    5.559397] pcieport 0000:00:16.2: pciehp: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.560110] pcieport 0000:00:16.3: PME: Signaling with IRQ 35
[    5.560172] pcieport 0000:00:16.3: pciehp: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.560895] pcieport 0000:00:16.4: PME: Signaling with IRQ 36
[    5.560956] pcieport 0000:00:16.4: pciehp: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.561673] pcieport 0000:00:16.5: PME: Signaling with IRQ 37
[    5.561729] pcieport 0000:00:16.5: pciehp: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.562393] pcieport 0000:00:16.6: PME: Signaling with IRQ 38
[    5.562450] pcieport 0000:00:16.6: pciehp: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.563151] pcieport 0000:00:16.7: PME: Signaling with IRQ 39
[    5.563209] pcieport 0000:00:16.7: pciehp: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.563917] pcieport 0000:00:17.0: PME: Signaling with IRQ 40
[    5.563977] pcieport 0000:00:17.0: pciehp: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.564647] pcieport 0000:00:17.1: PME: Signaling with IRQ 41
[    5.564702] pcieport 0000:00:17.1: pciehp: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.565396] pcieport 0000:00:17.2: PME: Signaling with IRQ 42
[    5.565452] pcieport 0000:00:17.2: pciehp: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.566058] pcieport 0000:00:17.3: PME: Signaling with IRQ 43
[    5.566112] pcieport 0000:00:17.3: pciehp: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.566772] pcieport 0000:00:17.4: PME: Signaling with IRQ 44
[    5.566826] pcieport 0000:00:17.4: pciehp: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.567474] pcieport 0000:00:17.5: PME: Signaling with IRQ 45
[    5.567528] pcieport 0000:00:17.5: pciehp: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.568788] pcieport 0000:00:17.6: PME: Signaling with IRQ 46
[    5.568842] pcieport 0000:00:17.6: pciehp: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.569501] pcieport 0000:00:17.7: PME: Signaling with IRQ 47
[    5.569562] pcieport 0000:00:17.7: pciehp: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.570249] pcieport 0000:00:18.0: PME: Signaling with IRQ 48
[    5.570304] pcieport 0000:00:18.0: pciehp: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.570955] pcieport 0000:00:18.1: PME: Signaling with IRQ 49
[    5.571007] pcieport 0000:00:18.1: pciehp: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.571650] pcieport 0000:00:18.2: PME: Signaling with IRQ 50
[    5.571703] pcieport 0000:00:18.2: pciehp: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.572377] pcieport 0000:00:18.3: PME: Signaling with IRQ 51
[    5.572427] pcieport 0000:00:18.3: pciehp: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.573145] pcieport 0000:00:18.4: PME: Signaling with IRQ 52
[    5.573195] pcieport 0000:00:18.4: pciehp: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.573843] pcieport 0000:00:18.5: PME: Signaling with IRQ 53
[    5.573893] pcieport 0000:00:18.5: pciehp: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.574474] pcieport 0000:00:18.6: PME: Signaling with IRQ 54
[    5.574525] pcieport 0000:00:18.6: pciehp: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.575085] pcieport 0000:00:18.7: PME: Signaling with IRQ 55
[    5.575138] pcieport 0000:00:18.7: pciehp: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.575556] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    5.575583] efifb: probing for efifb
[    5.575879] efifb: framebuffer at 0xf0000000, using 3072k, total 3072k
[    5.575880] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    5.575880] efifb: scrolling: redraw
[    5.575882] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    5.576013] Console: switching to colour frame buffer device 128x48
[    5.578868] fb0: EFI VGA frame buffer device
[    5.578878] intel_idle: Please enable MWAIT in BIOS SETUP
[    5.579146] ACPI: AC Adapter [ACAD] (on-line)
[    5.579225] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    5.579291] ACPI: Power Button [PWRF]
[    5.605324] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    5.606005] Non-volatile memory driver v1.3
[    5.619601] rdac: device handler registered
[    5.619673] hp_sw: device handler registered
[    5.619674] emc: device handler registered
[    5.620272] alua: device handler registered
[    5.620393] libphy: Fixed MDIO Bus: probed
[    5.620481] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.620484] ehci-pci: EHCI PCI platform driver
[    5.620495] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.620497] ohci-pci: OHCI PCI platform driver
[    5.620507] uhci_hcd: USB Universal Host Controller Interface driver
[    5.620567] usbcore: registered new interface driver usbserial_generic
[    5.620571] usbserial: USB Serial support registered for generic
[    5.620627] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    5.622908] serio: i8042 KBD port at 0x60,0x64 irq 1
[    5.622913] serio: i8042 AUX port at 0x60,0x64 irq 12
[    5.623038] mousedev: PS/2 mouse device common for all mice
[    5.643723] rtc_cmos 00:01: registered as rtc0
[    5.643968] rtc_cmos 00:01: setting system clock to 2020-11-24T07:10:10 UTC (1606201810)
[    5.644029] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    5.644037] intel_pstate: CPU model not supported
[    5.644646] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    5.645263] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    5.645391] EFI Variables Facility v0.08 2004-May-17
[    5.645545] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    5.651277] hid: raw HID events driver (C) Jiri Kosina
[    5.651348] usbcore: registered new interface driver usbhid
[    5.651349] usbhid: USB HID core driver
[    5.651847] drop_monitor: Initializing network drop monitor service
[    5.651934] Initializing XFRM netlink socket
[    5.652116] NET: Registered protocol family 10
[    5.652948] Segment Routing with IPv6
[    5.652963] NET: Registered protocol family 17
[    5.653021] mpls_gso: MPLS GSO support
[    5.660409] IPI shorthand broadcast: enabled
[    5.660422] AVX2 version of gcm_enc/dec engaged.
[    5.660424] AES CTR mode by8 optimization enabled
[    5.674820] sched_clock: Marking stable (5663629829, 11187470)->(5864153475, -189336176)
[    5.675599] registered taskstats version 1
[    5.675620] Loading compiled-in X.509 certificates
[    5.703838] Loaded X.509 cert 'Build time autogenerated kernel key: ff190f449e6154aa6c52fbce112818ad4b5cdfa1'
[    5.703924] zswap: loaded using pool lzo/zbud
[    5.707553] Key type encrypted registered
[    5.708123] integrity: Loading X.509 certificate: UEFI:db
[    5.708253] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    5.708254] integrity: Loading X.509 certificate: UEFI:db
[    5.708425] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    5.708426] integrity: Loading X.509 certificate: UEFI:db
[    5.708441] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    5.708442] integrity: Loading X.509 certificate: UEFI:db
[    5.708456] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    5.709338] integrity: Loading X.509 certificate: UEFI:MokListRT
[    5.709565] integrity: Loaded X.509 cert 'Red Hat Secure Boot (CA key 1): 4016841644ce3a810408050766e8f8a29c65f85c'
[    5.709567] ima: No TPM chip found, activating TPM-bypass!
[    5.709571] ima: Allocated hash algorithm: sha1
[    5.709576] ima: No architecture policies found
[    5.709598] evm: Initialising EVM extended attributes:
[    5.709599] evm: security.selinux
[    5.709600] evm: security.ima
[    5.709601] evm: security.capability
[    5.709601] evm: HMAC attrs: 0x1
[    5.715962] Freeing unused decrypted memory: 2036K
[    5.717142] Freeing unused kernel image (initmem) memory: 2356K
[    5.725287] Write protecting the kernel read-only data: 20480k
[    5.726818] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    5.727937] Freeing unused kernel image (rodata/data gap) memory: 1732K
[    5.728062] Run /init as init process
[    5.728064]   with arguments:
[    5.728065]     /init
[    5.728065]     rhgb
[    5.728066]   with environment:
[    5.728067]     HOME=/
[    5.728067]     TERM=linux
[    5.728068]     BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3
[    5.728069]     crashkernel=auto
[    5.754470] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    5.754497] systemd[1]: Detected virtualization vmware.
[    5.754500] systemd[1]: Detected architecture x86-64.
[    5.754502] systemd[1]: Running in initial RAM disk.
[    5.765194] systemd[1]: Set hostname to <localhost.localdomain>.
[    5.814298] random: systemd: uninitialized urandom read (16 bytes read)
[    5.814309] systemd[1]: Reached target Slices.
[    5.814343] random: systemd: uninitialized urandom read (16 bytes read)
[    5.814348] systemd[1]: Reached target Local File Systems.
[    5.814355] random: systemd: uninitialized urandom read (16 bytes read)
[    5.814360] systemd[1]: Reached target Timers.
[    5.814447] systemd[1]: Listening on udev Control Socket.
[    5.814521] systemd[1]: Listening on Journal Socket.
[    6.333077] VMware PVSCSI driver - version 1.0.7.0-k
[    6.333126] VMware vmxnet3 virtual NIC driver - version 1.5.0.0-k-NAPI
[    6.333167] vmxnet3 0000:0b:00.0: # of Tx queues : 8, # of Rx queues : 8
[    6.333218] vmxnet3 0000:0b:00.0: enabling device (0000 -> 0003)
[    6.338659] vmw_pvscsi: using 64bit dma
[    6.338829] vmw_pvscsi: max_id: 65
[    6.338831] vmw_pvscsi: setting ring_pages to 32
[    6.340259] vmw_pvscsi: enabling reqCallThreshold
[    6.342966] vmw_pvscsi: driver-based request coalescing enabled
[    6.342967] vmw_pvscsi: using MSI-X
[    6.343337] scsi host0: VMware PVSCSI storage adapter rev 2, req/cmp/msg rings: 32/32/1 pages, cmd_per_lun=254
[    6.343943] vmw_pvscsi 0000:03:00.0: VMware PVSCSI rev 2 host #0
[    6.344054] vmxnet3 0000:0b:00.0 eth0: NIC Link is Up 10000 Mbps
[    6.344205] scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     2.0  PQ: 0 ANSI: 6
[    6.361035] libata version 3.00 loaded.
[    6.367349] ata_piix 0000:00:07.1: version 2.13
[    6.368604] scsi host1: ata_piix
[    6.368854] scsi host2: ata_piix
[    6.368899] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x2050 irq 14
[    6.368901] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x2058 irq 15
[    6.514281] tsc: Refined TSC clocksource calibration: 2095.081 MHz
[    6.514373] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e3309d7adc, max_idle_ns: 440795300192 ns
[    6.549592] clocksource: Switched to clocksource tsc
[    6.600032] [drm] DMA map mode: Caching DMA mappings.
[    6.600280] [drm] Capabilities:
[    6.600280] [drm]   Rect copy.
[    6.600281] [drm]   Cursor.
[    6.600282] [drm]   Cursor bypass.
[    6.600283] [drm]   Cursor bypass 2.
[    6.600283] [drm]   8bit emulation.
[    6.600284] [drm]   Alpha cursor.
[    6.600284] [drm]   Extended Fifo.
[    6.600285] [drm]   Multimon.
[    6.600285] [drm]   Pitchlock.
[    6.600286] [drm]   Irq mask.
[    6.600286] [drm]   Display Topology.
[    6.600287] [drm]   GMR.
[    6.600287] [drm]   Traces.
[    6.600288] [drm]   GMR2.
[    6.600289] [drm]   Screen Object 2.
[    6.600289] [drm]   Command Buffers.
[    6.600289] [drm]   Command Buffers 2.
[    6.600290] [drm]   Guest Backed Resources.
[    6.600291] [drm]   DX Features.
[    6.600291] [drm]   HP Command Queue.
[    6.600292] [drm] Capabilities2:
[    6.600292] [drm]   Grow oTable.
[    6.600293] [drm]   IntraSurface copy.
[    6.600294] [drm] Max GMR ids is 64
[    6.600294] [drm] Max number of GMR pages is 65536
[    6.600295] [drm] Max dedicated hypervisor surface memory is 0 kiB
[    6.600296] [drm] Maximum display memory size is 8192 kiB
[    6.600297] [drm] VRAM at 0xf0000000 size is 8192 kiB
[    6.600297] [drm] MMIO at 0xfb800000 size is 256 kiB
[    6.600336] vmwgfx 0000:00:0f.0: BAR 1: can't reserve [mem 0xf0000000-0xf7ffffff pref]
[    6.600337] [drm] It appears like vesafb is loaded. Ignore above error if any.
[    6.601115] [TTM] Zone  kernel: Available graphics memory: 528423274 KiB
[    6.601117] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    6.601119] [TTM] Initializing pool allocator
[    6.601124] [TTM] Initializing DMA pool allocator
[    6.603511] [drm] Screen Target Display device initialized
[    6.603566] [drm] width 1024
[    6.603571] [drm] height 768
[    6.603577] [drm] bpp 32
[    6.607672] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
[    6.610949] [drm] Using command buffers with DMA pool.
[    6.611069] [drm] Atomic: yes.
[    6.623673] checking generic (f0000000 300000) vs hw (f0000000 800000)
[    6.623676] fb0: switching to svgadrmfb from EFI VGA
[    6.623800] Console: switching to colour dummy device 80x25
[    6.627603] fbcon: svgadrmfb (fb0) is primary device
[    6.628884] Console: switching to colour frame buffer device 128x48
[    6.634619] [drm] Initialized vmwgfx 2.18.0 20200114 for 0000:00:0f.0 on minor 0
[    6.689730] vmxnet3 0000:0b:00.0 ens192: renamed from eth0
[    6.703940] sd 0:0:0:0: [sda] 41943040 512-byte logical blocks: (21.5 GB/20.0 GiB)
[    6.703970] sd 0:0:0:0: [sda] Write Protect is off
[    6.703972] sd 0:0:0:0: [sda] Mode Sense: 61 00 00 00
[    6.704002] sd 0:0:0:0: [sda] Cache data unavailable
[    6.704004] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    6.718061]  sda: sda1 sda2
[    6.719290] sd 0:0:0:0: [sda] Attached SCSI disk
[    6.845731] random: fast init done
[    7.011044] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    7.107414] random: crng init done
[    7.107417] random: 7 urandom warning(s) missed due to ratelimiting
[    7.312292] systemd-journald[780]: Received SIGTERM from PID 1 (systemd).
[    7.343615] printk: systemd: 22 output lines suppressed due to ratelimiting
[    7.398437] SELinux:  Runtime disable is deprecated, use selinux=0 on the kernel cmdline.
[    7.398468] SELinux:  Disabled at runtime.
[    7.432425] audit: type=1404 audit(1606201812.287:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1
[    7.454357] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    7.454376] systemd[1]: Detected virtualization vmware.
[    7.454380] systemd[1]: Detected architecture x86-64.
[    7.455007] systemd[1]: Set hostname to <localhost.localdomain>.
[    7.502013] systemd[1]: Configuration file /usr/lib/systemd/system/rc-local.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    7.550750] systemd[1]: Stopped Switch Root.
[    7.550964] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[    7.551012] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    7.551022] systemd[1]: Stopped Journal Service.
[    7.551836] systemd[1]: Starting Journal Service...
[    7.573795] EXT4-fs (sda2): re-mounted. Opts: (null)
[    7.771007] systemd-journald[4310]: Received request to flush runtime journal from PID 1
[    7.923988] vmw_vmci 0000:00:07.7: enabling device (0000 -> 0003)
[    7.926317] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x12000, irq 16
[    7.926405] vmw_vmci 0000:00:07.7: Using capabilities 0x1c
[    7.928093] Guest personality initialized and is active
[    7.928677] VMCI host device registered (name=vmci, major=10, minor=61)
[    7.928678] Initialized host personality
[    7.944289] piix4_smbus 0000:00:07.3: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
[    7.945842] NET: Registered protocol family 40
[    7.956766] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    8.030483] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    8.176433] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    8.285763] vmxnet3 0000:0b:00.0 ens192: intr type 3, mode 0, 9 vectors allocated
[    8.286677] vmxnet3 0000:0b:00.0 ens192: NIC Link is Up 10000 Mbps

[-- Attachment #3: vanilla-dmesg.log --]
[-- Type: application/octet-stream, Size: 140695 bytes --]

[    0.000000] Linux version 5.10.0-rc3 (root@w1-hs1-mwenig-dhcp-175.eng.vmware.com) (gcc (GCC) 8.3.1 20190507 (Red Hat 8.3.1-4), GNU ld version 2.30-58.el8) #1 SMP Tue Nov 24 01:58:07 EST 2020
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    0.000000] Disabled fast string operations
[    0.000000] ------------[ cut here ]------------
[    0.000000] XSAVE consistency problem, dumping leaves
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/fpu/xstate.c:657 fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.10.0-rc3 #1
[    0.000000] RIP: 0010:fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Code: 85 7c fd ff ff 44 3b 35 f1 55 22 00 74 2c 80 3d 6c 78 bc ff 00 75 15 48 c7 c7 a8 8c ae 98 c6 05 5c 78 bc ff 01 e8 e2 15 b9 fe <0f> 0b 83 3d 9a b9 68 ff 00 74 05 e8 40 d0 b8 fe 48 8b 35 0c b4 bf
[    0.000000] RSP: 0000:ffffffff98e03e60 EFLAGS: 00010086 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: 0000000000000a88 RCX: 0000000000000000
[    0.000000] RDX: ffffffff98e03c70 RSI: 00000000ffff7fff RDI: ffffffff99a2cecc
[    0.000000] RBP: 0000000000000010 R08: 0000000000000000 R09: c0000000ffff7fff
[    0.000000] R10: 0000000000000001 R11: ffffffff98e03c68 R12: 0000000000000a88
[    0.000000] R13: 0000000000000008 R14: 0000000000000988 R15: 0000000000000001
[    0.000000] FS:  0000000000000000(0000) GS:ffffffff9975f000(0000) knlGS:0000000000000000
[    0.000000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: ffff88800e0b0000 CR3: 00000023c6ff6000 CR4: 00000000000406a0
[    0.000000] Call Trace:
[    0.000000]  ? 0xffffffff97a00000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xc2/0xcb
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.10.0-rc3 #1
[    0.000000] Call Trace:
[    0.000000]  ? dump_stack+0x57/0x6a
[    0.000000]  ? __warn.cold.14+0xe/0x3d
[    0.000000]  ? fpu__init_system_xstate+0x415/0x8d3
[    0.000000]  ? report_bug+0xc0/0xf0
[    0.000000]  ? early_fixup_exception+0x59/0xa6
[    0.000000]  ? early_idt_handler_common+0x2f/0x3a
[    0.000000]  ? fpu__init_system_xstate+0x415/0x8d3
[    0.000000]  ? 0xffffffff97a00000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xc2/0xcb
[    0.000000] random: get_random_bytes called from print_oops_end_marker+0x26/0x40 with crng_init=0
[    0.000000] ---[ end trace a1276b213ef11ee0 ]---
[    0.000000] CPUID[0d, 00]: eax=000002e7 ebx=00000a88 ecx=00000a88 edx=00000000
[    0.000000] CPUID[0d, 01]: eax=0000000f ebx=00000a88 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 02]: eax=00000100 ebx=00000240 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 03]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 04]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 05]: eax=00000040 ebx=00000440 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 06]: eax=00000200 ebx=00000480 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 07]: eax=00000400 ebx=00000680 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 08]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 09]: eax=00000008 ebx=00000a80 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0d]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0e]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0f]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 10]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 11]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 12]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 13]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 14]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 15]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 16]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 17]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 18]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 19]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2696 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000ef23fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000e0a1017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a1018-0x000000000e0a2857] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a2858-0x000000000e0a3017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a3018-0x000000000e0a5057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a5058-0x000000000e0a6017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a6018-0x000000000e0ae057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0ae058-0x000000000ef23fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] efi: EFI v2.31 by VMware, Inc.
[    0.000000] efi: SMBIOS=0xef42000 ACPI 2.0=0xff66000 MEMATTR=0xfda1018 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.000000] vmware: hypercall mode: 0x02
[    0.000000] Hypervisor detected: VMware
[    0.000000] vmware: TSC freq read from hypervisor : 2095.078 MHz
[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[    0.000000] vmware: using clock offset of 7290169876 ns
[    0.000011] tsc: Detected 2095.078 MHz processor
[    0.002145] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.002147] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.002152] last_pfn = 0x10340000 max_arch_pfn = 0x400000000
[    0.002186] MTRR default type: uncachable
[    0.002186] MTRR fixed ranges enabled:
[    0.002187]   00000-9FFFF write-back
[    0.002188]   A0000-FFFFF uncachable
[    0.002188] MTRR variable ranges enabled:
[    0.002189]   0 base 000000000000 mask 1E0000000000 write-back
[    0.002190]   1 base 0000C0000000 mask 1FFFC0000000 uncachable
[    0.002191]   2 disabled
[    0.002191]   3 disabled
[    0.002192]   4 disabled
[    0.002192]   5 disabled
[    0.002193]   6 disabled
[    0.002193]   7 disabled
[    0.002204] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002224] total RAM covered: 2096128M
[    0.002280]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002281]  gran_size: 64K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002282]  gran_size: 64K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002283]  gran_size: 64K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002284]  gran_size: 64K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002285]  gran_size: 64K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002286]  gran_size: 64K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002287]  gran_size: 64K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002288]  gran_size: 64K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002289]  gran_size: 64K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002290]  gran_size: 64K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002290]  gran_size: 64K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002291]  gran_size: 64K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002292]  gran_size: 64K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002293]  gran_size: 64K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002294]  gran_size: 64K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002295]  gran_size: 128K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002295]  gran_size: 128K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002296]  gran_size: 128K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002297]  gran_size: 128K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002298]  gran_size: 128K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002299]  gran_size: 128K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002300]  gran_size: 128K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002301]  gran_size: 128K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002301]  gran_size: 128K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002302]  gran_size: 128K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002303]  gran_size: 128K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002304]  gran_size: 128K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002305]  gran_size: 128K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002306]  gran_size: 128K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002306]  gran_size: 128K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002307]  gran_size: 256K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002308]  gran_size: 256K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002309]  gran_size: 256K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002310]  gran_size: 256K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002311]  gran_size: 256K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002311]  gran_size: 256K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002312]  gran_size: 256K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002313]  gran_size: 256K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002314]  gran_size: 256K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002315]  gran_size: 256K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002316]  gran_size: 256K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002316]  gran_size: 256K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002317]  gran_size: 256K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002318]  gran_size: 256K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002319]  gran_size: 512K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002320]  gran_size: 512K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002321]  gran_size: 512K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002322]  gran_size: 512K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002323]  gran_size: 512K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002324]  gran_size: 512K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002325]  gran_size: 512K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002326]  gran_size: 512K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002327]  gran_size: 512K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002327]  gran_size: 512K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002328]  gran_size: 512K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002329]  gran_size: 512K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002330]  gran_size: 512K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002331]  gran_size: 1M 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002332]  gran_size: 1M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002333]  gran_size: 1M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002333]  gran_size: 1M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002334]  gran_size: 1M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002335]  gran_size: 1M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002336]  gran_size: 1M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002337]  gran_size: 1M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002338]  gran_size: 1M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002338]  gran_size: 1M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002339]  gran_size: 1M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002340]  gran_size: 1M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002341]  gran_size: 2M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002342]  gran_size: 2M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002343]  gran_size: 2M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002343]  gran_size: 2M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002344]  gran_size: 2M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002345]  gran_size: 2M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002346]  gran_size: 2M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002347]  gran_size: 2M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002348]  gran_size: 2M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002348]  gran_size: 2M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002349]  gran_size: 2M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002350]  gran_size: 4M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002351]  gran_size: 4M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002352]  gran_size: 4M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002353]  gran_size: 4M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002353]  gran_size: 4M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002354]  gran_size: 4M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002355]  gran_size: 4M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002356]  gran_size: 4M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002357]  gran_size: 4M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002358]  gran_size: 4M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002358]  gran_size: 8M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002359]  gran_size: 8M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002360]  gran_size: 8M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002361]  gran_size: 8M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002362]  gran_size: 8M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002363]  gran_size: 8M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002364]  gran_size: 8M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002365]  gran_size: 8M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002366]  gran_size: 8M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002367]  gran_size: 16M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002368]  gran_size: 16M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002369]  gran_size: 16M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002370]  gran_size: 16M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002370]  gran_size: 16M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002371]  gran_size: 16M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002372]  gran_size: 16M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002373]  gran_size: 16M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002374]  gran_size: 32M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002375]  gran_size: 32M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002375]  gran_size: 32M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002376]  gran_size: 32M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002377]  gran_size: 32M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002378]  gran_size: 32M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002379]  gran_size: 32M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002380]  gran_size: 64M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002381]  gran_size: 64M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002381]  gran_size: 64M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002382]  gran_size: 64M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002383]  gran_size: 64M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002384]  gran_size: 64M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002385]  gran_size: 128M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002386]  gran_size: 128M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002386]  gran_size: 128M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002387]  gran_size: 128M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002388]  gran_size: 128M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002389]  gran_size: 256M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002390]  gran_size: 256M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002391]  gran_size: 256M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002392]  gran_size: 256M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002392]  gran_size: 512M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002393]  gran_size: 512M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002394]  gran_size: 512M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002395]  gran_size: 1G 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002396]  gran_size: 1G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002397]  gran_size: 2G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1537G
[    0.002397] mtrr_cleanup: can not find optimal value
[    0.002398] please specify mtrr_gran_size/mtrr_chunk_size
[    0.002409] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.002413] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
[    0.007907] kexec: Reserving the low 1M of memory for crashkernel
[    0.007926] Using GB pages for direct mapping
[    0.008464] Secure boot disabled
[    0.008464] RAMDISK: [mem 0x05df8000-0x0a985fff]
[    0.008477] ACPI: Early table checksum verification disabled
[    0.008480] ACPI: RSDP 0x000000000FF66000 000024 (v02 VMWARE)
[    0.008483] ACPI: XSDT 0x000000000FF66064 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.008486] ACPI: SRAT 0x000000000FF660C0 000660 (v03 VMWARE EFISRAT  06040001 VMW  000007CE)
[    0.008489] ACPI: FACP 0x000000000FF7252C 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.008493] ACPI: DSDT 0x000000000FF66720 00BE0C (v01 PTLTD  Custom   00000000 INTL 20130823)
[    0.008495] ACPI: FACS 0x000000000FF76000 000040
[    0.008497] ACPI: FACS 0x000000000FF76000 000040
[    0.008499] ACPI: APIC 0x000000000FF72694 0004DA (v03 VMWARE EFIAPIC  06040001 VMW  000007CE)
[    0.008501] ACPI: MCFG 0x000000000FF72B6E 00003C (v01 VMWARE EFIMCFG  06040001 VMW  000007CE)
[    0.008503] ACPI: HPET 0x000000000FF72BAA 000038 (v01 VMWARE VMW HPET 00000000 VMW  00000000)
[    0.008505] ACPI: WAET 0x000000000FF72BE2 000028 (v01 VMWARE VMW WAET 06040001 VMW  00000001)
[    0.008507] ACPI: WSMT 0x000000000FF72C0A 000028 (v01 VMWARE VMW WSMT 06040001 VMW  00000001)
[    0.008512] ACPI: Local APIC address 0xfee00000
[    0.008545] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.008547] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.008548] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.008549] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.008550] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.008551] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.008552] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.008552] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.008554] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.008555] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.008556] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.008557] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.008558] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.008559] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.008560] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.008561] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[    0.008562] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.008563] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.008564] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.008565] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.008565] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.008566] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.008566] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[    0.008566] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[    0.008567] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[    0.008567] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.008568] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.008568] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.008569] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.008570] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.008570] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[    0.008571] SRAT: PXM 1 -> APIC 0x3e -> Node 1
[    0.008571] SRAT: PXM 1 -> APIC 0x40 -> Node 1
[    0.008572] SRAT: PXM 1 -> APIC 0x42 -> Node 1
[    0.008573] SRAT: PXM 1 -> APIC 0x44 -> Node 1
[    0.008573] SRAT: PXM 1 -> APIC 0x46 -> Node 1
[    0.008574] SRAT: PXM 1 -> APIC 0x48 -> Node 1
[    0.008574] SRAT: PXM 1 -> APIC 0x4a -> Node 1
[    0.008575] SRAT: PXM 1 -> APIC 0x4c -> Node 1
[    0.008575] SRAT: PXM 1 -> APIC 0x4e -> Node 1
[    0.008576] SRAT: PXM 1 -> APIC 0x50 -> Node 1
[    0.008576] SRAT: PXM 1 -> APIC 0x52 -> Node 1
[    0.008576] SRAT: PXM 1 -> APIC 0x54 -> Node 1
[    0.008577] SRAT: PXM 1 -> APIC 0x56 -> Node 1
[    0.008577] SRAT: PXM 1 -> APIC 0x58 -> Node 1
[    0.008578] SRAT: PXM 1 -> APIC 0x5a -> Node 1
[    0.008578] SRAT: PXM 1 -> APIC 0x5c -> Node 1
[    0.008579] SRAT: PXM 1 -> APIC 0x5e -> Node 1
[    0.008579] SRAT: PXM 1 -> APIC 0x60 -> Node 1
[    0.008580] SRAT: PXM 1 -> APIC 0x62 -> Node 1
[    0.008580] SRAT: PXM 1 -> APIC 0x64 -> Node 1
[    0.008581] SRAT: PXM 1 -> APIC 0x66 -> Node 1
[    0.008581] SRAT: PXM 1 -> APIC 0x68 -> Node 1
[    0.008582] SRAT: PXM 1 -> APIC 0x6a -> Node 1
[    0.008582] SRAT: PXM 1 -> APIC 0x6c -> Node 1
[    0.008583] SRAT: PXM 1 -> APIC 0x6e -> Node 1
[    0.008583] SRAT: PXM 2 -> APIC 0x70 -> Node 2
[    0.008584] SRAT: PXM 2 -> APIC 0x72 -> Node 2
[    0.008584] SRAT: PXM 2 -> APIC 0x74 -> Node 2
[    0.008585] SRAT: PXM 2 -> APIC 0x76 -> Node 2
[    0.008585] SRAT: PXM 2 -> APIC 0x78 -> Node 2
[    0.008586] SRAT: PXM 2 -> APIC 0x7a -> Node 2
[    0.008586] SRAT: PXM 2 -> APIC 0x7c -> Node 2
[    0.008587] SRAT: PXM 2 -> APIC 0x7e -> Node 2
[    0.008587] SRAT: PXM 2 -> APIC 0x80 -> Node 2
[    0.008588] SRAT: PXM 2 -> APIC 0x82 -> Node 2
[    0.008588] SRAT: PXM 2 -> APIC 0x84 -> Node 2
[    0.008589] SRAT: PXM 2 -> APIC 0x86 -> Node 2
[    0.008589] SRAT: PXM 2 -> APIC 0x88 -> Node 2
[    0.008590] SRAT: PXM 2 -> APIC 0x8a -> Node 2
[    0.008590] SRAT: PXM 2 -> APIC 0x8c -> Node 2
[    0.008590] SRAT: PXM 2 -> APIC 0x8e -> Node 2
[    0.008591] SRAT: PXM 2 -> APIC 0x90 -> Node 2
[    0.008591] SRAT: PXM 2 -> APIC 0x92 -> Node 2
[    0.008592] SRAT: PXM 2 -> APIC 0x94 -> Node 2
[    0.008593] SRAT: PXM 2 -> APIC 0x96 -> Node 2
[    0.008593] SRAT: PXM 2 -> APIC 0x98 -> Node 2
[    0.008594] SRAT: PXM 2 -> APIC 0x9a -> Node 2
[    0.008594] SRAT: PXM 2 -> APIC 0x9c -> Node 2
[    0.008595] SRAT: PXM 2 -> APIC 0x9e -> Node 2
[    0.008595] SRAT: PXM 2 -> APIC 0xa0 -> Node 2
[    0.008596] SRAT: PXM 2 -> APIC 0xa2 -> Node 2
[    0.008597] SRAT: PXM 2 -> APIC 0xa4 -> Node 2
[    0.008597] SRAT: PXM 2 -> APIC 0xa6 -> Node 2
[    0.008599] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.008600] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[    0.008601] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x55ffffffff]
[    0.008602] ACPI: SRAT: Node 1 PXM 1 [mem 0x5600000000-0xaaffffffff]
[    0.008602] ACPI: SRAT: Node 2 PXM 2 [mem 0xab00000000-0xfcffffffff]
[    0.008603] ACPI: SRAT: Node 2 PXM 2 [mem 0x10000000000-0x1033fffffff]
[    0.008604] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xbfffffff] -> [mem 0x00000000-0xbfffffff]
[    0.008605] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x55ffffffff] -> [mem 0x00000000-0x55ffffffff]
[    0.008606] NUMA: Node 2 [mem 0xab00000000-0xfcffffffff] + [mem 0x10000000000-0x1033fffffff] -> [mem 0xab00000000-0x1033fffffff]
[    0.008614] NODE_DATA(0) allocated [mem 0x55fffd6000-0x55ffffffff]
[    0.008993] NODE_DATA(1) allocated [mem 0xaafffd6000-0xaaffffffff]
[    0.009634] NODE_DATA(2) allocated [mem 0x1033ffd6000-0x1033fffffff]
[    0.010345] crashkernel: memory value expected
[    0.011040] Zone ranges:
[    0.011040]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.011041]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.011042]   Normal   [mem 0x0000000100000000-0x000001033fffffff]
[    0.011043]   Device   empty
[    0.011044] Movable zone start for each node
[    0.011046] Early memory node ranges
[    0.011047]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.011048]   node   0: [mem 0x0000000000100000-0x000000000ef23fff]
[    0.011049]   node   0: [mem 0x000000000ef2d000-0x000000000ef3bfff]
[    0.011049]   node   0: [mem 0x000000000ef48000-0x000000000ef60fff]
[    0.011050]   node   0: [mem 0x000000000ef66000-0x000000000fee6fff]
[    0.011050]   node   0: [mem 0x000000000ff77000-0x00000000bfffffff]
[    0.011051]   node   0: [mem 0x0000000100000000-0x00000055ffffffff]
[    0.011081]   node   1: [mem 0x0000005600000000-0x000000aaffffffff]
[    0.011096]   node   2: [mem 0x000000ab00000000-0x000000fcffffffff]
[    0.011111]   node   2: [mem 0x0000010000000000-0x000001033fffffff]
[    0.011850] Zeroed struct page in unavailable ranges: 267 pages
[    0.011851] Initmem setup node 0 [mem 0x0000000000001000-0x00000055ffffffff]
[    0.011852] On node 0 totalpages: 89915125
[    0.011853]   DMA zone: 64 pages used for memmap
[    0.011853]   DMA zone: 159 pages reserved
[    0.011854]   DMA zone: 3999 pages, LIFO batch:0
[    0.011875]   DMA32 zone: 12222 pages used for memmap
[    0.011876]   DMA32 zone: 782166 pages, LIFO batch:63
[    0.023529]   Normal zone: 1392640 pages used for memmap
[    0.023532]   Normal zone: 89128960 pages, LIFO batch:63
[    0.024059] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.024077] On node 1 totalpages: 89128960
[    0.024078]   Normal zone: 1392640 pages used for memmap
[    0.024078]   Normal zone: 89128960 pages, LIFO batch:63
[    0.024845] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.024847] On node 2 totalpages: 89391104
[    0.024848]   Normal zone: 1445888 pages used for memmap
[    0.024848]   Normal zone: 89391104 pages, LIFO batch:63
[    2.057160] ACPI: PM-Timer IO Port: 0x448
[    2.057163] ACPI: Local APIC address 0xfee00000
[    2.057181] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    2.057182] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    2.057182] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    2.057183] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    2.057183] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    2.057184] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    2.057185] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    2.057185] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    2.057186] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    2.057187] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    2.057187] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    2.057188] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    2.057189] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    2.057189] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    2.057190] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    2.057191] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    2.057191] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    2.057192] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    2.057192] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    2.057193] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    2.057193] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    2.057194] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    2.057194] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    2.057195] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    2.057195] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    2.057196] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    2.057196] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    2.057197] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    2.057197] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    2.057198] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    2.057198] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    2.057199] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    2.057199] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    2.057200] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    2.057200] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    2.057201] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    2.057201] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    2.057202] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    2.057202] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    2.057203] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    2.057203] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    2.057204] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    2.057205] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    2.057205] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    2.057205] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    2.057206] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    2.057206] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    2.057207] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    2.057207] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    2.057208] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    2.057208] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    2.057209] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    2.057209] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    2.057210] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    2.057210] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    2.057211] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    2.057211] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    2.057212] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    2.057212] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    2.057213] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    2.057213] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[    2.057214] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    2.057214] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[    2.057215] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[    2.057215] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[    2.057216] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[    2.057216] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[    2.057216] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[    2.057217] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[    2.057217] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[    2.057218] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[    2.057218] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[    2.057219] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[    2.057220] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[    2.057220] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[    2.057221] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[    2.057221] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[    2.057222] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[    2.057222] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[    2.057223] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[    2.057224] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[    2.057224] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[    2.057225] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[    2.057225] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[    2.057255] IOAPIC[0]: apic_id 84, version 32, address 0xfec00000, GSI 0-23
[    2.057257] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    2.057259] ACPI: IRQ0 used by override.
[    2.057260] ACPI: IRQ9 used by override.
[    2.057262] Using ACPI (MADT) for SMP configuration information
[    2.057264] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[    2.057267] TSC deadline timer available
[    2.057269] smpboot: Allowing 84 CPUs, 0 hotplug CPUs
[    2.057303] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    2.057305] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    2.057305] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    2.057307] PM: hibernation: Registered nosave memory: [mem 0x0e0a1000-0x0e0a1fff]
[    2.057307] PM: hibernation: Registered nosave memory: [mem 0x0e0a2000-0x0e0a2fff]
[    2.057308] PM: hibernation: Registered nosave memory: [mem 0x0e0a3000-0x0e0a3fff]
[    2.057309] PM: hibernation: Registered nosave memory: [mem 0x0e0a5000-0x0e0a5fff]
[    2.057310] PM: hibernation: Registered nosave memory: [mem 0x0e0a6000-0x0e0a6fff]
[    2.057311] PM: hibernation: Registered nosave memory: [mem 0x0e0ae000-0x0e0aefff]
[    2.057312] PM: hibernation: Registered nosave memory: [mem 0x0ef24000-0x0ef2cfff]
[    2.057313] PM: hibernation: Registered nosave memory: [mem 0x0ef3c000-0x0ef41fff]
[    2.057314] PM: hibernation: Registered nosave memory: [mem 0x0ef42000-0x0ef47fff]
[    2.057315] PM: hibernation: Registered nosave memory: [mem 0x0ef61000-0x0ef65fff]
[    2.057316] PM: hibernation: Registered nosave memory: [mem 0x0fee7000-0x0ff56fff]
[    2.057316] PM: hibernation: Registered nosave memory: [mem 0x0ff57000-0x0ff72fff]
[    2.057317] PM: hibernation: Registered nosave memory: [mem 0x0ff73000-0x0ff76fff]
[    2.057318] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xffbfffff]
[    2.057319] PM: hibernation: Registered nosave memory: [mem 0xffc00000-0xffc29fff]
[    2.057319] PM: hibernation: Registered nosave memory: [mem 0xffc2a000-0xffffffff]
[    2.057321] PM: hibernation: Registered nosave memory: [mem 0xfd00000000-0xffffffffff]
[    2.057322] [mem 0xc0000000-0xffbfffff] available for PCI devices
[    2.057324] Booting paravirtualized kernel on VMware hypervisor
[    2.057326] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    2.060658] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:84 nr_cpu_ids:84 nr_node_ids:3
[    2.069875] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
[    2.069884] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
[    2.069885] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    2.069891] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
[    2.069898] pcpu-alloc: [1] 28 29 30 31 32 33 34 35 [1] 36 37 38 39 40 41 42 43 
[    2.069904] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 [1] 52 53 54 55 -- -- -- -- 
[    2.069909] pcpu-alloc: [2] 56 57 58 59 60 61 62 63 [2] 64 65 66 67 68 69 70 71 
[    2.069915] pcpu-alloc: [2] 72 73 74 75 76 77 78 79 [2] 80 81 82 83 -- -- -- -- 
[    2.069961] Built 3 zonelists, mobility grouping on.  Total pages: 264191576
[    2.069961] Policy zone: Normal
[    2.069964] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    2.070951] mem auto-init: stack:off, heap alloc:off, heap free:off
[    3.252185] Memory: 347310308K/1073740756K available (12297K kernel code, 5775K rwdata, 4412K rodata, 2356K init, 6444K bss, 16996404K reserved, 0K cma-reserved)
[    3.254182] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=84, Nodes=3
[    3.254225] Kernel/User page tables isolation: enabled
[    3.254270] ftrace: allocating 39728 entries in 156 pages
[    3.266113] ftrace: allocated 156 pages with 4 groups
[    3.267369] rcu: Hierarchical RCU implementation.
[    3.267370] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=84.
[    3.267371] 	Rude variant of Tasks RCU enabled.
[    3.267371] 	Tracing variant of Tasks RCU enabled.
[    3.267372] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    3.267372] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=84
[    3.270180] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    3.270762] Console: colour dummy device 80x25
[    3.270794] printk: console [tty0] enabled
[    3.270937] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    3.270939] ACPI: Core revision 20200925
[    3.275212] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    3.275306] APIC: Switch to symmetric I/O mode setup
[    3.276782] x2apic enabled
[    3.278398] Switched APIC routing to physical x2apic.
[    3.280016] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    3.280053] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e3306b9ada, max_idle_ns: 440795224413 ns
[    3.280055] Calibrating delay loop (skipped) preset value.. 4190.15 BogoMIPS (lpj=2095078)
[    3.280058] pid_max: default: 86016 minimum: 672
[    3.281925] LSM: Security Framework initializing
[    3.281954] Yama: becoming mindful.
[    3.281981] SELinux:  Initializing.
[    3.376258] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes, vmalloc)
[    3.425319] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc)
[    3.426691] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.428296] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.430318] Disabled fast string operations
[    3.430477] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    3.430478] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    3.430484] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    3.430486] Spectre V2 : Mitigation: Full generic retpoline
[    3.430486] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    3.430487] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    3.430488] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    3.430490] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    3.430492] MDS: Mitigation: Clear CPU buffers
[    3.430727] Freeing SMP alternatives memory: 32K
[    3.431623] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8176 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x4)
[    3.431819] Performance Events: Skylake events, core PMU driver.
[    3.431870] core: CPUID marked event: 'cpu cycles' unavailable
[    3.431870] core: CPUID marked event: 'instructions' unavailable
[    3.431871] core: CPUID marked event: 'bus cycles' unavailable
[    3.431872] core: CPUID marked event: 'cache references' unavailable
[    3.431872] core: CPUID marked event: 'cache misses' unavailable
[    3.431873] core: CPUID marked event: 'branch instructions' unavailable
[    3.431873] core: CPUID marked event: 'branch misses' unavailable
[    3.431875] ... version:                1
[    3.431875] ... bit width:              48
[    3.431876] ... generic registers:      4
[    3.431877] ... value mask:             0000ffffffffffff
[    3.431877] ... max period:             000000007fffffff
[    3.431878] ... fixed-purpose events:   0
[    3.431878] ... event mask:             000000000000000f
[    3.432029] rcu: Hierarchical SRCU implementation.
[    3.432134] NMI watchdog: Perf NMI watchdog permanently disabled
[    3.433974] smp: Bringing up secondary CPUs ...
[    3.434058] x86: Booting SMP configuration:
[    3.434059] .... node  #0, CPUs:        #1
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 1 Converting physical 2 to logical package 1
[    0.008444] smpboot: CPU 1 Converting physical 0 to logical die 1
[    3.435160]   #2
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 2 Converting physical 4 to logical package 2
[    0.008444] smpboot: CPU 2 Converting physical 0 to logical die 2
[    3.436135]   #3
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 3 Converting physical 6 to logical package 3
[    0.008444] smpboot: CPU 3 Converting physical 0 to logical die 3
[    3.436829]   #4
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 4 Converting physical 8 to logical package 4
[    0.008444] smpboot: CPU 4 Converting physical 0 to logical die 4
[    3.437676]   #5
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 5 Converting physical 10 to logical package 5
[    0.008444] smpboot: CPU 5 Converting physical 0 to logical die 5
[    3.438131]   #6
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 6 Converting physical 12 to logical package 6
[    0.008444] smpboot: CPU 6 Converting physical 0 to logical die 6
[    3.439493]   #7
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 7 Converting physical 14 to logical package 7
[    0.008444] smpboot: CPU 7 Converting physical 0 to logical die 7
[    3.440126]   #8
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 8 Converting physical 16 to logical package 8
[    0.008444] smpboot: CPU 8 Converting physical 0 to logical die 8
[    3.441088]   #9
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 9 Converting physical 18 to logical package 9
[    0.008444] smpboot: CPU 9 Converting physical 0 to logical die 9
[    3.441925]  #10
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 10 Converting physical 20 to logical package 10
[    0.008444] smpboot: CPU 10 Converting physical 0 to logical die 10
[    3.442766]  #11
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 11 Converting physical 22 to logical package 11
[    0.008444] smpboot: CPU 11 Converting physical 0 to logical die 11
[    3.443716]  #12
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 12 Converting physical 24 to logical package 12
[    0.008444] smpboot: CPU 12 Converting physical 0 to logical die 12
[    3.444635]  #13
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 13 Converting physical 26 to logical package 13
[    0.008444] smpboot: CPU 13 Converting physical 0 to logical die 13
[    3.445418]  #14
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 14 Converting physical 28 to logical package 14
[    0.008444] smpboot: CPU 14 Converting physical 0 to logical die 14
[    3.446302]  #15
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 15 Converting physical 30 to logical package 15
[    0.008444] smpboot: CPU 15 Converting physical 0 to logical die 15
[    3.447145]  #16
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 16 Converting physical 32 to logical package 16
[    0.008444] smpboot: CPU 16 Converting physical 0 to logical die 16
[    3.448133]  #17
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 17 Converting physical 34 to logical package 17
[    0.008444] smpboot: CPU 17 Converting physical 0 to logical die 17
[    3.448868]  #18
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 18 Converting physical 36 to logical package 18
[    0.008444] smpboot: CPU 18 Converting physical 0 to logical die 18
[    3.450115]  #19
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 19 Converting physical 38 to logical package 19
[    0.008444] smpboot: CPU 19 Converting physical 0 to logical die 19
[    3.450767]  #20
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 20 Converting physical 40 to logical package 20
[    0.008444] smpboot: CPU 20 Converting physical 0 to logical die 20
[    3.451647]  #21
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 21 Converting physical 42 to logical package 21
[    0.008444] smpboot: CPU 21 Converting physical 0 to logical die 21
[    3.452435]  #22
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 22 Converting physical 44 to logical package 22
[    0.008444] smpboot: CPU 22 Converting physical 0 to logical die 22
[    3.453178]  #23
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 23 Converting physical 46 to logical package 23
[    0.008444] smpboot: CPU 23 Converting physical 0 to logical die 23
[    3.454063]  #24
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 24 Converting physical 48 to logical package 24
[    0.008444] smpboot: CPU 24 Converting physical 0 to logical die 24
[    3.454701]  #25
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 25 Converting physical 50 to logical package 25
[    0.008444] smpboot: CPU 25 Converting physical 0 to logical die 25
[    3.455127]  #26
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 26 Converting physical 52 to logical package 26
[    0.008444] smpboot: CPU 26 Converting physical 0 to logical die 26
[    3.455814]  #27
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 27 Converting physical 54 to logical package 27
[    0.008444] smpboot: CPU 27 Converting physical 0 to logical die 27

[    3.456599] .... node  #1, CPUs:   #28
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 28 Converting physical 56 to logical package 28
[    0.008444] smpboot: CPU 28 Converting physical 0 to logical die 28
[    3.457321]  #29
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 29 Converting physical 58 to logical package 29
[    0.008444] smpboot: CPU 29 Converting physical 0 to logical die 29
[    3.458401]  #30
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 30 Converting physical 60 to logical package 30
[    0.008444] smpboot: CPU 30 Converting physical 0 to logical die 30
[    3.459172]  #31
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 31 Converting physical 62 to logical package 31
[    0.008444] smpboot: CPU 31 Converting physical 0 to logical die 31
[    3.460144]  #32
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 32 Converting physical 64 to logical package 32
[    0.008444] smpboot: CPU 32 Converting physical 0 to logical die 32
[    3.461103]  #33
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 33 Converting physical 66 to logical package 33
[    0.008444] smpboot: CPU 33 Converting physical 0 to logical die 33
[    3.461725]  #34
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 34 Converting physical 68 to logical package 34
[    0.008444] smpboot: CPU 34 Converting physical 0 to logical die 34
[    3.462631]  #35
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 35 Converting physical 70 to logical package 35
[    0.008444] smpboot: CPU 35 Converting physical 0 to logical die 35
[    3.463284]  #36
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 36 Converting physical 72 to logical package 36
[    0.008444] smpboot: CPU 36 Converting physical 0 to logical die 36
[    3.464149]  #37
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 37 Converting physical 74 to logical package 37
[    0.008444] smpboot: CPU 37 Converting physical 0 to logical die 37
[    3.464709]  #38
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 38 Converting physical 76 to logical package 38
[    0.008444] smpboot: CPU 38 Converting physical 0 to logical die 38
[    3.466117]  #39
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 39 Converting physical 78 to logical package 39
[    0.008444] smpboot: CPU 39 Converting physical 0 to logical die 39
[    3.467059]  #40
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 40 Converting physical 80 to logical package 40
[    0.008444] smpboot: CPU 40 Converting physical 0 to logical die 40
[    3.467762]  #41
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 41 Converting physical 82 to logical package 41
[    0.008444] smpboot: CPU 41 Converting physical 0 to logical die 41
[    3.468685]  #42
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 42 Converting physical 84 to logical package 42
[    0.008444] smpboot: CPU 42 Converting physical 0 to logical die 42
[    3.469135]  #43
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 43 Converting physical 86 to logical package 43
[    0.008444] smpboot: CPU 43 Converting physical 0 to logical die 43
[    3.469806]  #44
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 44 Converting physical 88 to logical package 44
[    0.008444] smpboot: CPU 44 Converting physical 0 to logical die 44
[    3.470629]  #45
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 45 Converting physical 90 to logical package 45
[    0.008444] smpboot: CPU 45 Converting physical 0 to logical die 45
[    3.471140]  #46
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 46 Converting physical 92 to logical package 46
[    0.008444] smpboot: CPU 46 Converting physical 0 to logical die 46
[    3.471720]  #47
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 47 Converting physical 94 to logical package 47
[    0.008444] smpboot: CPU 47 Converting physical 0 to logical die 47
[    3.472577]  #48
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 48 Converting physical 96 to logical package 48
[    0.008444] smpboot: CPU 48 Converting physical 0 to logical die 48
[    3.473262]  #49
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 49 Converting physical 98 to logical package 49
[    0.008444] smpboot: CPU 49 Converting physical 0 to logical die 49
[    3.474143]  #50
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 50 Converting physical 100 to logical package 50
[    0.008444] smpboot: CPU 50 Converting physical 0 to logical die 50
[    3.474674]  #51
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 51 Converting physical 102 to logical package 51
[    0.008444] smpboot: CPU 51 Converting physical 0 to logical die 51
[    3.476141]  #52
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 52 Converting physical 104 to logical package 52
[    0.008444] smpboot: CPU 52 Converting physical 0 to logical die 52
[    3.477515]  #53
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 53 Converting physical 106 to logical package 53
[    0.008444] smpboot: CPU 53 Converting physical 0 to logical die 53
[    3.478222]  #54
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 54 Converting physical 108 to logical package 54
[    0.008444] smpboot: CPU 54 Converting physical 0 to logical die 54
[    3.479171]  #55
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 55 Converting physical 110 to logical package 55
[    0.008444] smpboot: CPU 55 Converting physical 0 to logical die 55

[    3.480144] .... node  #2, CPUs:   #56
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 56 Converting physical 112 to logical package 56
[    0.008444] smpboot: CPU 56 Converting physical 0 to logical die 56
[    3.481164]  #57
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 57 Converting physical 114 to logical package 57
[    0.008444] smpboot: CPU 57 Converting physical 0 to logical die 57
[    3.482157]  #58
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 58 Converting physical 116 to logical package 58
[    0.008444] smpboot: CPU 58 Converting physical 0 to logical die 58
[    3.482738]  #59
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 59 Converting physical 118 to logical package 59
[    0.008444] smpboot: CPU 59 Converting physical 0 to logical die 59
[    3.483536]  #60
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 60 Converting physical 120 to logical package 60
[    0.008444] smpboot: CPU 60 Converting physical 0 to logical die 60
[    3.484330]  #61
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 61 Converting physical 122 to logical package 61
[    0.008444] smpboot: CPU 61 Converting physical 0 to logical die 61
[    3.485158]  #62
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 62 Converting physical 124 to logical package 62
[    0.008444] smpboot: CPU 62 Converting physical 0 to logical die 62
[    3.486161]  #63
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 63 Converting physical 126 to logical package 63
[    0.008444] smpboot: CPU 63 Converting physical 0 to logical die 63
[    3.487103]  #64
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 64 Converting physical 128 to logical package 64
[    0.008444] smpboot: CPU 64 Converting physical 0 to logical die 64
[    3.487814]  #65
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 65 Converting physical 130 to logical package 65
[    0.008444] smpboot: CPU 65 Converting physical 0 to logical die 65
[    3.488609]  #66
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 66 Converting physical 132 to logical package 66
[    0.008444] smpboot: CPU 66 Converting physical 0 to logical die 66
[    3.489147]  #67
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 67 Converting physical 134 to logical package 67
[    0.008444] smpboot: CPU 67 Converting physical 0 to logical die 67
[    3.490147]  #68
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 68 Converting physical 136 to logical package 68
[    0.008444] smpboot: CPU 68 Converting physical 0 to logical die 68
[    3.490771]  #69
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 69 Converting physical 138 to logical package 69
[    0.008444] smpboot: CPU 69 Converting physical 0 to logical die 69
[    3.491602]  #70
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 70 Converting physical 140 to logical package 70
[    0.008444] smpboot: CPU 70 Converting physical 0 to logical die 70
[    3.492144]  #71
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 71 Converting physical 142 to logical package 71
[    0.008444] smpboot: CPU 71 Converting physical 0 to logical die 71
[    3.492745]  #72
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 72 Converting physical 144 to logical package 72
[    0.008444] smpboot: CPU 72 Converting physical 0 to logical die 72
[    3.493738]  #73
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 73 Converting physical 146 to logical package 73
[    0.008444] smpboot: CPU 73 Converting physical 0 to logical die 73
[    3.494528]  #74
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 74 Converting physical 148 to logical package 74
[    0.008444] smpboot: CPU 74 Converting physical 0 to logical die 74
[    3.495138]  #75
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 75 Converting physical 150 to logical package 75
[    0.008444] smpboot: CPU 75 Converting physical 0 to logical die 75
[    3.495740]  #76
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 76 Converting physical 152 to logical package 76
[    0.008444] smpboot: CPU 76 Converting physical 0 to logical die 76
[    3.497120]  #77
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 77 Converting physical 154 to logical package 77
[    0.008444] smpboot: CPU 77 Converting physical 0 to logical die 77
[    3.498077]  #78
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 78 Converting physical 156 to logical package 78
[    0.008444] smpboot: CPU 78 Converting physical 0 to logical die 78
[    3.498675]  #79
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 79 Converting physical 158 to logical package 79
[    0.008444] smpboot: CPU 79 Converting physical 0 to logical die 79
[    3.499137]  #80
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 80 Converting physical 160 to logical package 80
[    0.008444] smpboot: CPU 80 Converting physical 0 to logical die 80
[    3.499687]  #81
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 81 Converting physical 162 to logical package 81
[    0.008444] smpboot: CPU 81 Converting physical 0 to logical die 81
[    3.500544]  #82
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 82 Converting physical 164 to logical package 82
[    0.008444] smpboot: CPU 82 Converting physical 0 to logical die 82
[    3.501308]  #83
[    0.008444] Disabled fast string operations
[    0.008444] smpboot: CPU 83 Converting physical 166 to logical package 83
[    0.008444] smpboot: CPU 83 Converting physical 0 to logical die 83
[    3.502391] smp: Brought up 3 nodes, 84 CPUs
[    3.502394] smpboot: Max logical packages: 84
[    3.502398] smpboot: Total of 84 processors activated (351973.10 BogoMIPS)
[    3.521092] node 2 deferred pages initialised in 14ms
[    3.731133] node 0 deferred pages initialised in 225ms
[    3.736105] node 1 deferred pages initialised in 230ms
[    3.779112] devtmpfs: initialized
[    3.779112] x86/mm: Memory block size: 1024MB
[    3.787060] PM: Registering ACPI NVS region [mem 0x00000000-0x00000fff] (4096 bytes)
[    3.787060] PM: Registering ACPI NVS region [mem 0x0ef42000-0x0ef47fff] (24576 bytes)
[    3.787060] PM: Registering ACPI NVS region [mem 0x0ff73000-0x0ff76fff] (16384 bytes)
[    3.788098] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    3.788167] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    3.789178] pinctrl core: initialized pinctrl subsystem
[    3.789953] NET: Registered protocol family 16
[    3.790060] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    3.790074] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    3.790090] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    3.790098] audit: initializing netlink subsys (disabled)
[    3.790157] audit: type=2000 audit(1606210482.512:1): state=initialized audit_enabled=0 res=1
[    3.790328] thermal_sys: Registered thermal governor 'fair_share'
[    3.790329] thermal_sys: Registered thermal governor 'bang_bang'
[    3.790330] thermal_sys: Registered thermal governor 'step_wise'
[    3.790331] thermal_sys: Registered thermal governor 'user_space'
[    3.791116] cpuidle: using governor menu
[    3.791202] ACPI: bus type PCI registered
[    3.791204] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.791463] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    3.791467] PCI: not using MMCONFIG
[    3.791469] PCI: Using configuration type 1 for base access
[    3.796087] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    3.796087] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    3.825504] cryptd: max_cpu_qlen set to 1000
[    3.842060] ACPI: Added _OSI(Module Device)
[    3.842060] ACPI: Added _OSI(Processor Device)
[    3.842060] ACPI: Added _OSI(3.0 _SCP Extensions)
[    3.842060] ACPI: Added _OSI(Processor Aggregator Device)
[    3.842060] ACPI: Added _OSI(Linux-Dell-Video)
[    3.842060] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    3.842060] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    3.845479] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    3.846380] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    3.846385] ACPI: BIOS _OSI(Darwin) query ignored
[    3.855298] ACPI: Interpreter enabled
[    3.855311] ACPI: (supports S0 S1 S4 S5)
[    3.855312] ACPI: Using IOAPIC for interrupt routing
[    3.855329] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    3.855880] PCI: MMCONFIG at [mem 0xe0000000-0xe7ffffff] reserved in ACPI motherboard resources
[    3.855885] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    3.857701] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    3.858054] ACPI: Enabled 4 GPEs in block 00 to 0F
[    3.874623] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    3.874628] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    3.874766] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[    3.874892] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    3.875527] PCI host bridge to bus 0000:00
[    3.875528] pci_bus 0000:00: Unknown NUMA node; performance will be reduced
[    3.875530] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    3.875532] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    3.875533] pci_bus 0000:00: root bus resource [mem 0xfef00000-0xffdfffff window]
[    3.875534] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfedfffff window]
[    3.875534] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfed3ffff window]
[    3.875535] pci_bus 0000:00: root bus resource [mem 0xfa300000-0xfebfffff window]
[    3.875536] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfa2fffff pref window]
[    3.875539] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xefffffff window]
[    3.875540] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    3.875541] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    3.875541] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    3.875542] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    3.875543] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    3.875544] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    3.875545] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    3.875545] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    3.875547] pci_bus 0000:00: root bus resource [bus 00-7f]
[    3.875639] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    3.876177] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    3.876664] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    3.877278] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    3.878054] pci 0000:00:07.1: reg 0x20: [io  0x2050-0x205f]
[    3.878054] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    3.878054] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    3.878054] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    3.878054] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    3.878054] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    3.878403] pci 0000:00:07.3: quirk: [io  0x0440-0x047f] claimed by PIIX4 ACPI
[    3.878711] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    3.878802] pci 0000:00:07.7: reg 0x10: [io  0x2000-0x203f]
[    3.878876] pci 0000:00:07.7: reg 0x14: [mem 0xffbf0000-0xffbf1fff 64bit]
[    3.879054] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    3.881059] pci 0000:00:0f.0: reg 0x10: [io  0x2040-0x204f]
[    3.882057] pci 0000:00:0f.0: reg 0x14: [mem 0xf0000000-0xf7ffffff pref]
[    3.885057] pci 0000:00:0f.0: reg 0x18: [mem 0xfb800000-0xfbffffff]
[    3.894058] pci 0000:00:0f.0: reg 0x30: [mem 0xffff8000-0xffffffff pref]
[    3.894093] pci 0000:00:0f.0: BAR 1: assigned to efifb
[    3.894510] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    3.895054] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    3.895054] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    3.896283] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    3.897005] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    3.897331] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    3.898054] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    3.898381] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    3.899095] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    3.899427] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    3.900142] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    3.900473] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    3.901189] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    3.901520] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    3.902236] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    3.902569] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    3.903284] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    3.903621] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    3.904331] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    3.904665] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    3.905379] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    3.905710] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    3.906421] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    3.906758] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    3.907477] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    3.907808] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    3.908525] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    3.908856] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    3.909572] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    3.909904] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    3.910625] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    3.910957] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    3.911671] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    3.912001] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    3.912717] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    3.913045] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    3.913757] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    3.914087] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    3.914805] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    3.915135] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    3.915853] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    3.916185] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    3.916904] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    3.917235] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    3.917952] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    3.918280] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    3.918997] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    3.919322] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    3.920041] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    3.920369] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    3.921087] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    3.921417] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    3.922134] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    3.922463] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    3.923181] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    3.923513] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    3.924228] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    3.924558] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    3.925276] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    3.925605] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    3.926323] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    3.926658] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    3.927371] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    3.927714] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    3.928429] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    3.928770] pci_bus 0000:01: extended config space not accessible
[    3.928812] pci 0000:00:01.0: PCI bridge to [bus 01]
[    3.928990] pci_bus 0000:02: extended config space not accessible
[    3.929159] acpiphp: Slot [32] registered
[    3.929167] acpiphp: Slot [33] registered
[    3.929175] acpiphp: Slot [34] registered
[    3.929183] acpiphp: Slot [35] registered
[    3.929191] acpiphp: Slot [36] registered
[    3.929199] acpiphp: Slot [37] registered
[    3.929207] acpiphp: Slot [38] registered
[    3.929214] acpiphp: Slot [39] registered
[    3.929222] acpiphp: Slot [40] registered
[    3.929230] acpiphp: Slot [41] registered
[    3.929239] acpiphp: Slot [42] registered
[    3.929246] acpiphp: Slot [43] registered
[    3.929254] acpiphp: Slot [44] registered
[    3.929262] acpiphp: Slot [45] registered
[    3.929271] acpiphp: Slot [46] registered
[    3.929279] acpiphp: Slot [47] registered
[    3.929286] acpiphp: Slot [48] registered
[    3.929294] acpiphp: Slot [49] registered
[    3.929302] acpiphp: Slot [50] registered
[    3.929309] acpiphp: Slot [51] registered
[    3.929317] acpiphp: Slot [52] registered
[    3.929324] acpiphp: Slot [53] registered
[    3.929332] acpiphp: Slot [54] registered
[    3.929340] acpiphp: Slot [55] registered
[    3.929347] acpiphp: Slot [56] registered
[    3.929355] acpiphp: Slot [57] registered
[    3.929363] acpiphp: Slot [58] registered
[    3.929370] acpiphp: Slot [59] registered
[    3.929378] acpiphp: Slot [60] registered
[    3.929385] acpiphp: Slot [61] registered
[    3.929394] acpiphp: Slot [62] registered
[    3.929402] acpiphp: Slot [63] registered
[    3.929436] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    3.929453] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    3.929470] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    3.929503] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    3.929504] pci 0000:00:11.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    3.929505] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    3.929506] pci 0000:00:11.0:   bridge window [mem 0xfef00000-0xffdfffff window] (subtractive decode)
[    3.929507] pci 0000:00:11.0:   bridge window [mem 0xfed45000-0xfedfffff window] (subtractive decode)
[    3.929508] pci 0000:00:11.0:   bridge window [mem 0xfec10000-0xfed3ffff window] (subtractive decode)
[    3.929509] pci 0000:00:11.0:   bridge window [mem 0xfa300000-0xfebfffff window] (subtractive decode)
[    3.929509] pci 0000:00:11.0:   bridge window [mem 0xf0000000-0xfa2fffff pref window] (subtractive decode)
[    3.929510] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xefffffff window] (subtractive decode)
[    3.929511] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    3.929512] pci 0000:00:11.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    3.929513] pci 0000:00:11.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    3.929514] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    3.929515] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    3.929515] pci 0000:00:11.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    3.929516] pci 0000:00:11.0:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    3.929517] pci 0000:00:11.0:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    3.929863] pci 0000:03:00.0: [15ad:07c0] type 00 class 0x010700
[    3.932057] pci 0000:03:00.0: reg 0x10: [io  0x4000-0x4007]
[    3.934056] pci 0000:03:00.0: reg 0x14: [mem 0xfea10000-0xfea17fff 64bit]
[    3.942057] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    3.942489] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    3.942776] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    3.942820] pci 0000:00:15.0: PCI bridge to [bus 03]
[    3.942838] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    3.942855] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    3.943131] pci 0000:00:15.1: PCI bridge to [bus 04]
[    3.943163] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    3.943196] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    3.943424] pci 0000:00:15.2: PCI bridge to [bus 05]
[    3.943456] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    3.943489] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    3.943714] pci 0000:00:15.3: PCI bridge to [bus 06]
[    3.943746] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    3.943779] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    3.944007] pci 0000:00:15.4: PCI bridge to [bus 07]
[    3.944039] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    3.944072] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    3.944297] pci 0000:00:15.5: PCI bridge to [bus 08]
[    3.944329] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    3.944362] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    3.944587] pci 0000:00:15.6: PCI bridge to [bus 09]
[    3.944620] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    3.944652] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    3.944878] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    3.944911] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    3.944943] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    3.945280] pci 0000:0b:00.0: [15ad:07b0] type 00 class 0x020000
[    3.945375] pci 0000:0b:00.0: reg 0x10: [mem 0xfe213000-0xfe213fff]
[    3.945416] pci 0000:0b:00.0: reg 0x14: [mem 0xfe212000-0xfe212fff]
[    3.945457] pci 0000:0b:00.0: reg 0x18: [mem 0xfe210000-0xfe211fff]
[    3.945498] pci 0000:0b:00.0: reg 0x1c: [io  0x3000-0x300f]
[    3.945619] pci 0000:0b:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    3.946056] pci 0000:0b:00.0: supports D1 D2
[    3.946057] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.946381] pci 0000:0b:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    3.946423] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    3.946441] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    3.946458] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    3.946717] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    3.946750] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    3.946783] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    3.947009] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    3.947041] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    3.947072] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    3.947297] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    3.947330] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    3.947362] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    3.947588] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    3.947621] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    3.947653] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    3.947882] pci 0000:00:16.5: PCI bridge to [bus 10]
[    3.947915] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    3.947947] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    3.948168] pci 0000:00:16.6: PCI bridge to [bus 11]
[    3.948200] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    3.948232] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    3.948457] pci 0000:00:16.7: PCI bridge to [bus 12]
[    3.948490] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    3.948522] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    3.948749] pci 0000:00:17.0: PCI bridge to [bus 13]
[    3.948781] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    3.948814] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    3.949040] pci 0000:00:17.1: PCI bridge to [bus 14]
[    3.949071] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    3.949104] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    3.949330] pci 0000:00:17.2: PCI bridge to [bus 15]
[    3.949363] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    3.949395] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    3.949622] pci 0000:00:17.3: PCI bridge to [bus 16]
[    3.949655] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    3.949687] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    3.949913] pci 0000:00:17.4: PCI bridge to [bus 17]
[    3.949945] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    3.949977] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    3.950201] pci 0000:00:17.5: PCI bridge to [bus 18]
[    3.950234] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    3.950266] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    3.950491] pci 0000:00:17.6: PCI bridge to [bus 19]
[    3.950523] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    3.950556] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    3.950781] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    3.950814] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    3.950846] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    3.951076] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    3.951108] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    3.951140] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    3.951364] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    3.951397] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    3.951430] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    3.951656] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    3.951689] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    3.951721] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    3.951947] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    3.951979] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    3.952011] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    3.952231] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    3.952264] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    3.952296] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    3.952521] pci 0000:00:18.5: PCI bridge to [bus 20]
[    3.952554] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    3.952587] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    3.952814] pci 0000:00:18.6: PCI bridge to [bus 21]
[    3.952846] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    3.952879] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    3.953105] pci 0000:00:18.7: PCI bridge to [bus 22]
[    3.953138] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    3.953171] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    3.954676] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.954742] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.954802] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.954863] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.969067] iommu: Default domain type: Passthrough 
[    3.969080] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[    3.969080] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    3.969084] pci 0000:00:0f.0: vgaarb: bridge control possible
[    3.969085] vgaarb: loaded
[    3.969233] SCSI subsystem initialized
[    3.969233] ACPI: bus type USB registered
[    3.969233] usbcore: registered new interface driver usbfs
[    3.969233] usbcore: registered new interface driver hub
[    3.970067] usbcore: registered new device driver usb
[    3.970067] pps_core: LinuxPPS API ver. 1 registered
[    3.970067] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    3.970069] PTP clock support registered
[    3.971431] EDAC MC: Ver: 3.0.0
[    3.972496] Registered efivars operations
[    3.972496] NetLabel: Initializing
[    3.972496] NetLabel:  domain hash size = 128
[    3.972496] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    3.972496] NetLabel:  unlabeled traffic allowed by default
[    3.972496] PCI: Using ACPI for IRQ routing
[    3.975466] PCI: pci_cache_line_size set to 64 bytes
[    3.976154] e820: reserve RAM buffer [mem 0x0e0a1018-0x0fffffff]
[    3.976156] e820: reserve RAM buffer [mem 0x0e0a3018-0x0fffffff]
[    3.976157] e820: reserve RAM buffer [mem 0x0e0a6018-0x0fffffff]
[    3.976158] e820: reserve RAM buffer [mem 0x0ef24000-0x0fffffff]
[    3.976159] e820: reserve RAM buffer [mem 0x0ef3c000-0x0fffffff]
[    3.976160] e820: reserve RAM buffer [mem 0x0ef61000-0x0fffffff]
[    3.976161] e820: reserve RAM buffer [mem 0x0fee7000-0x0fffffff]
[    3.976188] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    3.976188] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    3.978558] clocksource: Switched to clocksource tsc-early
[    3.994762] VFS: Disk quotas dquot_6.6.0
[    3.994814] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.994972] pnp: PnP ACPI init
[    3.995118] system 00:00: [io  0x0440-0x047f] has been reserved
[    3.995120] system 00:00: [io  0x5658-0x5659] has been reserved
[    3.995121] system 00:00: [io  0x5670] has been reserved
[    3.995122] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    3.995127] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    3.995146] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    3.995161] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    3.995174] pnp 00:03: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
[    3.995313] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    3.995316] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    3.996421] system 00:05: [io  0x0400-0x041f] has been reserved
[    3.996423] system 00:05: [mem 0xe0000000-0xe7ffffff] has been reserved
[    3.996424] system 00:05: [mem 0xffc00000-0xffdfffff] could not be reserved
[    3.996426] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    3.997081] pnp: PnP ACPI: found 6 devices
[    4.003275] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.003439] NET: Registered protocol family 2
[    4.003798] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.004040] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    4.004689] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.004843] TCP: Hash tables configured (established 524288 bind 65536)
[    4.005360] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    4.005725] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    4.006208] NET: Registered protocol family 1
[    4.006214] NET: Registered protocol family 44
[    4.006231] pci 0000:00:0f.0: can't claim BAR 6 [mem 0xffff8000-0xffffffff pref]: no compatible bridge window
[    4.006233] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    4.006234] pci 0000:0b:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    4.006239] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    4.006241] pci 0000:00:15.1: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    4.006242] pci 0000:00:15.2: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    4.006243] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    4.006244] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    4.006245] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    4.006246] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    4.006247] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    4.006249] pci 0000:00:16.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    4.006250] pci 0000:00:16.1: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    4.006251] pci 0000:00:16.2: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    4.006252] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    4.006252] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    4.006253] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    4.006254] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    4.006255] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    4.006255] pci 0000:00:17.0: bridge window [io  0x1000-0x0fff] to [bus 13] add_size 1000
[    4.006256] pci 0000:00:17.1: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    4.006257] pci 0000:00:17.2: bridge window [io  0x1000-0x0fff] to [bus 15] add_size 1000
[    4.006258] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    4.006259] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    4.006259] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    4.006260] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    4.006261] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    4.006262] pci 0000:00:18.0: bridge window [io  0x1000-0x0fff] to [bus 1b] add_size 1000
[    4.006263] pci 0000:00:18.1: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
[    4.006264] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    4.006264] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    4.006265] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    4.006266] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    4.006267] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    4.006268] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    4.006285] pci 0000:00:15.0: BAR 15: assigned [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.006289] pci 0000:00:16.0: BAR 15: assigned [mem 0xff100000-0xff2fffff 64bit pref]
[    4.006291] pci 0000:00:0f.0: BAR 6: assigned [mem 0xff300000-0xff307fff pref]
[    4.006292] pci 0000:00:15.1: BAR 13: assigned [io  0x6000-0x6fff]
[    4.006294] pci 0000:00:15.2: BAR 13: assigned [io  0x7000-0x7fff]
[    4.006294] pci 0000:00:15.3: BAR 13: assigned [io  0x8000-0x8fff]
[    4.006295] pci 0000:00:15.4: BAR 13: assigned [io  0x9000-0x9fff]
[    4.006296] pci 0000:00:15.5: BAR 13: assigned [io  0xa000-0xafff]
[    4.006297] pci 0000:00:15.6: BAR 13: assigned [io  0xb000-0xbfff]
[    4.006298] pci 0000:00:15.7: BAR 13: assigned [io  0xc000-0xcfff]
[    4.006299] pci 0000:00:16.1: BAR 13: assigned [io  0xd000-0xdfff]
[    4.006300] pci 0000:00:16.2: BAR 13: assigned [io  0xe000-0xefff]
[    4.006301] pci 0000:00:16.3: BAR 13: assigned [io  0xf000-0xffff]
[    4.006302] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    4.006303] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    4.006305] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    4.006305] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    4.006307] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    4.006307] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    4.006309] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    4.006309] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    4.006311] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    4.006311] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    4.006313] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    4.006313] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    4.006314] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    4.006315] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    4.006316] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    4.006317] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    4.006318] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    4.006319] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    4.006320] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    4.006321] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    4.006323] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    4.006324] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    4.006325] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    4.006325] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    4.006327] pci 0000:00:18.0: BAR 13: no space for [io  size 0x1000]
[    4.006327] pci 0000:00:18.0: BAR 13: failed to assign [io  size 0x1000]
[    4.006329] pci 0000:00:18.1: BAR 13: no space for [io  size 0x1000]
[    4.006329] pci 0000:00:18.1: BAR 13: failed to assign [io  size 0x1000]
[    4.006330] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    4.006331] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    4.006332] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    4.006333] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    4.006334] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    4.006335] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    4.006336] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    4.006337] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    4.006338] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    4.006339] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    4.006340] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    4.006340] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    4.006344] pci 0000:00:18.7: BAR 13: assigned [io  0x6000-0x6fff]
[    4.006345] pci 0000:00:18.6: BAR 13: assigned [io  0x7000-0x7fff]
[    4.006346] pci 0000:00:18.5: BAR 13: assigned [io  0x8000-0x8fff]
[    4.006346] pci 0000:00:18.4: BAR 13: assigned [io  0x9000-0x9fff]
[    4.006347] pci 0000:00:18.3: BAR 13: assigned [io  0xa000-0xafff]
[    4.006348] pci 0000:00:18.2: BAR 13: assigned [io  0xb000-0xbfff]
[    4.006349] pci 0000:00:18.1: BAR 13: assigned [io  0xc000-0xcfff]
[    4.006350] pci 0000:00:18.0: BAR 13: assigned [io  0xd000-0xdfff]
[    4.006351] pci 0000:00:17.7: BAR 13: assigned [io  0xe000-0xefff]
[    4.006352] pci 0000:00:17.6: BAR 13: assigned [io  0xf000-0xffff]
[    4.006353] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    4.006354] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    4.006355] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    4.006356] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    4.006357] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    4.006358] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    4.006359] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    4.006360] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    4.006361] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    4.006362] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    4.006363] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    4.006364] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    4.006365] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    4.006366] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    4.006367] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    4.006367] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    4.006369] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    4.006369] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    4.006371] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    4.006371] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    4.006373] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    4.006373] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    4.006375] pci 0000:00:16.2: BAR 13: no space for [io  size 0x1000]
[    4.006375] pci 0000:00:16.2: BAR 13: failed to assign [io  size 0x1000]
[    4.006376] pci 0000:00:16.1: BAR 13: no space for [io  size 0x1000]
[    4.006377] pci 0000:00:16.1: BAR 13: failed to assign [io  size 0x1000]
[    4.006378] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    4.006379] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    4.006380] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    4.006381] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    4.006382] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    4.006383] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    4.006384] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    4.006385] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    4.006386] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    4.006386] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
[    4.006388] pci 0000:00:15.2: BAR 13: no space for [io  size 0x1000]
[    4.006388] pci 0000:00:15.2: BAR 13: failed to assign [io  size 0x1000]
[    4.006390] pci 0000:00:15.1: BAR 13: no space for [io  size 0x1000]
[    4.006390] pci 0000:00:15.1: BAR 13: failed to assign [io  size 0x1000]
[    4.006393] pci 0000:00:01.0: PCI bridge to [bus 01]
[    4.006462] pci 0000:00:11.0: PCI bridge to [bus 02]
[    4.006469] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    4.006489] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    4.006502] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.006528] pci 0000:03:00.0: BAR 6: assigned [mem 0xfea00000-0xfea0ffff pref]
[    4.006529] pci 0000:00:15.0: PCI bridge to [bus 03]
[    4.006536] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    4.006555] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.006568] pci 0000:00:15.0:   bridge window [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.006593] pci 0000:00:15.1: PCI bridge to [bus 04]
[    4.006612] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.006625] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.006650] pci 0000:00:15.2: PCI bridge to [bus 05]
[    4.006669] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    4.006682] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.006708] pci 0000:00:15.3: PCI bridge to [bus 06]
[    4.006727] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    4.006740] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.006765] pci 0000:00:15.4: PCI bridge to [bus 07]
[    4.006784] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    4.006797] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.006822] pci 0000:00:15.5: PCI bridge to [bus 08]
[    4.006841] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    4.006854] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.006879] pci 0000:00:15.6: PCI bridge to [bus 09]
[    4.006898] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    4.006911] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.006936] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    4.006955] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    4.006968] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.006994] pci 0000:0b:00.0: BAR 6: assigned [mem 0xfe200000-0xfe20ffff pref]
[    4.006995] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    4.007002] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    4.007021] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    4.007034] pci 0000:00:16.0:   bridge window [mem 0xff100000-0xff2fffff 64bit pref]
[    4.007075] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    4.007094] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    4.007106] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.007130] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    4.007148] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    4.007161] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.007184] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    4.007202] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    4.007215] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.007239] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    4.007257] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    4.007269] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.007293] pci 0000:00:16.5: PCI bridge to [bus 10]
[    4.007311] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    4.007323] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.007347] pci 0000:00:16.6: PCI bridge to [bus 11]
[    4.007365] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    4.007377] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.007401] pci 0000:00:16.7: PCI bridge to [bus 12]
[    4.007419] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    4.007432] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.007455] pci 0000:00:17.0: PCI bridge to [bus 13]
[    4.007473] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    4.007486] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.007509] pci 0000:00:17.1: PCI bridge to [bus 14]
[    4.007527] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    4.007540] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.007564] pci 0000:00:17.2: PCI bridge to [bus 15]
[    4.007582] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    4.007594] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.007618] pci 0000:00:17.3: PCI bridge to [bus 16]
[    4.007636] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    4.007648] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.007672] pci 0000:00:17.4: PCI bridge to [bus 17]
[    4.007691] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    4.007703] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.007727] pci 0000:00:17.5: PCI bridge to [bus 18]
[    4.007745] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    4.007757] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.007781] pci 0000:00:17.6: PCI bridge to [bus 19]
[    4.007788] pci 0000:00:17.6:   bridge window [io  0xf000-0xffff]
[    4.007806] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    4.007818] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.007843] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    4.007849] pci 0000:00:17.7:   bridge window [io  0xe000-0xefff]
[    4.007867] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    4.007880] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.007904] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    4.007910] pci 0000:00:18.0:   bridge window [io  0xd000-0xdfff]
[    4.007928] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    4.007941] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.007965] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    4.007971] pci 0000:00:18.1:   bridge window [io  0xc000-0xcfff]
[    4.007989] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    4.008002] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.008026] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    4.008032] pci 0000:00:18.2:   bridge window [io  0xb000-0xbfff]
[    4.008050] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    4.008065] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.008089] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    4.008095] pci 0000:00:18.3:   bridge window [io  0xa000-0xafff]
[    4.008113] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    4.008126] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.008150] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    4.008156] pci 0000:00:18.4:   bridge window [io  0x9000-0x9fff]
[    4.008174] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    4.008186] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.008210] pci 0000:00:18.5: PCI bridge to [bus 20]
[    4.008217] pci 0000:00:18.5:   bridge window [io  0x8000-0x8fff]
[    4.008235] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    4.008247] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.008271] pci 0000:00:18.6: PCI bridge to [bus 21]
[    4.008277] pci 0000:00:18.6:   bridge window [io  0x7000-0x7fff]
[    4.008296] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    4.008308] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.008332] pci 0000:00:18.7: PCI bridge to [bus 22]
[    4.008338] pci 0000:00:18.7:   bridge window [io  0x6000-0x6fff]
[    4.008356] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    4.008368] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.008393] pci_bus 0000:00: resource 4 [io  0x0d00-0xffff window]
[    4.008394] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    4.008394] pci_bus 0000:00: resource 6 [mem 0xfef00000-0xffdfffff window]
[    4.008395] pci_bus 0000:00: resource 7 [mem 0xfed45000-0xfedfffff window]
[    4.008395] pci_bus 0000:00: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    4.008396] pci_bus 0000:00: resource 9 [mem 0xfa300000-0xfebfffff window]
[    4.008397] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    4.008397] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xefffffff window]
[    4.008398] pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
[    4.008399] pci_bus 0000:00: resource 13 [mem 0x000c4000-0x000c7fff window]
[    4.008399] pci_bus 0000:00: resource 14 [mem 0x000c8000-0x000cbfff window]
[    4.008400] pci_bus 0000:00: resource 15 [mem 0x000d4000-0x000d7fff window]
[    4.008400] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000dbfff window]
[    4.008401] pci_bus 0000:00: resource 17 [mem 0x000e4000-0x000e7fff window]
[    4.008402] pci_bus 0000:00: resource 18 [mem 0x000e8000-0x000ebfff window]
[    4.008402] pci_bus 0000:00: resource 19 [mem 0x000ec000-0x000effff window]
[    4.008403] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    4.008404] pci_bus 0000:02: resource 1 [mem 0xfc000000-0xfc9fffff]
[    4.008404] pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf84fffff 64bit pref]
[    4.008405] pci_bus 0000:02: resource 4 [io  0x0d00-0xffff window]
[    4.008405] pci_bus 0000:02: resource 5 [io  0x0000-0x0cf7 window]
[    4.008406] pci_bus 0000:02: resource 6 [mem 0xfef00000-0xffdfffff window]
[    4.008407] pci_bus 0000:02: resource 7 [mem 0xfed45000-0xfedfffff window]
[    4.008407] pci_bus 0000:02: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    4.008408] pci_bus 0000:02: resource 9 [mem 0xfa300000-0xfebfffff window]
[    4.008408] pci_bus 0000:02: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    4.008409] pci_bus 0000:02: resource 11 [mem 0xc0000000-0xefffffff window]
[    4.008410] pci_bus 0000:02: resource 12 [mem 0x000a0000-0x000bffff window]
[    4.008410] pci_bus 0000:02: resource 13 [mem 0x000c4000-0x000c7fff window]
[    4.008411] pci_bus 0000:02: resource 14 [mem 0x000c8000-0x000cbfff window]
[    4.008411] pci_bus 0000:02: resource 15 [mem 0x000d4000-0x000d7fff window]
[    4.008412] pci_bus 0000:02: resource 16 [mem 0x000d8000-0x000dbfff window]
[    4.008413] pci_bus 0000:02: resource 17 [mem 0x000e4000-0x000e7fff window]
[    4.008413] pci_bus 0000:02: resource 18 [mem 0x000e8000-0x000ebfff window]
[    4.008414] pci_bus 0000:02: resource 19 [mem 0x000ec000-0x000effff window]
[    4.008415] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    4.008415] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    4.008416] pci_bus 0000:03: resource 2 [mem 0xfef00000-0xff0fffff 64bit pref]
[    4.008416] pci_bus 0000:04: resource 1 [mem 0xfe900000-0xfe9fffff]
[    4.008417] pci_bus 0000:04: resource 2 [mem 0xfa200000-0xfa2fffff 64bit pref]
[    4.008418] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]
[    4.008418] pci_bus 0000:05: resource 2 [mem 0xfa100000-0xfa1fffff 64bit pref]
[    4.008419] pci_bus 0000:06: resource 1 [mem 0xfe700000-0xfe7fffff]
[    4.008419] pci_bus 0000:06: resource 2 [mem 0xfa000000-0xfa0fffff 64bit pref]
[    4.008420] pci_bus 0000:07: resource 1 [mem 0xfe600000-0xfe6fffff]
[    4.008421] pci_bus 0000:07: resource 2 [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    4.008421] pci_bus 0000:08: resource 1 [mem 0xfe500000-0xfe5fffff]
[    4.008422] pci_bus 0000:08: resource 2 [mem 0xf9e00000-0xf9efffff 64bit pref]
[    4.008422] pci_bus 0000:09: resource 1 [mem 0xfe400000-0xfe4fffff]
[    4.008423] pci_bus 0000:09: resource 2 [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    4.008424] pci_bus 0000:0a: resource 1 [mem 0xfe300000-0xfe3fffff]
[    4.008424] pci_bus 0000:0a: resource 2 [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    4.008425] pci_bus 0000:0b: resource 0 [io  0x3000-0x3fff]
[    4.008425] pci_bus 0000:0b: resource 1 [mem 0xfe200000-0xfe2fffff]
[    4.008426] pci_bus 0000:0b: resource 2 [mem 0xff100000-0xff2fffff 64bit pref]
[    4.008426] pci_bus 0000:0c: resource 1 [mem 0xfe100000-0xfe1fffff]
[    4.008427] pci_bus 0000:0c: resource 2 [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    4.008428] pci_bus 0000:0d: resource 1 [mem 0xfe000000-0xfe0fffff]
[    4.008428] pci_bus 0000:0d: resource 2 [mem 0xf9a00000-0xf9afffff 64bit pref]
[    4.008429] pci_bus 0000:0e: resource 1 [mem 0xfdf00000-0xfdffffff]
[    4.008429] pci_bus 0000:0e: resource 2 [mem 0xf9900000-0xf99fffff 64bit pref]
[    4.008430] pci_bus 0000:0f: resource 1 [mem 0xfde00000-0xfdefffff]
[    4.008431] pci_bus 0000:0f: resource 2 [mem 0xf9800000-0xf98fffff 64bit pref]
[    4.008431] pci_bus 0000:10: resource 1 [mem 0xfdd00000-0xfddfffff]
[    4.008432] pci_bus 0000:10: resource 2 [mem 0xf9700000-0xf97fffff 64bit pref]
[    4.008432] pci_bus 0000:11: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    4.008433] pci_bus 0000:11: resource 2 [mem 0xf9600000-0xf96fffff 64bit pref]
[    4.008434] pci_bus 0000:12: resource 1 [mem 0xfdb00000-0xfdbfffff]
[    4.008434] pci_bus 0000:12: resource 2 [mem 0xf9500000-0xf95fffff 64bit pref]
[    4.008435] pci_bus 0000:13: resource 1 [mem 0xfda00000-0xfdafffff]
[    4.008435] pci_bus 0000:13: resource 2 [mem 0xf9400000-0xf94fffff 64bit pref]
[    4.008436] pci_bus 0000:14: resource 1 [mem 0xfd900000-0xfd9fffff]
[    4.008436] pci_bus 0000:14: resource 2 [mem 0xf9300000-0xf93fffff 64bit pref]
[    4.008437] pci_bus 0000:15: resource 1 [mem 0xfd800000-0xfd8fffff]
[    4.008438] pci_bus 0000:15: resource 2 [mem 0xf9200000-0xf92fffff 64bit pref]
[    4.008438] pci_bus 0000:16: resource 1 [mem 0xfd700000-0xfd7fffff]
[    4.008439] pci_bus 0000:16: resource 2 [mem 0xf9100000-0xf91fffff 64bit pref]
[    4.008439] pci_bus 0000:17: resource 1 [mem 0xfd600000-0xfd6fffff]
[    4.008440] pci_bus 0000:17: resource 2 [mem 0xf9000000-0xf90fffff 64bit pref]
[    4.008441] pci_bus 0000:18: resource 1 [mem 0xfd500000-0xfd5fffff]
[    4.008441] pci_bus 0000:18: resource 2 [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    4.008442] pci_bus 0000:19: resource 0 [io  0xf000-0xffff]
[    4.008443] pci_bus 0000:19: resource 1 [mem 0xfd400000-0xfd4fffff]
[    4.008443] pci_bus 0000:19: resource 2 [mem 0xf8e00000-0xf8efffff 64bit pref]
[    4.008444] pci_bus 0000:1a: resource 0 [io  0xe000-0xefff]
[    4.008444] pci_bus 0000:1a: resource 1 [mem 0xfd300000-0xfd3fffff]
[    4.008445] pci_bus 0000:1a: resource 2 [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    4.008445] pci_bus 0000:1b: resource 0 [io  0xd000-0xdfff]
[    4.008446] pci_bus 0000:1b: resource 1 [mem 0xfd200000-0xfd2fffff]
[    4.008447] pci_bus 0000:1b: resource 2 [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    4.008447] pci_bus 0000:1c: resource 0 [io  0xc000-0xcfff]
[    4.008448] pci_bus 0000:1c: resource 1 [mem 0xfd100000-0xfd1fffff]
[    4.008448] pci_bus 0000:1c: resource 2 [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    4.008449] pci_bus 0000:1d: resource 0 [io  0xb000-0xbfff]
[    4.008450] pci_bus 0000:1d: resource 1 [mem 0xfd000000-0xfd0fffff]
[    4.008450] pci_bus 0000:1d: resource 2 [mem 0xf8a00000-0xf8afffff 64bit pref]
[    4.008451] pci_bus 0000:1e: resource 0 [io  0xa000-0xafff]
[    4.008451] pci_bus 0000:1e: resource 1 [mem 0xfcf00000-0xfcffffff]
[    4.008452] pci_bus 0000:1e: resource 2 [mem 0xf8900000-0xf89fffff 64bit pref]
[    4.008453] pci_bus 0000:1f: resource 0 [io  0x9000-0x9fff]
[    4.008453] pci_bus 0000:1f: resource 1 [mem 0xfce00000-0xfcefffff]
[    4.008454] pci_bus 0000:1f: resource 2 [mem 0xf8800000-0xf88fffff 64bit pref]
[    4.008454] pci_bus 0000:20: resource 0 [io  0x8000-0x8fff]
[    4.008455] pci_bus 0000:20: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    4.008455] pci_bus 0000:20: resource 2 [mem 0xf8700000-0xf87fffff 64bit pref]
[    4.008456] pci_bus 0000:21: resource 0 [io  0x7000-0x7fff]
[    4.008457] pci_bus 0000:21: resource 1 [mem 0xfcc00000-0xfccfffff]
[    4.008457] pci_bus 0000:21: resource 2 [mem 0xf8600000-0xf86fffff 64bit pref]
[    4.008458] pci_bus 0000:22: resource 0 [io  0x6000-0x6fff]
[    4.008458] pci_bus 0000:22: resource 1 [mem 0xfcb00000-0xfcbfffff]
[    4.008459] pci_bus 0000:22: resource 2 [mem 0xf8500000-0xf85fffff 64bit pref]
[    4.008515] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    4.008578] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.008812] PCI: CLS 32 bytes, default 64
[    4.008837] Trying to unpack rootfs image as initramfs...
[    5.013278] Freeing initrd memory: 77368K
[    5.013293] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    5.013295] software IO TLB: mapped [mem 0x00000000bc000000-0x00000000c0000000] (64MB)
[    5.048257] Initialise system trusted keyrings
[    5.048266] Key type blacklist registered
[    5.048610] workingset: timestamp_bits=36 max_order=28 bucket_order=0
[    5.049574] zbud: loaded
[    5.052325] integrity: Platform Keyring initialized
[    5.060334] NET: Registered protocol family 38
[    5.060338] Key type asymmetric registered
[    5.060339] Asymmetric key parser 'x509' registered
[    5.060348] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    5.060893] io scheduler mq-deadline registered
[    5.060894] io scheduler kyber registered
[    5.060932] io scheduler bfq registered
[    5.063350] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    5.063916] pcieport 0000:00:15.0: PME: Signaling with IRQ 24
[    5.064000] pcieport 0000:00:15.0: pciehp: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.064780] pcieport 0000:00:15.1: PME: Signaling with IRQ 25
[    5.064850] pcieport 0000:00:15.1: pciehp: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.065605] pcieport 0000:00:15.2: PME: Signaling with IRQ 26
[    5.065675] pcieport 0000:00:15.2: pciehp: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.066418] pcieport 0000:00:15.3: PME: Signaling with IRQ 27
[    5.066486] pcieport 0000:00:15.3: pciehp: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.067222] pcieport 0000:00:15.4: PME: Signaling with IRQ 28
[    5.067291] pcieport 0000:00:15.4: pciehp: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.068019] pcieport 0000:00:15.5: PME: Signaling with IRQ 29
[    5.068095] pcieport 0000:00:15.5: pciehp: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.068829] pcieport 0000:00:15.6: PME: Signaling with IRQ 30
[    5.068897] pcieport 0000:00:15.6: pciehp: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.069639] pcieport 0000:00:15.7: PME: Signaling with IRQ 31
[    5.069707] pcieport 0000:00:15.7: pciehp: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.070442] pcieport 0000:00:16.0: PME: Signaling with IRQ 32
[    5.070510] pcieport 0000:00:16.0: pciehp: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.071251] pcieport 0000:00:16.1: PME: Signaling with IRQ 33
[    5.071318] pcieport 0000:00:16.1: pciehp: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.072032] pcieport 0000:00:16.2: PME: Signaling with IRQ 34
[    5.072106] pcieport 0000:00:16.2: pciehp: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.072814] pcieport 0000:00:16.3: PME: Signaling with IRQ 35
[    5.072882] pcieport 0000:00:16.3: pciehp: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.073598] pcieport 0000:00:16.4: PME: Signaling with IRQ 36
[    5.073670] pcieport 0000:00:16.4: pciehp: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.074395] pcieport 0000:00:16.5: PME: Signaling with IRQ 37
[    5.074461] pcieport 0000:00:16.5: pciehp: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.075180] pcieport 0000:00:16.6: PME: Signaling with IRQ 38
[    5.075246] pcieport 0000:00:16.6: pciehp: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.075952] pcieport 0000:00:16.7: PME: Signaling with IRQ 39
[    5.076018] pcieport 0000:00:16.7: pciehp: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.076754] pcieport 0000:00:17.0: PME: Signaling with IRQ 40
[    5.076820] pcieport 0000:00:17.0: pciehp: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.077547] pcieport 0000:00:17.1: PME: Signaling with IRQ 41
[    5.077613] pcieport 0000:00:17.1: pciehp: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.078335] pcieport 0000:00:17.2: PME: Signaling with IRQ 42
[    5.078401] pcieport 0000:00:17.2: pciehp: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.079140] pcieport 0000:00:17.3: PME: Signaling with IRQ 43
[    5.079206] pcieport 0000:00:17.3: pciehp: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.079926] pcieport 0000:00:17.4: PME: Signaling with IRQ 44
[    5.079992] pcieport 0000:00:17.4: pciehp: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.080715] pcieport 0000:00:17.5: PME: Signaling with IRQ 45
[    5.080780] pcieport 0000:00:17.5: pciehp: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.081511] pcieport 0000:00:17.6: PME: Signaling with IRQ 46
[    5.081572] pcieport 0000:00:17.6: pciehp: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.082885] pcieport 0000:00:17.7: PME: Signaling with IRQ 47
[    5.082954] pcieport 0000:00:17.7: pciehp: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.083675] pcieport 0000:00:18.0: PME: Signaling with IRQ 48
[    5.083737] pcieport 0000:00:18.0: pciehp: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.084419] pcieport 0000:00:18.1: PME: Signaling with IRQ 49
[    5.084481] pcieport 0000:00:18.1: pciehp: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.085160] pcieport 0000:00:18.2: PME: Signaling with IRQ 50
[    5.085224] pcieport 0000:00:18.2: pciehp: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.085907] pcieport 0000:00:18.3: PME: Signaling with IRQ 51
[    5.085985] pcieport 0000:00:18.3: pciehp: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.086677] pcieport 0000:00:18.4: PME: Signaling with IRQ 52
[    5.086743] pcieport 0000:00:18.4: pciehp: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.087432] pcieport 0000:00:18.5: PME: Signaling with IRQ 53
[    5.087495] pcieport 0000:00:18.5: pciehp: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.088194] pcieport 0000:00:18.6: PME: Signaling with IRQ 54
[    5.088257] pcieport 0000:00:18.6: pciehp: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.088937] pcieport 0000:00:18.7: PME: Signaling with IRQ 55
[    5.088999] pcieport 0000:00:18.7: pciehp: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.089416] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    5.089447] efifb: probing for efifb
[    5.089738] efifb: framebuffer at 0xf0000000, using 3072k, total 3072k
[    5.089740] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    5.089740] efifb: scrolling: redraw
[    5.089742] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    5.089835] Console: switching to colour frame buffer device 128x48
[    5.092793] fb0: EFI VGA frame buffer device
[    5.092807] intel_idle: Please enable MWAIT in BIOS SETUP
[    5.093126] ACPI: AC Adapter [ACAD] (on-line)
[    5.093208] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    5.093252] ACPI: Power Button [PWRF]
[    5.106829] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    5.107404] Non-volatile memory driver v1.3
[    5.117914] rdac: device handler registered
[    5.117960] hp_sw: device handler registered
[    5.117961] emc: device handler registered
[    5.118476] alua: device handler registered
[    5.118572] libphy: Fixed MDIO Bus: probed
[    5.118619] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.118622] ehci-pci: EHCI PCI platform driver
[    5.118633] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.118635] ohci-pci: OHCI PCI platform driver
[    5.118643] uhci_hcd: USB Universal Host Controller Interface driver
[    5.118684] usbcore: registered new interface driver usbserial_generic
[    5.118688] usbserial: USB Serial support registered for generic
[    5.118730] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    5.120880] serio: i8042 KBD port at 0x60,0x64 irq 1
[    5.120884] serio: i8042 AUX port at 0x60,0x64 irq 12
[    5.121029] mousedev: PS/2 mouse device common for all mice
[    5.141837] rtc_cmos 00:01: registered as rtc0
[    5.142193] rtc_cmos 00:01: setting system clock to 2020-11-24T09:34:44 UTC (1606210484)
[    5.142211] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    5.142221] intel_pstate: CPU model not supported
[    5.142531] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    5.142936] EFI Variables Facility v0.08 2004-May-17
[    5.144160] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    5.144497] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    5.147926] hid: raw HID events driver (C) Jiri Kosina
[    5.147978] usbcore: registered new interface driver usbhid
[    5.147979] usbhid: USB HID core driver
[    5.148483] drop_monitor: Initializing network drop monitor service
[    5.148574] Initializing XFRM netlink socket
[    5.148718] NET: Registered protocol family 10
[    5.149520] Segment Routing with IPv6
[    5.149538] NET: Registered protocol family 17
[    5.149959] mpls_gso: MPLS GSO support
[    5.156929] IPI shorthand broadcast: enabled
[    5.156943] AVX2 version of gcm_enc/dec engaged.
[    5.156944] AES CTR mode by8 optimization enabled
[    5.173293] sched_clock: Marking stable (5165841677, 7444999)->(5364267118, -190980442)
[    5.174220] registered taskstats version 1
[    5.174241] Loading compiled-in X.509 certificates
[    5.203077] Loaded X.509 cert 'Build time autogenerated kernel key: c46dfa28fa9f61e138f529b49ac29afd4e094697'
[    5.203847] zswap: loaded using pool lzo/zbud
[    5.211420] Key type encrypted registered
[    5.211762] integrity: Loading X.509 certificate: UEFI:db
[    5.211808] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    5.211809] integrity: Loading X.509 certificate: UEFI:db
[    5.211978] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    5.211978] integrity: Loading X.509 certificate: UEFI:db
[    5.211995] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    5.211996] integrity: Loading X.509 certificate: UEFI:db
[    5.212009] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    5.212572] integrity: Loading X.509 certificate: UEFI:MokListRT
[    5.212742] integrity: Loaded X.509 cert 'Red Hat Secure Boot (CA key 1): 4016841644ce3a810408050766e8f8a29c65f85c'
[    5.212744] ima: No TPM chip found, activating TPM-bypass!
[    5.212747] ima: Allocated hash algorithm: sha1
[    5.212753] ima: No architecture policies found
[    5.212773] evm: Initialising EVM extended attributes:
[    5.212774] evm: security.selinux
[    5.212775] evm: security.ima
[    5.212776] evm: security.capability
[    5.212777] evm: HMAC attrs: 0x1
[    5.223827] Freeing unused decrypted memory: 2036K
[    5.225268] Freeing unused kernel image (initmem) memory: 2356K
[    5.227100] Write protecting the kernel read-only data: 20480k
[    5.228925] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    5.230329] Freeing unused kernel image (rodata/data gap) memory: 1732K
[    5.230506] Run /init as init process
[    5.230507]   with arguments:
[    5.230509]     /init
[    5.230510]     rhgb
[    5.230511]   with environment:
[    5.230513]     HOME=/
[    5.230514]     TERM=linux
[    5.230515]     BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3
[    5.230516]     crashkernel=auto
[    5.261981] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    5.262013] systemd[1]: Detected virtualization vmware.
[    5.262018] systemd[1]: Detected architecture x86-64.
[    5.262021] systemd[1]: Running in initial RAM disk.
[    5.272954] systemd[1]: Set hostname to <localhost.localdomain>.
[    5.327154] random: systemd: uninitialized urandom read (16 bytes read)
[    5.327164] systemd[1]: Reached target Timers.
[    5.327204] random: systemd: uninitialized urandom read (16 bytes read)
[    5.327269] systemd[1]: Listening on udev Control Socket.
[    5.327277] random: systemd: uninitialized urandom read (16 bytes read)
[    5.327282] systemd[1]: Reached target Local File Systems.
[    5.327356] systemd[1]: Listening on Journal Socket.
[    5.329246] systemd[1]: Starting Setup Virtual Console...
[    5.831723] VMware PVSCSI driver - version 1.0.7.0-k
[    5.832439] vmw_pvscsi: using 64bit dma
[    5.832608] vmw_pvscsi: max_id: 65
[    5.832609] vmw_pvscsi: setting ring_pages to 32
[    5.833658] VMware vmxnet3 virtual NIC driver - version 1.5.0.0-k-NAPI
[    5.833698] vmxnet3 0000:0b:00.0: # of Tx queues : 8, # of Rx queues : 8
[    5.833765] vmxnet3 0000:0b:00.0: enabling device (0000 -> 0003)
[    5.839163] vmw_pvscsi: enabling reqCallThreshold
[    5.841850] vmw_pvscsi: driver-based request coalescing enabled
[    5.841851] vmw_pvscsi: using MSI-X
[    5.841967] scsi host0: VMware PVSCSI storage adapter rev 2, req/cmp/msg rings: 32/32/1 pages, cmd_per_lun=254
[    5.842209] vmxnet3 0000:0b:00.0 eth0: NIC Link is Up 10000 Mbps
[    5.842328] vmw_pvscsi 0000:03:00.0: VMware PVSCSI rev 2 host #0
[    5.842601] scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     2.0  PQ: 0 ANSI: 6
[    5.854335] libata version 3.00 loaded.
[    5.859280] ata_piix 0000:00:07.1: version 2.13
[    5.859828] scsi host1: ata_piix
[    5.860446] scsi host2: ata_piix
[    5.860483] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x2050 irq 14
[    5.860484] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x2058 irq 15
[    6.061251] tsc: Refined TSC clocksource calibration: 2095.081 MHz
[    6.061347] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e3309d7adc, max_idle_ns: 440795300192 ns
[    6.066542] clocksource: Switched to clocksource tsc
[    6.101637] [drm] DMA map mode: Caching DMA mappings.
[    6.101862] [drm] Capabilities:
[    6.101863] [drm]   Rect copy.
[    6.101864] [drm]   Cursor.
[    6.101864] [drm]   Cursor bypass.
[    6.101865] [drm]   Cursor bypass 2.
[    6.101865] [drm]   8bit emulation.
[    6.101866] [drm]   Alpha cursor.
[    6.101866] [drm]   Extended Fifo.
[    6.101867] [drm]   Multimon.
[    6.101867] [drm]   Pitchlock.
[    6.101868] [drm]   Irq mask.
[    6.101868] [drm]   Display Topology.
[    6.101869] [drm]   GMR.
[    6.101869] [drm]   Traces.
[    6.101870] [drm]   GMR2.
[    6.101870] [drm]   Screen Object 2.
[    6.101871] [drm]   Command Buffers.
[    6.101871] [drm]   Command Buffers 2.
[    6.101872] [drm]   Guest Backed Resources.
[    6.101872] [drm]   DX Features.
[    6.101873] [drm]   HP Command Queue.
[    6.101873] [drm] Capabilities2:
[    6.101874] [drm]   Grow oTable.
[    6.101875] [drm]   IntraSurface copy.
[    6.101876] [drm] Max GMR ids is 64
[    6.101877] [drm] Max number of GMR pages is 65536
[    6.101878] [drm] Max dedicated hypervisor surface memory is 0 kiB
[    6.101878] [drm] Maximum display memory size is 8192 kiB
[    6.101879] [drm] VRAM at 0xf0000000 size is 8192 kiB
[    6.101880] [drm] MMIO at 0xfb800000 size is 256 kiB
[    6.101914] vmwgfx 0000:00:0f.0: BAR 1: can't reserve [mem 0xf0000000-0xf7ffffff pref]
[    6.101916] [drm] It appears like vesafb is loaded. Ignore above error if any.
[    6.104395] [TTM] Zone  kernel: Available graphics memory: 528423276 KiB
[    6.104397] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    6.104398] [TTM] Initializing pool allocator
[    6.104402] [TTM] Initializing DMA pool allocator
[    6.109261] [drm] Screen Target Display device initialized
[    6.109308] [drm] width 1024
[    6.109315] [drm] height 768
[    6.109321] [drm] bpp 32
[    6.113286] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
[    6.114459] [drm] Using command buffers with DMA pool.
[    6.114466] [drm] Atomic: yes.
[    6.121366] checking generic (f0000000 300000) vs hw (f0000000 800000)
[    6.121368] fb0: switching to svgadrmfb from EFI VGA
[    6.124120] Console: switching to colour dummy device 80x25
[    6.124808] fbcon: svgadrmfb (fb0) is primary device
[    6.126481] Console: switching to colour frame buffer device 128x48
[    6.133258] [drm] Initialized vmwgfx 2.18.0 20200114 for 0000:00:0f.0 on minor 0
[    6.162867] vmxnet3 0000:0b:00.0 ens192: renamed from eth0
[    6.177289] sd 0:0:0:0: [sda] 41943040 512-byte logical blocks: (21.5 GB/20.0 GiB)
[    6.177320] sd 0:0:0:0: [sda] Write Protect is off
[    6.177322] sd 0:0:0:0: [sda] Mode Sense: 61 00 00 00
[    6.177349] sd 0:0:0:0: [sda] Cache data unavailable
[    6.177350] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    6.190491]  sda: sda1 sda2
[    6.191641] sd 0:0:0:0: [sda] Attached SCSI disk
[    6.316315] random: fast init done
[    6.480356] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    6.593583] random: crng init done
[    6.593585] random: 7 urandom warning(s) missed due to ratelimiting
[    6.784356] systemd-journald[775]: Received SIGTERM from PID 1 (systemd).
[    6.813859] printk: systemd: 22 output lines suppressed due to ratelimiting
[    6.868527] SELinux:  Runtime disable is deprecated, use selinux=0 on the kernel cmdline.
[    6.868561] SELinux:  Disabled at runtime.
[    6.900137] audit: type=1404 audit(1606210486.257:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1
[    6.923481] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    6.923500] systemd[1]: Detected virtualization vmware.
[    6.923504] systemd[1]: Detected architecture x86-64.
[    6.924129] systemd[1]: Set hostname to <localhost.localdomain>.
[    6.970262] systemd[1]: Configuration file /usr/lib/systemd/system/rc-local.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    7.022334] systemd[1]: Stopped Switch Root.
[    7.022536] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[    7.022582] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    7.022590] systemd[1]: Stopped Journal Service.
[    7.023336] systemd[1]: Starting Journal Service...
[    7.042715] EXT4-fs (sda2): re-mounted. Opts: (null)
[    7.225090] systemd-journald[4324]: Received request to flush runtime journal from PID 1
[    7.393290] piix4_smbus 0000:00:07.3: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
[    7.394977] vmw_vmci 0000:00:07.7: enabling device (0000 -> 0003)
[    7.397365] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x12000, irq 16
[    7.397453] vmw_vmci 0000:00:07.7: Using capabilities 0x1c
[    7.400441] Guest personality initialized and is active
[    7.401640] VMCI host device registered (name=vmci, major=10, minor=61)
[    7.401641] Initialized host personality
[    7.477578] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    7.487199] NET: Registered protocol family 40
[    7.521699] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    7.635073] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    7.786199] vmxnet3 0000:0b:00.0 ens192: intr type 3, mode 0, 9 vectors allocated
[    7.788393] vmxnet3 0000:0b:00.0 ens192: NIC Link is Up 10000 Mbps
[    8.813575] IPv6: ens192: IPv6 duplicate address fe80::31e:222b:18cf:1ea1 used by 00:0c:29:ca:b9:87 detected!
[    9.277383] IPv6: ens192: IPv6 duplicate address fe80::497c:1571:a568:88fe used by 00:0c:29:73:40:92 detected!
[    9.517456] IPv6: ens192: IPv6 duplicate address fe80::31e:222b:18cf:1ea1 used by 00:0c:29:ca:b9:87 detected!
[    9.606439] IPv6: ens192: IPv6 duplicate address fe80::31e:222b:18cf:1ea1 used by 00:0c:29:ca:b9:87 detected!
[    9.789218] IPv6: ens192: IPv6 duplicate address fe80::497c:1571:a568:88fe used by 00:0c:29:73:40:92 detected!

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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-11-24 15:03                             ` Rahul Gopakumar
@ 2020-11-30 16:55                               ` Mike Rapoport
  2020-12-11 16:16                               ` Rahul Gopakumar
  1 sibling, 0 replies; 21+ messages in thread
From: Mike Rapoport @ 2020-11-30 16:55 UTC (permalink / raw)
  To: Rahul Gopakumar
  Cc: bhe, linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram

Hi Rahul,

On Tue, Nov 24, 2020 at 03:03:40PM +0000, Rahul Gopakumar wrote:
> Hi Baoquan,
> 
> We applied the new patch to 5.10 rc3 and tested it. We are still
> observing the same page corruption issue which we saw with the
> old patch. This is causing 3 secs delay in boot time.
> 
> Attached dmesg log from the new patch and also from vanilla
> 5.10 rc3 kernel.
> 
> There are multiple lines like below in the dmesg log of the
> new patch.
> 
> "BUG: Bad page state in process swapper  pfn:ab08001"

Can you please run your test with the below patch and send output of

	dmesg | grep defer


diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index eaa227a479e4..ce7ec660c777 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -455,6 +455,7 @@ defer_init(int nid, unsigned long pfn, unsigned long end_pfn)
 	nr_initialised++;
 	if ((nr_initialised > PAGES_PER_SECTION) &&
 	    (pfn & (PAGES_PER_SECTION - 1)) == 0) {
+		pr_info("=> %s: nid: %d pfn: %lx\n", __func__, nid, pfn);
 		NODE_DATA(nid)->first_deferred_pfn = pfn;
 		return true;
 	}

> ________________________________________
> From: bhe@redhat.com <bhe@redhat.com>
> Sent: 22 November 2020 6:38 AM
> To: Rahul Gopakumar
> Cc: linux-mm@kvack.org; linux-kernel@vger.kernel.org; akpm@linux-foundation.org; natechancellor@gmail.com; ndesaulniers@google.com; clang-built-linux@googlegroups.com; rostedt@goodmis.org; Rajender M; Yiu Cho Lau; Peter Jonasson; Venkatesh Rajaram
> Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
> 
> On 11/20/20 at 03:11am, Rahul Gopakumar wrote:
> > Hi Baoquan,
> >
> > To which commit should we apply the draft patch. We tried applying
> > the patch to the commit 3e4fb4346c781068610d03c12b16c0cfb0fd24a3
> > (the one we used for applying the previous patch) but it fails.
> 
> I tested on 5.10-rc3+. You can append below change to the old patch in
> your testing kernel.
> 
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index fa6076e1a840..5e5b74e88d69 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -448,6 +448,8 @@ defer_init(int nid, unsigned long pfn, unsigned long end_pfn)
>         if (end_pfn < pgdat_end_pfn(NODE_DATA(nid)))
>                 return false;
> 
> +       if (NODE_DATA(nid)->first_deferred_pfn != ULONG_MAX)
> +               return true;
>         /*
>          * We start only with one section of pages, more pages are added as
>          * needed until the rest of deferred pages are initialized.
> 




-- 
Sincerely yours,
Mike.

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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-11-24 15:03                             ` Rahul Gopakumar
  2020-11-30 16:55                               ` Mike Rapoport
@ 2020-12-11 16:16                               ` Rahul Gopakumar
  2020-12-13 15:15                                 ` bhe
  1 sibling, 1 reply; 21+ messages in thread
From: Rahul Gopakumar @ 2020-12-11 16:16 UTC (permalink / raw)
  To: bhe
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram, Mike Rapoport

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

Hi Baoquan,

We re-evaluated your last patch and it seems to be fixing the
initial performance bug reported. During our previous testing,
we did not apply the patch rightly hence it was reporting
some issues. 

Here is the dmesg log confirming no delay in the draft patch.

Vanilla (5.10 rc3)
------------------

[    0.024011] On node 2 totalpages: 89391104
[    0.024012]   Normal zone: 1445888 pages used for memmap
[    0.024012]   Normal zone: 89391104 pages, LIFO batch:63
[    2.054646] ACPI: PM-Timer IO Port: 0x448 --------------> 2 secs delay

Patch
------

[    0.024166] On node 2 totalpages: 89391104
[    0.024167]   Normal zone: 1445888 pages used for memmap
[    0.024167]   Normal zone: 89391104 pages, LIFO batch:63
[    0.026694] ACPI: PM-Timer IO Port: 0x448 --------------> No delay

Attached dmesg logs. Let me know if anything is needed from our end.



From: Rahul Gopakumar <gopakumarr@vmware.com>
Sent: 24 November 2020 8:33 PM
To: bhe@redhat.com <bhe@redhat.com>
Cc: linux-mm@kvack.org <linux-mm@kvack.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; akpm@linux-foundation.org <akpm@linux-foundation.org>; natechancellor@gmail.com <natechancellor@gmail.com>; ndesaulniers@google.com <ndesaulniers@google.com>; clang-built-linux@googlegroups.com <clang-built-linux@googlegroups.com>; rostedt@goodmis.org <rostedt@goodmis.org>; Rajender M <manir@vmware.com>; Yiu Cho Lau <lauyiuch@vmware.com>; Peter Jonasson <pjonasson@vmware.com>; Venkatesh Rajaram <rajaramv@vmware.com>
Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel 
 
Hi Baoquan,

We applied the new patch to 5.10 rc3 and tested it. We are still
observing the same page corruption issue which we saw with the
old patch. This is causing 3 secs delay in boot time.

Attached dmesg log from the new patch and also from vanilla
5.10 rc3 kernel.

There are multiple lines like below in the dmesg log of the
new patch.

"BUG: Bad page state in process swapper  pfn:ab08001"

________________________________________
From: bhe@redhat.com <bhe@redhat.com>
Sent: 22 November 2020 6:38 AM
To: Rahul Gopakumar
Cc: linux-mm@kvack.org; linux-kernel@vger.kernel.org; akpm@linux-foundation.org; natechancellor@gmail.com; ndesaulniers@google.com; clang-built-linux@googlegroups.com; rostedt@goodmis.org; Rajender M; Yiu Cho Lau; Peter Jonasson; Venkatesh Rajaram
Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel

On 11/20/20 at 03:11am, Rahul Gopakumar wrote:
> Hi Baoquan,
>
> To which commit should we apply the draft patch. We tried applying
> the patch to the commit 3e4fb4346c781068610d03c12b16c0cfb0fd24a3
> (the one we used for applying the previous patch) but it fails.

I tested on 5.10-rc3+. You can append below change to the old patch in
your testing kernel.

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index fa6076e1a840..5e5b74e88d69 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -448,6 +448,8 @@ defer_init(int nid, unsigned long pfn, unsigned long end_pfn)
        if (end_pfn < pgdat_end_pfn(NODE_DATA(nid)))
                return false;

+       if (NODE_DATA(nid)->first_deferred_pfn != ULONG_MAX)
+               return true;
        /*
         * We start only with one section of pages, more pages are added as
         * needed until the rest of deferred pages are initialized.

[-- Attachment #2: patch-dmesg.log --]
[-- Type: application/octet-stream, Size: 140111 bytes --]

[    0.000000] Linux version 5.10.0-rc3 (root@w1-hs1-mwenig-dhcp-175.eng.vmware.com) (gcc (GCC) 8.3.1 20190507 (Red Hat 8.3.1-4), GNU ld version 2.30-58.el8) #1 SMP Tue Dec 8 09:46:47 EST 2020
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    0.000000] Disabled fast string operations
[    0.000000] ------------[ cut here ]------------
[    0.000000] XSAVE consistency problem, dumping leaves
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/fpu/xstate.c:657 fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.10.0-rc3 #1
[    0.000000] RIP: 0010:fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Code: 85 7c fd ff ff 44 3b 35 f1 55 22 00 74 2c 80 3d 6c 78 bc ff 00 75 15 48 c7 c7 a8 8c ae a3 c6 05 5c 78 bc ff 01 e8 e2 15 b9 fe <0f> 0b 83 3d 9a b9 68 ff 00 74 05 e8 40 d0 b8 fe 48 8b 35 0c b4 bf
[    0.000000] RSP: 0000:ffffffffa3e03e60 EFLAGS: 00010086 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: 0000000000000a88 RCX: 0000000000000000
[    0.000000] RDX: ffffffffa3e03c70 RSI: 00000000ffff7fff RDI: ffffffffa4a2cecc
[    0.000000] RBP: 0000000000000010 R08: 0000000000000000 R09: c0000000ffff7fff
[    0.000000] R10: 0000000000000001 R11: ffffffffa3e03c68 R12: 0000000000000a88
[    0.000000] R13: 0000000000000008 R14: 0000000000000988 R15: 0000000000000001
[    0.000000] FS:  0000000000000000(0000) GS:ffffffffa475f000(0000) knlGS:0000000000000000
[    0.000000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: ffff88800e0b0000 CR3: 000000e7943f6000 CR4: 00000000000406a0
[    0.000000] Call Trace:
[    0.000000]  ? 0xffffffffa2a00000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xc2/0xcb
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.10.0-rc3 #1
[    0.000000] Call Trace:
[    0.000000]  ? dump_stack+0x57/0x6a
[    0.000000]  ? __warn.cold.14+0xe/0x3d
[    0.000000]  ? fpu__init_system_xstate+0x415/0x8d3
[    0.000000]  ? report_bug+0xc0/0xf0
[    0.000000]  ? early_fixup_exception+0x59/0xa6
[    0.000000]  ? early_idt_handler_common+0x2f/0x3a
[    0.000000]  ? fpu__init_system_xstate+0x415/0x8d3
[    0.000000]  ? 0xffffffffa2a00000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xc2/0xcb
[    0.000000] random: get_random_bytes called from print_oops_end_marker+0x26/0x40 with crng_init=0
[    0.000000] ---[ end trace dbd227728cb5138a ]---
[    0.000000] CPUID[0d, 00]: eax=000002e7 ebx=00000a88 ecx=00000a88 edx=00000000
[    0.000000] CPUID[0d, 01]: eax=0000000f ebx=00000a88 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 02]: eax=00000100 ebx=00000240 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 03]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 04]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 05]: eax=00000040 ebx=00000440 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 06]: eax=00000200 ebx=00000480 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 07]: eax=00000400 ebx=00000680 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 08]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 09]: eax=00000008 ebx=00000a80 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0d]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0e]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0f]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 10]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 11]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 12]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 13]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 14]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 15]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 16]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 17]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 18]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 19]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2696 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000ef23fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000e0a1017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a1018-0x000000000e0a2857] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a2858-0x000000000e0a3017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a3018-0x000000000e0a5057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a5058-0x000000000e0a6017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a6018-0x000000000e0ae057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0ae058-0x000000000ef23fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] efi: EFI v2.31 by VMware, Inc.
[    0.000000] efi: SMBIOS=0xef42000 ACPI 2.0=0xff66000 MEMATTR=0xfda1018 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.000000] vmware: hypercall mode: 0x02
[    0.000000] Hypervisor detected: VMware
[    0.000000] vmware: TSC freq read from hypervisor : 2095.078 MHz
[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[    0.000000] vmware: using clock offset of 7557012591 ns
[    0.000011] tsc: Detected 2095.078 MHz processor
[    0.002021] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.002023] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.002028] last_pfn = 0x10340000 max_arch_pfn = 0x400000000
[    0.002061] MTRR default type: uncachable
[    0.002061] MTRR fixed ranges enabled:
[    0.002062]   00000-9FFFF write-back
[    0.002063]   A0000-FFFFF uncachable
[    0.002063] MTRR variable ranges enabled:
[    0.002064]   0 base 000000000000 mask 1E0000000000 write-back
[    0.002065]   1 base 0000C0000000 mask 1FFFC0000000 uncachable
[    0.002065]   2 disabled
[    0.002066]   3 disabled
[    0.002066]   4 disabled
[    0.002067]   5 disabled
[    0.002067]   6 disabled
[    0.002067]   7 disabled
[    0.002078] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002097] total RAM covered: 2096128M
[    0.002149]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002150]  gran_size: 64K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002151]  gran_size: 64K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002152]  gran_size: 64K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002153]  gran_size: 64K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002154]  gran_size: 64K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002155]  gran_size: 64K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002155]  gran_size: 64K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002156]  gran_size: 64K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002157]  gran_size: 64K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002158]  gran_size: 64K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002159]  gran_size: 64K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002159]  gran_size: 64K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002160]  gran_size: 64K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002161]  gran_size: 64K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002162]  gran_size: 64K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002163]  gran_size: 128K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002164]  gran_size: 128K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002164]  gran_size: 128K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002165]  gran_size: 128K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002166]  gran_size: 128K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002167]  gran_size: 128K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002168]  gran_size: 128K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002168]  gran_size: 128K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002169]  gran_size: 128K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002170]  gran_size: 128K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002171]  gran_size: 128K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002171]  gran_size: 128K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002172]  gran_size: 128K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002173]  gran_size: 128K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002174]  gran_size: 128K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002175]  gran_size: 256K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002175]  gran_size: 256K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002176]  gran_size: 256K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002177]  gran_size: 256K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002178]  gran_size: 256K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002179]  gran_size: 256K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002179]  gran_size: 256K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002180]  gran_size: 256K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002181]  gran_size: 256K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002182]  gran_size: 256K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002182]  gran_size: 256K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002183]  gran_size: 256K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002184]  gran_size: 256K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002185]  gran_size: 256K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002186]  gran_size: 512K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002186]  gran_size: 512K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002187]  gran_size: 512K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002188]  gran_size: 512K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002189]  gran_size: 512K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002190]  gran_size: 512K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002191]  gran_size: 512K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002191]  gran_size: 512K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002192]  gran_size: 512K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002193]  gran_size: 512K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002194]  gran_size: 512K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002195]  gran_size: 512K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002195]  gran_size: 512K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002196]  gran_size: 1M 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002197]  gran_size: 1M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002198]  gran_size: 1M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002199]  gran_size: 1M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002199]  gran_size: 1M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002200]  gran_size: 1M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002201]  gran_size: 1M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002202]  gran_size: 1M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002203]  gran_size: 1M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002203]  gran_size: 1M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002204]  gran_size: 1M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002205]  gran_size: 1M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002206]  gran_size: 2M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002206]  gran_size: 2M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002207]  gran_size: 2M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002208]  gran_size: 2M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002209]  gran_size: 2M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002210]  gran_size: 2M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002210]  gran_size: 2M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002211]  gran_size: 2M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002212]  gran_size: 2M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002213]  gran_size: 2M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002214]  gran_size: 2M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002214]  gran_size: 4M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002215]  gran_size: 4M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002216]  gran_size: 4M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002217]  gran_size: 4M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002217]  gran_size: 4M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002218]  gran_size: 4M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002219]  gran_size: 4M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002220]  gran_size: 4M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002221]  gran_size: 4M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002221]  gran_size: 4M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002222]  gran_size: 8M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002223]  gran_size: 8M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002224]  gran_size: 8M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002225]  gran_size: 8M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002225]  gran_size: 8M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002226]  gran_size: 8M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002227]  gran_size: 8M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002228]  gran_size: 8M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002229]  gran_size: 8M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002229]  gran_size: 16M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002230]  gran_size: 16M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002231]  gran_size: 16M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002232]  gran_size: 16M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002233]  gran_size: 16M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002233]  gran_size: 16M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002234]  gran_size: 16M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002235]  gran_size: 16M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002236]  gran_size: 32M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002237]  gran_size: 32M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002237]  gran_size: 32M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002238]  gran_size: 32M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002239]  gran_size: 32M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002240]  gran_size: 32M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002241]  gran_size: 32M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002241]  gran_size: 64M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002242]  gran_size: 64M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002243]  gran_size: 64M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002244]  gran_size: 64M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002245]  gran_size: 64M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002245]  gran_size: 64M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002246]  gran_size: 128M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002247]  gran_size: 128M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002248]  gran_size: 128M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002249]  gran_size: 128M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002249]  gran_size: 128M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002250]  gran_size: 256M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002251]  gran_size: 256M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002252]  gran_size: 256M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002252]  gran_size: 256M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002253]  gran_size: 512M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002254]  gran_size: 512M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002255]  gran_size: 512M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002256]  gran_size: 1G 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002256]  gran_size: 1G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002257]  gran_size: 2G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1537G
[    0.002258] mtrr_cleanup: can not find optimal value
[    0.002258] please specify mtrr_gran_size/mtrr_chunk_size
[    0.002269] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.002273] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
[    0.007547] kexec: Reserving the low 1M of memory for crashkernel
[    0.007566] Using GB pages for direct mapping
[    0.007879] Secure boot disabled
[    0.007880] RAMDISK: [mem 0x05df8000-0x0a985fff]
[    0.007891] ACPI: Early table checksum verification disabled
[    0.007893] ACPI: RSDP 0x000000000FF66000 000024 (v02 VMWARE)
[    0.007896] ACPI: XSDT 0x000000000FF66064 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.007901] ACPI: SRAT 0x000000000FF660C0 000660 (v03 VMWARE EFISRAT  06040001 VMW  000007CE)
[    0.007904] ACPI: FACP 0x000000000FF7252C 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.007907] ACPI: DSDT 0x000000000FF66720 00BE0C (v01 PTLTD  Custom   00000000 INTL 20130823)
[    0.007909] ACPI: FACS 0x000000000FF76000 000040
[    0.007911] ACPI: FACS 0x000000000FF76000 000040
[    0.007912] ACPI: APIC 0x000000000FF72694 0004DA (v03 VMWARE EFIAPIC  06040001 VMW  000007CE)
[    0.007914] ACPI: MCFG 0x000000000FF72B6E 00003C (v01 VMWARE EFIMCFG  06040001 VMW  000007CE)
[    0.007916] ACPI: HPET 0x000000000FF72BAA 000038 (v01 VMWARE VMW HPET 00000000 VMW  00000000)
[    0.007918] ACPI: WAET 0x000000000FF72BE2 000028 (v01 VMWARE VMW WAET 06040001 VMW  00000001)
[    0.007920] ACPI: WSMT 0x000000000FF72C0A 000028 (v01 VMWARE VMW WSMT 06040001 VMW  00000001)
[    0.007925] ACPI: Local APIC address 0xfee00000
[    0.007958] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.007959] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.007960] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.007960] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.007961] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.007962] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.007963] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.007963] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.007964] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.007964] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.007965] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.007965] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.007966] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.007966] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.007967] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.007967] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[    0.007968] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.007968] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.007968] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.007969] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.007969] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.007970] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.007970] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[    0.007971] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[    0.007971] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[    0.007972] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.007972] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.007972] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.007973] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.007973] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.007974] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[    0.007974] SRAT: PXM 1 -> APIC 0x3e -> Node 1
[    0.007975] SRAT: PXM 1 -> APIC 0x40 -> Node 1
[    0.007975] SRAT: PXM 1 -> APIC 0x42 -> Node 1
[    0.007976] SRAT: PXM 1 -> APIC 0x44 -> Node 1
[    0.007976] SRAT: PXM 1 -> APIC 0x46 -> Node 1
[    0.007976] SRAT: PXM 1 -> APIC 0x48 -> Node 1
[    0.007977] SRAT: PXM 1 -> APIC 0x4a -> Node 1
[    0.007977] SRAT: PXM 1 -> APIC 0x4c -> Node 1
[    0.007978] SRAT: PXM 1 -> APIC 0x4e -> Node 1
[    0.007978] SRAT: PXM 1 -> APIC 0x50 -> Node 1
[    0.007979] SRAT: PXM 1 -> APIC 0x52 -> Node 1
[    0.007979] SRAT: PXM 1 -> APIC 0x54 -> Node 1
[    0.007980] SRAT: PXM 1 -> APIC 0x56 -> Node 1
[    0.007980] SRAT: PXM 1 -> APIC 0x58 -> Node 1
[    0.007980] SRAT: PXM 1 -> APIC 0x5a -> Node 1
[    0.007981] SRAT: PXM 1 -> APIC 0x5c -> Node 1
[    0.007981] SRAT: PXM 1 -> APIC 0x5e -> Node 1
[    0.007982] SRAT: PXM 1 -> APIC 0x60 -> Node 1
[    0.007982] SRAT: PXM 1 -> APIC 0x62 -> Node 1
[    0.007983] SRAT: PXM 1 -> APIC 0x64 -> Node 1
[    0.007983] SRAT: PXM 1 -> APIC 0x66 -> Node 1
[    0.007984] SRAT: PXM 1 -> APIC 0x68 -> Node 1
[    0.007984] SRAT: PXM 1 -> APIC 0x6a -> Node 1
[    0.007984] SRAT: PXM 1 -> APIC 0x6c -> Node 1
[    0.007985] SRAT: PXM 1 -> APIC 0x6e -> Node 1
[    0.007985] SRAT: PXM 2 -> APIC 0x70 -> Node 2
[    0.007986] SRAT: PXM 2 -> APIC 0x72 -> Node 2
[    0.007986] SRAT: PXM 2 -> APIC 0x74 -> Node 2
[    0.007987] SRAT: PXM 2 -> APIC 0x76 -> Node 2
[    0.007987] SRAT: PXM 2 -> APIC 0x78 -> Node 2
[    0.007988] SRAT: PXM 2 -> APIC 0x7a -> Node 2
[    0.007988] SRAT: PXM 2 -> APIC 0x7c -> Node 2
[    0.007989] SRAT: PXM 2 -> APIC 0x7e -> Node 2
[    0.007989] SRAT: PXM 2 -> APIC 0x80 -> Node 2
[    0.007989] SRAT: PXM 2 -> APIC 0x82 -> Node 2
[    0.007990] SRAT: PXM 2 -> APIC 0x84 -> Node 2
[    0.007990] SRAT: PXM 2 -> APIC 0x86 -> Node 2
[    0.007991] SRAT: PXM 2 -> APIC 0x88 -> Node 2
[    0.007991] SRAT: PXM 2 -> APIC 0x8a -> Node 2
[    0.007992] SRAT: PXM 2 -> APIC 0x8c -> Node 2
[    0.007992] SRAT: PXM 2 -> APIC 0x8e -> Node 2
[    0.007993] SRAT: PXM 2 -> APIC 0x90 -> Node 2
[    0.007993] SRAT: PXM 2 -> APIC 0x92 -> Node 2
[    0.007993] SRAT: PXM 2 -> APIC 0x94 -> Node 2
[    0.007994] SRAT: PXM 2 -> APIC 0x96 -> Node 2
[    0.007994] SRAT: PXM 2 -> APIC 0x98 -> Node 2
[    0.007995] SRAT: PXM 2 -> APIC 0x9a -> Node 2
[    0.007995] SRAT: PXM 2 -> APIC 0x9c -> Node 2
[    0.007996] SRAT: PXM 2 -> APIC 0x9e -> Node 2
[    0.007996] SRAT: PXM 2 -> APIC 0xa0 -> Node 2
[    0.007997] SRAT: PXM 2 -> APIC 0xa2 -> Node 2
[    0.007997] SRAT: PXM 2 -> APIC 0xa4 -> Node 2
[    0.007997] SRAT: PXM 2 -> APIC 0xa6 -> Node 2
[    0.008000] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.008000] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[    0.008001] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x55ffffffff]
[    0.008002] ACPI: SRAT: Node 1 PXM 1 [mem 0x5600000000-0xaaffffffff]
[    0.008002] ACPI: SRAT: Node 2 PXM 2 [mem 0xab00000000-0xfcffffffff]
[    0.008003] ACPI: SRAT: Node 2 PXM 2 [mem 0x10000000000-0x1033fffffff]
[    0.008004] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xbfffffff] -> [mem 0x00000000-0xbfffffff]
[    0.008005] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x55ffffffff] -> [mem 0x00000000-0x55ffffffff]
[    0.008006] NUMA: Node 2 [mem 0xab00000000-0xfcffffffff] + [mem 0x10000000000-0x1033fffffff] -> [mem 0xab00000000-0x1033fffffff]
[    0.008013] NODE_DATA(0) allocated [mem 0x55fffd6000-0x55ffffffff]
[    0.008375] NODE_DATA(1) allocated [mem 0xaafffd6000-0xaaffffffff]
[    0.009167] NODE_DATA(2) allocated [mem 0x1033ffd6000-0x1033fffffff]
[    0.009875] crashkernel: memory value expected
[    0.010566] Zone ranges:
[    0.010567]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.010568]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.010569]   Normal   [mem 0x0000000100000000-0x000001033fffffff]
[    0.010570]   Device   empty
[    0.010571] Movable zone start for each node
[    0.010573] Early memory node ranges
[    0.010573]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.010574]   node   0: [mem 0x0000000000100000-0x000000000ef23fff]
[    0.010575]   node   0: [mem 0x000000000ef2d000-0x000000000ef3bfff]
[    0.010575]   node   0: [mem 0x000000000ef48000-0x000000000ef60fff]
[    0.010576]   node   0: [mem 0x000000000ef66000-0x000000000fee6fff]
[    0.010576]   node   0: [mem 0x000000000ff77000-0x00000000bfffffff]
[    0.010577]   node   0: [mem 0x0000000100000000-0x00000055ffffffff]
[    0.010591]   node   1: [mem 0x0000005600000000-0x000000aaffffffff]
[    0.010605]   node   2: [mem 0x000000ab00000000-0x000000fcffffffff]
[    0.010619]   node   2: [mem 0x0000010000000000-0x000001033fffffff]
[    0.011343] Zeroed struct page in unavailable ranges: 267 pages
[    0.011343] Initmem setup node 0 [mem 0x0000000000001000-0x00000055ffffffff]
[    0.011345] On node 0 totalpages: 89915125
[    0.011346]   DMA zone: 64 pages used for memmap
[    0.011346]   DMA zone: 159 pages reserved
[    0.011347]   DMA zone: 3999 pages, LIFO batch:0
[    0.011368]   DMA32 zone: 12222 pages used for memmap
[    0.011368]   DMA32 zone: 782166 pages, LIFO batch:63
[    0.022689]   Normal zone: 1392640 pages used for memmap
[    0.022691]   Normal zone: 89128960 pages, LIFO batch:63
[    0.023217] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.023220] On node 1 totalpages: 89128960
[    0.023221]   Normal zone: 1392640 pages used for memmap
[    0.023221]   Normal zone: 89128960 pages, LIFO batch:63
[    0.024164] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.024166] On node 2 totalpages: 89391104
[    0.024167]   Normal zone: 1445888 pages used for memmap
[    0.024167]   Normal zone: 89391104 pages, LIFO batch:63
[    0.026694] ACPI: PM-Timer IO Port: 0x448
[    0.026697] ACPI: Local APIC address 0xfee00000
[    0.026716] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.026717] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.026717] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.026718] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.026719] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.026719] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.026720] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.026721] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.026721] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.026722] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.026723] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.026724] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.026724] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.026725] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.026726] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.026726] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.026727] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.026727] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.026728] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.026728] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.026729] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.026729] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.026730] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.026730] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.026730] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.026731] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.026731] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.026732] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.026732] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.026733] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.026733] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.026734] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.026734] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.026735] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.026735] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.026736] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.026736] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.026737] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.026738] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.026739] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.026739] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.026740] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.026740] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.026741] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.026741] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.026742] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.026742] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.026743] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.026743] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    0.026744] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    0.026744] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    0.026744] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    0.026745] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    0.026745] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    0.026746] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    0.026746] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    0.026747] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    0.026747] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    0.026748] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    0.026748] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    0.026749] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[    0.026749] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    0.026749] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[    0.026750] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[    0.026750] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[    0.026751] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[    0.026751] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[    0.026752] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[    0.026752] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[    0.026753] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[    0.026753] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[    0.026754] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[    0.026754] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[    0.026755] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[    0.026755] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[    0.026756] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[    0.026757] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[    0.026757] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[    0.026758] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[    0.026758] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[    0.026759] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[    0.026760] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[    0.026760] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[    0.026761] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[    0.026790] IOAPIC[0]: apic_id 84, version 32, address 0xfec00000, GSI 0-23
[    0.026793] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    0.026794] ACPI: IRQ0 used by override.
[    0.026795] ACPI: IRQ9 used by override.
[    0.026797] Using ACPI (MADT) for SMP configuration information
[    0.026799] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[    0.026804] TSC deadline timer available
[    0.026806] smpboot: Allowing 84 CPUs, 0 hotplug CPUs
[    0.026826] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.026827] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.026828] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.026829] PM: hibernation: Registered nosave memory: [mem 0x0e0a1000-0x0e0a1fff]
[    0.026830] PM: hibernation: Registered nosave memory: [mem 0x0e0a2000-0x0e0a2fff]
[    0.026831] PM: hibernation: Registered nosave memory: [mem 0x0e0a3000-0x0e0a3fff]
[    0.026832] PM: hibernation: Registered nosave memory: [mem 0x0e0a5000-0x0e0a5fff]
[    0.026833] PM: hibernation: Registered nosave memory: [mem 0x0e0a6000-0x0e0a6fff]
[    0.026834] PM: hibernation: Registered nosave memory: [mem 0x0e0ae000-0x0e0aefff]
[    0.026835] PM: hibernation: Registered nosave memory: [mem 0x0ef24000-0x0ef2cfff]
[    0.026836] PM: hibernation: Registered nosave memory: [mem 0x0ef3c000-0x0ef41fff]
[    0.026837] PM: hibernation: Registered nosave memory: [mem 0x0ef42000-0x0ef47fff]
[    0.026838] PM: hibernation: Registered nosave memory: [mem 0x0ef61000-0x0ef65fff]
[    0.026839] PM: hibernation: Registered nosave memory: [mem 0x0fee7000-0x0ff56fff]
[    0.026839] PM: hibernation: Registered nosave memory: [mem 0x0ff57000-0x0ff72fff]
[    0.026840] PM: hibernation: Registered nosave memory: [mem 0x0ff73000-0x0ff76fff]
[    0.026841] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xffbfffff]
[    0.026842] PM: hibernation: Registered nosave memory: [mem 0xffc00000-0xffc29fff]
[    0.026842] PM: hibernation: Registered nosave memory: [mem 0xffc2a000-0xffffffff]
[    0.026843] PM: hibernation: Registered nosave memory: [mem 0xfd00000000-0xffffffffff]
[    0.026845] [mem 0xc0000000-0xffbfffff] available for PCI devices
[    0.026847] Booting paravirtualized kernel on VMware hypervisor
[    0.026850] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.030162] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:84 nr_cpu_ids:84 nr_node_ids:3
[    0.039507] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
[    0.039515] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
[    0.039517] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.039524] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
[    0.039531] pcpu-alloc: [1] 28 29 30 31 32 33 34 35 [1] 36 37 38 39 40 41 42 43 
[    0.039536] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 [1] 52 53 54 55 -- -- -- -- 
[    0.039542] pcpu-alloc: [2] 56 57 58 59 60 61 62 63 [2] 64 65 66 67 68 69 70 71 
[    0.039548] pcpu-alloc: [2] 72 73 74 75 76 77 78 79 [2] 80 81 82 83 -- -- -- -- 
[    0.039593] Built 3 zonelists, mobility grouping on.  Total pages: 264191576
[    0.039593] Policy zone: Normal
[    0.039596] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    0.040553] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.331829] Memory: 3377380K/1073740756K available (12297K kernel code, 5775K rwdata, 4412K rodata, 2356K init, 6444K bss, 16996404K reserved, 0K cma-reserved)
[    0.334004] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=84, Nodes=3
[    0.334051] Kernel/User page tables isolation: enabled
[    0.334103] ftrace: allocating 39728 entries in 156 pages
[    0.348244] ftrace: allocated 156 pages with 4 groups
[    0.349549] rcu: Hierarchical RCU implementation.
[    0.349551] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=84.
[    0.349553] 	Rude variant of Tasks RCU enabled.
[    0.349554] 	Tracing variant of Tasks RCU enabled.
[    0.349555] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.349556] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=84
[    0.352449] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    0.353286] Console: colour dummy device 80x25
[    0.353325] printk: console [tty0] enabled
[    0.353475] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.353478] ACPI: Core revision 20200925
[    0.358568] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.358638] APIC: Switch to symmetric I/O mode setup
[    0.360136] x2apic enabled
[    0.361761] Switched APIC routing to physical x2apic.
[    0.363438] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.363475] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e3306b9ada, max_idle_ns: 440795224413 ns
[    0.363479] Calibrating delay loop (skipped) preset value.. 4190.15 BogoMIPS (lpj=2095078)
[    0.363482] pid_max: default: 86016 minimum: 672
[    0.365425] LSM: Security Framework initializing
[    0.365485] Yama: becoming mindful.
[    0.365524] SELinux:  Initializing.
[    0.465673] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes, vmalloc)
[    0.517728] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc)
[    0.518571] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    0.519819] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    0.522025] Disabled fast string operations
[    0.522175] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.522176] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.522184] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.522186] Spectre V2 : Mitigation: Full generic retpoline
[    0.522187] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.522187] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.522189] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.522190] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.522194] MDS: Mitigation: Clear CPU buffers
[    0.522749] Freeing SMP alternatives memory: 32K
[    0.523984] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8176 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x4)
[    0.524160] Performance Events: Skylake events, core PMU driver.
[    0.524224] core: CPUID marked event: 'cpu cycles' unavailable
[    0.524225] core: CPUID marked event: 'instructions' unavailable
[    0.524226] core: CPUID marked event: 'bus cycles' unavailable
[    0.524227] core: CPUID marked event: 'cache references' unavailable
[    0.524227] core: CPUID marked event: 'cache misses' unavailable
[    0.524228] core: CPUID marked event: 'branch instructions' unavailable
[    0.524229] core: CPUID marked event: 'branch misses' unavailable
[    0.524231] ... version:                1
[    0.524231] ... bit width:              48
[    0.524232] ... generic registers:      4
[    0.524233] ... value mask:             0000ffffffffffff
[    0.524233] ... max period:             000000007fffffff
[    0.524233] ... fixed-purpose events:   0
[    0.524234] ... event mask:             000000000000000f
[    0.524378] rcu: Hierarchical SRCU implementation.
[    0.524560] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.526358] smp: Bringing up secondary CPUs ...
[    0.526455] x86: Booting SMP configuration:
[    0.526456] .... node  #0, CPUs:        #1
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 1 Converting physical 2 to logical package 1
[    0.010354] smpboot: CPU 1 Converting physical 0 to logical die 1
[    0.527265]   #2
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 2 Converting physical 4 to logical package 2
[    0.010354] smpboot: CPU 2 Converting physical 0 to logical die 2
[    0.528562]   #3
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 3 Converting physical 6 to logical package 3
[    0.010354] smpboot: CPU 3 Converting physical 0 to logical die 3
[    0.529767]   #4
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 4 Converting physical 8 to logical package 4
[    0.010354] smpboot: CPU 4 Converting physical 0 to logical die 4
[    0.530719]   #5
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 5 Converting physical 10 to logical package 5
[    0.010354] smpboot: CPU 5 Converting physical 0 to logical die 5
[    0.531852]   #6
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 6 Converting physical 12 to logical package 6
[    0.010354] smpboot: CPU 6 Converting physical 0 to logical die 6
[    0.533545]   #7
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 7 Converting physical 14 to logical package 7
[    0.010354] smpboot: CPU 7 Converting physical 0 to logical die 7
[    0.534200]   #8
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 8 Converting physical 16 to logical package 8
[    0.010354] smpboot: CPU 8 Converting physical 0 to logical die 8
[    0.535188]   #9
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 9 Converting physical 18 to logical package 9
[    0.010354] smpboot: CPU 9 Converting physical 0 to logical die 9
[    0.535901]  #10
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 10 Converting physical 20 to logical package 10
[    0.010354] smpboot: CPU 10 Converting physical 0 to logical die 10
[    0.536623]  #11
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 11 Converting physical 22 to logical package 11
[    0.010354] smpboot: CPU 11 Converting physical 0 to logical die 11
[    0.537110]  #12
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 12 Converting physical 24 to logical package 12
[    0.010354] smpboot: CPU 12 Converting physical 0 to logical die 12
[    0.538124]  #13
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 13 Converting physical 26 to logical package 13
[    0.010354] smpboot: CPU 13 Converting physical 0 to logical die 13
[    0.538550]  #14
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 14 Converting physical 28 to logical package 14
[    0.010354] smpboot: CPU 14 Converting physical 0 to logical die 14
[    0.539278]  #15
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 15 Converting physical 30 to logical package 15
[    0.010354] smpboot: CPU 15 Converting physical 0 to logical die 15
[    0.540136]  #16
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 16 Converting physical 32 to logical package 16
[    0.010354] smpboot: CPU 16 Converting physical 0 to logical die 16
[    0.540766]  #17
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 17 Converting physical 34 to logical package 17
[    0.010354] smpboot: CPU 17 Converting physical 0 to logical die 17
[    0.541918]  #18
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 18 Converting physical 36 to logical package 18
[    0.010354] smpboot: CPU 18 Converting physical 0 to logical die 18
[    0.542552]  #19
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 19 Converting physical 38 to logical package 19
[    0.010354] smpboot: CPU 19 Converting physical 0 to logical die 19
[    0.543168]  #20
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 20 Converting physical 40 to logical package 20
[    0.010354] smpboot: CPU 20 Converting physical 0 to logical die 20
[    0.544012]  #21
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 21 Converting physical 42 to logical package 21
[    0.010354] smpboot: CPU 21 Converting physical 0 to logical die 21
[    0.544753]  #22
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 22 Converting physical 44 to logical package 22
[    0.010354] smpboot: CPU 22 Converting physical 0 to logical die 22
[    0.545549]  #23
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 23 Converting physical 46 to logical package 23
[    0.010354] smpboot: CPU 23 Converting physical 0 to logical die 23
[    0.546168]  #24
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 24 Converting physical 48 to logical package 24
[    0.010354] smpboot: CPU 24 Converting physical 0 to logical die 24
[    0.546927]  #25
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 25 Converting physical 50 to logical package 25
[    0.010354] smpboot: CPU 25 Converting physical 0 to logical die 25
[    0.547652]  #26
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 26 Converting physical 52 to logical package 26
[    0.010354] smpboot: CPU 26 Converting physical 0 to logical die 26
[    0.548556]  #27
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 27 Converting physical 54 to logical package 27
[    0.010354] smpboot: CPU 27 Converting physical 0 to logical die 27

[    0.549225] .... node  #1, CPUs:   #28
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 28 Converting physical 56 to logical package 28
[    0.010354] smpboot: CPU 28 Converting physical 0 to logical die 28
[    0.550114]  #29
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 29 Converting physical 58 to logical package 29
[    0.010354] smpboot: CPU 29 Converting physical 0 to logical die 29
[    0.551081]  #30
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 30 Converting physical 60 to logical package 30
[    0.010354] smpboot: CPU 30 Converting physical 0 to logical die 30
[    0.551738]  #31
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 31 Converting physical 62 to logical package 31
[    0.010354] smpboot: CPU 31 Converting physical 0 to logical die 31
[    0.552576]  #32
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 32 Converting physical 64 to logical package 32
[    0.010354] smpboot: CPU 32 Converting physical 0 to logical die 32
[    0.553578]  #33
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 33 Converting physical 66 to logical package 33
[    0.010354] smpboot: CPU 33 Converting physical 0 to logical die 33
[    0.554170]  #34
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 34 Converting physical 68 to logical package 34
[    0.010354] smpboot: CPU 34 Converting physical 0 to logical die 34
[    0.554984]  #35
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 35 Converting physical 70 to logical package 35
[    0.010354] smpboot: CPU 35 Converting physical 0 to logical die 35
[    0.555741]  #36
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 36 Converting physical 72 to logical package 36
[    0.010354] smpboot: CPU 36 Converting physical 0 to logical die 36
[    0.556578]  #37
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 37 Converting physical 74 to logical package 37
[    0.010354] smpboot: CPU 37 Converting physical 0 to logical die 37
[    0.557569]  #38
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 38 Converting physical 76 to logical package 38
[    0.010354] smpboot: CPU 38 Converting physical 0 to logical die 38
[    0.558532]  #39
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 39 Converting physical 78 to logical package 39
[    0.010354] smpboot: CPU 39 Converting physical 0 to logical die 39
[    0.559231]  #40
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 40 Converting physical 80 to logical package 40
[    0.010354] smpboot: CPU 40 Converting physical 0 to logical die 40
[    0.560000]  #41
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 41 Converting physical 82 to logical package 41
[    0.010354] smpboot: CPU 41 Converting physical 0 to logical die 41
[    0.560552]  #42
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 42 Converting physical 84 to logical package 42
[    0.010354] smpboot: CPU 42 Converting physical 0 to logical die 42
[    0.561591]  #43
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 43 Converting physical 86 to logical package 43
[    0.010354] smpboot: CPU 43 Converting physical 0 to logical die 43
[    0.562264]  #44
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 44 Converting physical 88 to logical package 44
[    0.010354] smpboot: CPU 44 Converting physical 0 to logical die 44
[    0.563118]  #45
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 45 Converting physical 90 to logical package 45
[    0.010354] smpboot: CPU 45 Converting physical 0 to logical die 45
[    0.563561]  #46
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 46 Converting physical 92 to logical package 46
[    0.010354] smpboot: CPU 46 Converting physical 0 to logical die 46
[    0.564173]  #47
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 47 Converting physical 94 to logical package 47
[    0.010354] smpboot: CPU 47 Converting physical 0 to logical die 47
[    0.565514]  #48
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 48 Converting physical 96 to logical package 48
[    0.010354] smpboot: CPU 48 Converting physical 0 to logical die 48
[    0.566222]  #49
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 49 Converting physical 98 to logical package 49
[    0.010354] smpboot: CPU 49 Converting physical 0 to logical die 49
[    0.567002]  #50
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 50 Converting physical 100 to logical package 50
[    0.010354] smpboot: CPU 50 Converting physical 0 to logical die 50
[    0.567743]  #51
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 51 Converting physical 102 to logical package 51
[    0.010354] smpboot: CPU 51 Converting physical 0 to logical die 51
[    0.569157]  #52
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 52 Converting physical 104 to logical package 52
[    0.010354] smpboot: CPU 52 Converting physical 0 to logical die 52
[    0.569984]  #53
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 53 Converting physical 106 to logical package 53
[    0.010354] smpboot: CPU 53 Converting physical 0 to logical die 53
[    0.570760]  #54
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 54 Converting physical 108 to logical package 54
[    0.010354] smpboot: CPU 54 Converting physical 0 to logical die 54
[    0.571563]  #55
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 55 Converting physical 110 to logical package 55
[    0.010354] smpboot: CPU 55 Converting physical 0 to logical die 55

[    0.572526] .... node  #2, CPUs:   #56
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 56 Converting physical 112 to logical package 56
[    0.010354] smpboot: CPU 56 Converting physical 0 to logical die 56
[    0.573526]  #57
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 57 Converting physical 114 to logical package 57
[    0.010354] smpboot: CPU 57 Converting physical 0 to logical die 57
[    0.574165]  #58
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 58 Converting physical 116 to logical package 58
[    0.010354] smpboot: CPU 58 Converting physical 0 to logical die 58
[    0.575098]  #59
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 59 Converting physical 118 to logical package 59
[    0.010354] smpboot: CPU 59 Converting physical 0 to logical die 59
[    0.575628]  #60
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 60 Converting physical 120 to logical package 60
[    0.010354] smpboot: CPU 60 Converting physical 0 to logical die 60
[    0.576575]  #61
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 61 Converting physical 122 to logical package 61
[    0.010354] smpboot: CPU 61 Converting physical 0 to logical die 61
[    0.577535]  #62
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 62 Converting physical 124 to logical package 62
[    0.010354] smpboot: CPU 62 Converting physical 0 to logical die 62
[    0.578162]  #63
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 63 Converting physical 126 to logical package 63
[    0.010354] smpboot: CPU 63 Converting physical 0 to logical die 63
[    0.578973]  #64
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 64 Converting physical 128 to logical package 64
[    0.010354] smpboot: CPU 64 Converting physical 0 to logical die 64
[    0.579736]  #65
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 65 Converting physical 130 to logical package 65
[    0.010354] smpboot: CPU 65 Converting physical 0 to logical die 65
[    0.580570]  #66
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 66 Converting physical 132 to logical package 66
[    0.010354] smpboot: CPU 66 Converting physical 0 to logical die 66
[    0.582179]  #67
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 67 Converting physical 134 to logical package 67
[    0.010354] smpboot: CPU 67 Converting physical 0 to logical die 67
[    0.582742]  #68
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 68 Converting physical 136 to logical package 68
[    0.010354] smpboot: CPU 68 Converting physical 0 to logical die 68
[    0.583667]  #69
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 69 Converting physical 138 to logical package 69
[    0.010354] smpboot: CPU 69 Converting physical 0 to logical die 69
[    0.584554]  #70
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 70 Converting physical 140 to logical package 70
[    0.010354] smpboot: CPU 70 Converting physical 0 to logical die 70
[    0.585114]  #71
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 71 Converting physical 142 to logical package 71
[    0.010354] smpboot: CPU 71 Converting physical 0 to logical die 71
[    0.585985]  #72
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 72 Converting physical 144 to logical package 72
[    0.010354] smpboot: CPU 72 Converting physical 0 to logical die 72
[    0.586687]  #73
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 73 Converting physical 146 to logical package 73
[    0.010354] smpboot: CPU 73 Converting physical 0 to logical die 73
[    0.587565]  #74
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 74 Converting physical 148 to logical package 74
[    0.010354] smpboot: CPU 74 Converting physical 0 to logical die 74
[    0.588144]  #75
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 75 Converting physical 150 to logical package 75
[    0.010354] smpboot: CPU 75 Converting physical 0 to logical die 75
[    0.589005]  #76
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 76 Converting physical 152 to logical package 76
[    0.010354] smpboot: CPU 76 Converting physical 0 to logical die 76
[    0.589562]  #77
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 77 Converting physical 154 to logical package 77
[    0.010354] smpboot: CPU 77 Converting physical 0 to logical die 77
[    0.590570]  #78
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 78 Converting physical 156 to logical package 78
[    0.010354] smpboot: CPU 78 Converting physical 0 to logical die 78
[    0.591494]  #79
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 79 Converting physical 158 to logical package 79
[    0.010354] smpboot: CPU 79 Converting physical 0 to logical die 79
[    0.592054]  #80
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 80 Converting physical 160 to logical package 80
[    0.010354] smpboot: CPU 80 Converting physical 0 to logical die 80
[    0.592702]  #81
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 81 Converting physical 162 to logical package 81
[    0.010354] smpboot: CPU 81 Converting physical 0 to logical die 81
[    0.593562]  #82
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 82 Converting physical 164 to logical package 82
[    0.010354] smpboot: CPU 82 Converting physical 0 to logical die 82
[    0.594108]  #83
[    0.010354] Disabled fast string operations
[    0.010354] smpboot: CPU 83 Converting physical 166 to logical package 83
[    0.010354] smpboot: CPU 83 Converting physical 0 to logical die 83
[    0.595859] smp: Brought up 3 nodes, 84 CPUs
[    0.595861] smpboot: Max logical packages: 84
[    0.595865] smpboot: Total of 84 processors activated (351973.10 BogoMIPS)
[    0.755531] node 0 deferred pages initialised in 156ms
[    0.799793] node 1 deferred pages initialised in 200ms
[    0.803514] node 2 deferred pages initialised in 204ms
[    0.846613] devtmpfs: initialized
[    0.846613] x86/mm: Memory block size: 1024MB
[    0.853951] PM: Registering ACPI NVS region [mem 0x00000000-0x00000fff] (4096 bytes)
[    0.853953] PM: Registering ACPI NVS region [mem 0x0ef42000-0x0ef47fff] (24576 bytes)
[    0.853954] PM: Registering ACPI NVS region [mem 0x0ff73000-0x0ff76fff] (16384 bytes)
[    0.854958] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.854958] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    0.856454] pinctrl core: initialized pinctrl subsystem
[    0.857231] NET: Registered protocol family 16
[    0.857350] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.857361] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.857371] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.857380] audit: initializing netlink subsys (disabled)
[    0.857439] audit: type=2000 audit(1607698825.494:1): state=initialized audit_enabled=0 res=1
[    0.857639] thermal_sys: Registered thermal governor 'fair_share'
[    0.857640] thermal_sys: Registered thermal governor 'bang_bang'
[    0.857641] thermal_sys: Registered thermal governor 'step_wise'
[    0.857641] thermal_sys: Registered thermal governor 'user_space'
[    0.857683] cpuidle: using governor menu
[    0.857683] ACPI: bus type PCI registered
[    0.857683] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.857993] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    0.857997] PCI: not using MMCONFIG
[    0.857999] PCI: Using configuration type 1 for base access
[    0.862914] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.862914] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.892865] cryptd: max_cpu_qlen set to 1000
[    0.910132] ACPI: Added _OSI(Module Device)
[    0.910133] ACPI: Added _OSI(Processor Device)
[    0.910134] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.910135] ACPI: Added _OSI(Processor Aggregator Device)
[    0.910137] ACPI: Added _OSI(Linux-Dell-Video)
[    0.910138] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.910139] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.913794] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.914727] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.914732] ACPI: BIOS _OSI(Darwin) query ignored
[    0.923718] ACPI: Interpreter enabled
[    0.923731] ACPI: (supports S0 S1 S4 S5)
[    0.923733] ACPI: Using IOAPIC for interrupt routing
[    0.923751] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    0.924316] PCI: MMCONFIG at [mem 0xe0000000-0xe7ffffff] reserved in ACPI motherboard resources
[    0.924322] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    0.925483] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.925808] ACPI: Enabled 4 GPEs in block 00 to 0F
[    0.943026] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    0.943031] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.943174] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[    0.943301] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    0.943946] PCI host bridge to bus 0000:00
[    0.943947] pci_bus 0000:00: Unknown NUMA node; performance will be reduced
[    0.943949] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.943950] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.943951] pci_bus 0000:00: root bus resource [mem 0xfef00000-0xffdfffff window]
[    0.943952] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfedfffff window]
[    0.943953] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfed3ffff window]
[    0.943954] pci_bus 0000:00: root bus resource [mem 0xfa300000-0xfebfffff window]
[    0.943954] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfa2fffff pref window]
[    0.943955] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xefffffff window]
[    0.943956] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.943957] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.943958] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.943959] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.943959] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.943960] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.943961] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.943962] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.943963] pci_bus 0000:00: root bus resource [bus 00-7f]
[    0.944052] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    0.944605] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    0.945081] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    0.945711] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    0.950480] pci 0000:00:07.1: reg 0x20: [io  0x2050-0x205f]
[    0.952503] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.952504] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.952505] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.952506] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.952705] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    0.953066] pci 0000:00:07.3: quirk: [io  0x0440-0x047f] claimed by PIIX4 ACPI
[    0.953364] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    0.953454] pci 0000:00:07.7: reg 0x10: [io  0x2000-0x203f]
[    0.953528] pci 0000:00:07.7: reg 0x14: [mem 0xffbf0000-0xffbf1fff 64bit]
[    0.954212] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    0.955480] pci 0000:00:0f.0: reg 0x10: [io  0x2040-0x204f]
[    0.957481] pci 0000:00:0f.0: reg 0x14: [mem 0xf0000000-0xf7ffffff pref]
[    0.959482] pci 0000:00:0f.0: reg 0x18: [mem 0xfb800000-0xfbffffff]
[    0.967481] pci 0000:00:0f.0: reg 0x30: [mem 0xffff8000-0xffffffff pref]
[    0.967516] pci 0000:00:0f.0: BAR 1: assigned to efifb
[    0.967942] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    0.968694] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    0.969447] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    0.969807] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    0.970561] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    0.970917] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    0.971675] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    0.972025] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    0.972789] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    0.973137] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    0.973899] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    0.974251] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    0.975015] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    0.975367] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    0.976096] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    0.976448] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    0.977180] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    0.977528] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    0.978267] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.978607] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    0.979350] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    0.979691] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    0.980429] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    0.980778] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    0.981526] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    0.981866] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    0.982589] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    0.982930] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    0.983662] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    0.984004] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    0.984751] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    0.985097] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    0.985849] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    0.986183] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    0.986916] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    0.987251] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    0.987981] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    0.988318] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    0.989063] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    0.989404] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    0.990140] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    0.990487] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    0.991224] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    0.991568] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    0.992319] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    0.992646] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    0.993380] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    0.993710] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    0.994439] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    0.994775] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    0.995509] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    0.995846] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    0.996574] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    0.996925] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    0.997662] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    0.997999] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    0.998727] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    0.999073] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    0.999809] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    1.000141] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    1.000868] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    1.001200] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    1.001933] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    1.002272] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    1.002999] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    1.003341] pci_bus 0000:01: extended config space not accessible
[    1.003384] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.003560] pci_bus 0000:02: extended config space not accessible
[    1.003728] acpiphp: Slot [32] registered
[    1.003736] acpiphp: Slot [33] registered
[    1.003744] acpiphp: Slot [34] registered
[    1.003752] acpiphp: Slot [35] registered
[    1.003759] acpiphp: Slot [36] registered
[    1.003767] acpiphp: Slot [37] registered
[    1.003776] acpiphp: Slot [38] registered
[    1.003784] acpiphp: Slot [39] registered
[    1.003792] acpiphp: Slot [40] registered
[    1.003800] acpiphp: Slot [41] registered
[    1.003807] acpiphp: Slot [42] registered
[    1.003815] acpiphp: Slot [43] registered
[    1.003822] acpiphp: Slot [44] registered
[    1.003831] acpiphp: Slot [45] registered
[    1.003839] acpiphp: Slot [46] registered
[    1.003846] acpiphp: Slot [47] registered
[    1.003854] acpiphp: Slot [48] registered
[    1.003862] acpiphp: Slot [49] registered
[    1.003870] acpiphp: Slot [50] registered
[    1.003878] acpiphp: Slot [51] registered
[    1.003887] acpiphp: Slot [52] registered
[    1.003894] acpiphp: Slot [53] registered
[    1.003902] acpiphp: Slot [54] registered
[    1.003910] acpiphp: Slot [55] registered
[    1.003917] acpiphp: Slot [56] registered
[    1.003925] acpiphp: Slot [57] registered
[    1.003933] acpiphp: Slot [58] registered
[    1.003941] acpiphp: Slot [59] registered
[    1.003948] acpiphp: Slot [60] registered
[    1.003956] acpiphp: Slot [61] registered
[    1.003964] acpiphp: Slot [62] registered
[    1.003971] acpiphp: Slot [63] registered
[    1.004005] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    1.004023] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    1.004040] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    1.004073] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    1.004074] pci 0000:00:11.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    1.004075] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    1.004076] pci 0000:00:11.0:   bridge window [mem 0xfef00000-0xffdfffff window] (subtractive decode)
[    1.004077] pci 0000:00:11.0:   bridge window [mem 0xfed45000-0xfedfffff window] (subtractive decode)
[    1.004078] pci 0000:00:11.0:   bridge window [mem 0xfec10000-0xfed3ffff window] (subtractive decode)
[    1.004079] pci 0000:00:11.0:   bridge window [mem 0xfa300000-0xfebfffff window] (subtractive decode)
[    1.004079] pci 0000:00:11.0:   bridge window [mem 0xf0000000-0xfa2fffff pref window] (subtractive decode)
[    1.004080] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xefffffff window] (subtractive decode)
[    1.004081] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    1.004082] pci 0000:00:11.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    1.004083] pci 0000:00:11.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    1.004084] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    1.004084] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    1.004085] pci 0000:00:11.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    1.004086] pci 0000:00:11.0:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    1.004087] pci 0000:00:11.0:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    1.004437] pci 0000:03:00.0: [15ad:07c0] type 00 class 0x010700
[    1.006479] pci 0000:03:00.0: reg 0x10: [io  0x4000-0x4007]
[    1.008479] pci 0000:03:00.0: reg 0x14: [mem 0xfea10000-0xfea17fff 64bit]
[    1.016481] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    1.016948] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    1.017247] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    1.017293] pci 0000:00:15.0: PCI bridge to [bus 03]
[    1.017312] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    1.017329] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    1.017603] pci 0000:00:15.1: PCI bridge to [bus 04]
[    1.017638] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    1.017672] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    1.017907] pci 0000:00:15.2: PCI bridge to [bus 05]
[    1.017940] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    1.017974] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    1.018205] pci 0000:00:15.3: PCI bridge to [bus 06]
[    1.018239] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    1.018272] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    1.018501] pci 0000:00:15.4: PCI bridge to [bus 07]
[    1.018535] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    1.018569] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    1.018803] pci 0000:00:15.5: PCI bridge to [bus 08]
[    1.018837] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    1.018871] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    1.019111] pci 0000:00:15.6: PCI bridge to [bus 09]
[    1.019145] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    1.019178] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    1.019407] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    1.019441] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    1.019474] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    1.019826] pci 0000:0b:00.0: [15ad:07b0] type 00 class 0x020000
[    1.019931] pci 0000:0b:00.0: reg 0x10: [mem 0xfe213000-0xfe213fff]
[    1.019974] pci 0000:0b:00.0: reg 0x14: [mem 0xfe212000-0xfe212fff]
[    1.020016] pci 0000:0b:00.0: reg 0x18: [mem 0xfe210000-0xfe211fff]
[    1.020058] pci 0000:0b:00.0: reg 0x1c: [io  0x3000-0x300f]
[    1.020183] pci 0000:0b:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    1.020615] pci 0000:0b:00.0: supports D1 D2
[    1.020616] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.020953] pci 0000:0b:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    1.020997] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    1.021015] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    1.021038] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    1.021315] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    1.021349] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    1.021382] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    1.021615] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    1.021650] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    1.021684] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    1.021923] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    1.021957] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    1.021992] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    1.022226] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    1.022259] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    1.022295] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    1.022543] pci 0000:00:16.5: PCI bridge to [bus 10]
[    1.022578] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    1.022611] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    1.022846] pci 0000:00:16.6: PCI bridge to [bus 11]
[    1.022880] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    1.022914] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    1.023151] pci 0000:00:16.7: PCI bridge to [bus 12]
[    1.023185] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    1.023218] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    1.023458] pci 0000:00:17.0: PCI bridge to [bus 13]
[    1.023487] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    1.023522] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    1.023753] pci 0000:00:17.1: PCI bridge to [bus 14]
[    1.023786] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    1.023819] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    1.024048] pci 0000:00:17.2: PCI bridge to [bus 15]
[    1.024082] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    1.024117] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    1.024350] pci 0000:00:17.3: PCI bridge to [bus 16]
[    1.024384] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    1.024419] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    1.024651] pci 0000:00:17.4: PCI bridge to [bus 17]
[    1.024685] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    1.024719] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    1.024947] pci 0000:00:17.5: PCI bridge to [bus 18]
[    1.024982] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    1.025017] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    1.025260] pci 0000:00:17.6: PCI bridge to [bus 19]
[    1.025294] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    1.025328] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    1.025563] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    1.025596] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    1.025630] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    1.025868] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    1.025903] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    1.025937] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    1.026174] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    1.026207] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    1.026241] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    1.026481] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    1.026515] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    1.026550] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    1.026789] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    1.026823] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    1.026857] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    1.027096] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    1.027130] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    1.027164] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    1.027399] pci 0000:00:18.5: PCI bridge to [bus 20]
[    1.027433] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    1.027468] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    1.027700] pci 0000:00:18.6: PCI bridge to [bus 21]
[    1.027733] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    1.027766] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    1.027993] pci 0000:00:18.7: PCI bridge to [bus 22]
[    1.028027] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    1.028060] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    1.029621] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    1.029689] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    1.029751] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    1.029812] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    1.043995] iommu: Default domain type: Passthrough 
[    1.043995] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[    1.043995] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.043995] pci 0000:00:0f.0: vgaarb: bridge control possible
[    1.043995] vgaarb: loaded
[    1.043995] SCSI subsystem initialized
[    1.043995] ACPI: bus type USB registered
[    1.043995] usbcore: registered new interface driver usbfs
[    1.043995] usbcore: registered new interface driver hub
[    1.045223] usbcore: registered new device driver usb
[    1.045243] pps_core: LinuxPPS API ver. 1 registered
[    1.045244] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.045247] PTP clock support registered
[    1.046639] EDAC MC: Ver: 3.0.0
[    1.047670] Registered efivars operations
[    1.047716] NetLabel: Initializing
[    1.047717] NetLabel:  domain hash size = 128
[    1.047718] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.047731] NetLabel:  unlabeled traffic allowed by default
[    1.047733] PCI: Using ACPI for IRQ routing
[    1.050680] PCI: pci_cache_line_size set to 64 bytes
[    1.051379] e820: reserve RAM buffer [mem 0x0e0a1018-0x0fffffff]
[    1.051381] e820: reserve RAM buffer [mem 0x0e0a3018-0x0fffffff]
[    1.051382] e820: reserve RAM buffer [mem 0x0e0a6018-0x0fffffff]
[    1.051383] e820: reserve RAM buffer [mem 0x0ef24000-0x0fffffff]
[    1.051384] e820: reserve RAM buffer [mem 0x0ef3c000-0x0fffffff]
[    1.051386] e820: reserve RAM buffer [mem 0x0ef61000-0x0fffffff]
[    1.051386] e820: reserve RAM buffer [mem 0x0fee7000-0x0fffffff]
[    1.051520] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    1.051528] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    1.054017] clocksource: Switched to clocksource tsc-early
[    1.069641] VFS: Disk quotas dquot_6.6.0
[    1.069693] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.069859] pnp: PnP ACPI init
[    1.070000] system 00:00: [io  0x0440-0x047f] has been reserved
[    1.070002] system 00:00: [io  0x5658-0x5659] has been reserved
[    1.070004] system 00:00: [io  0x5670] has been reserved
[    1.070005] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    1.070011] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.070032] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.070045] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    1.070058] pnp 00:03: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
[    1.070193] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    1.070196] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    1.071227] system 00:05: [io  0x0400-0x041f] has been reserved
[    1.071228] system 00:05: [mem 0xe0000000-0xe7ffffff] has been reserved
[    1.071230] system 00:05: [mem 0xffc00000-0xffdfffff] could not be reserved
[    1.071232] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.071896] pnp: PnP ACPI: found 6 devices
[    1.078089] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.078257] NET: Registered protocol family 2
[    1.078588] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    1.078860] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    1.079546] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    1.079710] TCP: Hash tables configured (established 524288 bind 65536)
[    1.080220] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    1.080577] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    1.081090] NET: Registered protocol family 1
[    1.081095] NET: Registered protocol family 44
[    1.081111] pci 0000:00:0f.0: can't claim BAR 6 [mem 0xffff8000-0xffffffff pref]: no compatible bridge window
[    1.081113] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    1.081114] pci 0000:0b:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    1.081120] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    1.081121] pci 0000:00:15.1: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    1.081123] pci 0000:00:15.2: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    1.081125] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    1.081126] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    1.081127] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    1.081129] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    1.081129] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    1.081131] pci 0000:00:16.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    1.081132] pci 0000:00:16.1: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    1.081133] pci 0000:00:16.2: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    1.081134] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    1.081134] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    1.081135] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    1.081136] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    1.081137] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    1.081137] pci 0000:00:17.0: bridge window [io  0x1000-0x0fff] to [bus 13] add_size 1000
[    1.081138] pci 0000:00:17.1: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    1.081139] pci 0000:00:17.2: bridge window [io  0x1000-0x0fff] to [bus 15] add_size 1000
[    1.081140] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    1.081141] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    1.081142] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    1.081143] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    1.081144] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    1.081145] pci 0000:00:18.0: bridge window [io  0x1000-0x0fff] to [bus 1b] add_size 1000
[    1.081145] pci 0000:00:18.1: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
[    1.081146] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    1.081147] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    1.081148] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    1.081149] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    1.081149] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    1.081150] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    1.081169] pci 0000:00:15.0: BAR 15: assigned [mem 0xfef00000-0xff0fffff 64bit pref]
[    1.081173] pci 0000:00:16.0: BAR 15: assigned [mem 0xff100000-0xff2fffff 64bit pref]
[    1.081174] pci 0000:00:0f.0: BAR 6: assigned [mem 0xff300000-0xff307fff pref]
[    1.081176] pci 0000:00:15.1: BAR 13: assigned [io  0x6000-0x6fff]
[    1.081177] pci 0000:00:15.2: BAR 13: assigned [io  0x7000-0x7fff]
[    1.081177] pci 0000:00:15.3: BAR 13: assigned [io  0x8000-0x8fff]
[    1.081178] pci 0000:00:15.4: BAR 13: assigned [io  0x9000-0x9fff]
[    1.081179] pci 0000:00:15.5: BAR 13: assigned [io  0xa000-0xafff]
[    1.081180] pci 0000:00:15.6: BAR 13: assigned [io  0xb000-0xbfff]
[    1.081181] pci 0000:00:15.7: BAR 13: assigned [io  0xc000-0xcfff]
[    1.081182] pci 0000:00:16.1: BAR 13: assigned [io  0xd000-0xdfff]
[    1.081183] pci 0000:00:16.2: BAR 13: assigned [io  0xe000-0xefff]
[    1.081183] pci 0000:00:16.3: BAR 13: assigned [io  0xf000-0xffff]
[    1.081186] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    1.081186] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    1.081188] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    1.081188] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    1.081190] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    1.081190] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    1.081192] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    1.081192] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    1.081194] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    1.081194] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    1.081195] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    1.081196] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    1.081197] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    1.081198] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    1.081199] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    1.081199] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    1.081201] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    1.081201] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    1.081203] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    1.081203] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    1.081204] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    1.081205] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    1.081206] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    1.081207] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    1.081208] pci 0000:00:18.0: BAR 13: no space for [io  size 0x1000]
[    1.081209] pci 0000:00:18.0: BAR 13: failed to assign [io  size 0x1000]
[    1.081210] pci 0000:00:18.1: BAR 13: no space for [io  size 0x1000]
[    1.081210] pci 0000:00:18.1: BAR 13: failed to assign [io  size 0x1000]
[    1.081212] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    1.081212] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    1.081213] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    1.081214] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    1.081215] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    1.081216] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    1.081217] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    1.081218] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    1.081219] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    1.081219] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    1.081221] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    1.081221] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    1.081224] pci 0000:00:18.7: BAR 13: assigned [io  0x6000-0x6fff]
[    1.081225] pci 0000:00:18.6: BAR 13: assigned [io  0x7000-0x7fff]
[    1.081226] pci 0000:00:18.5: BAR 13: assigned [io  0x8000-0x8fff]
[    1.081227] pci 0000:00:18.4: BAR 13: assigned [io  0x9000-0x9fff]
[    1.081227] pci 0000:00:18.3: BAR 13: assigned [io  0xa000-0xafff]
[    1.081228] pci 0000:00:18.2: BAR 13: assigned [io  0xb000-0xbfff]
[    1.081229] pci 0000:00:18.1: BAR 13: assigned [io  0xc000-0xcfff]
[    1.081230] pci 0000:00:18.0: BAR 13: assigned [io  0xd000-0xdfff]
[    1.081231] pci 0000:00:17.7: BAR 13: assigned [io  0xe000-0xefff]
[    1.081232] pci 0000:00:17.6: BAR 13: assigned [io  0xf000-0xffff]
[    1.081233] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    1.081234] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    1.081235] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    1.081236] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    1.081237] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    1.081237] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    1.081239] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    1.081239] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    1.081241] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    1.081241] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    1.081243] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    1.081243] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    1.081244] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    1.081245] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    1.081246] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    1.081247] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    1.081248] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    1.081249] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    1.081250] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    1.081250] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    1.081252] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    1.081252] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    1.081253] pci 0000:00:16.2: BAR 13: no space for [io  size 0x1000]
[    1.081254] pci 0000:00:16.2: BAR 13: failed to assign [io  size 0x1000]
[    1.081255] pci 0000:00:16.1: BAR 13: no space for [io  size 0x1000]
[    1.081256] pci 0000:00:16.1: BAR 13: failed to assign [io  size 0x1000]
[    1.081257] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    1.081258] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    1.081259] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    1.081259] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    1.081261] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    1.081261] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    1.081263] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    1.081263] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    1.081264] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    1.081265] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
[    1.081266] pci 0000:00:15.2: BAR 13: no space for [io  size 0x1000]
[    1.081267] pci 0000:00:15.2: BAR 13: failed to assign [io  size 0x1000]
[    1.081268] pci 0000:00:15.1: BAR 13: no space for [io  size 0x1000]
[    1.081269] pci 0000:00:15.1: BAR 13: failed to assign [io  size 0x1000]
[    1.081270] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.081336] pci 0000:00:11.0: PCI bridge to [bus 02]
[    1.081343] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    1.081362] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    1.081375] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    1.081399] pci 0000:03:00.0: BAR 6: assigned [mem 0xfea00000-0xfea0ffff pref]
[    1.081400] pci 0000:00:15.0: PCI bridge to [bus 03]
[    1.081407] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    1.081425] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    1.081437] pci 0000:00:15.0:   bridge window [mem 0xfef00000-0xff0fffff 64bit pref]
[    1.081461] pci 0000:00:15.1: PCI bridge to [bus 04]
[    1.081485] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    1.081498] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    1.081522] pci 0000:00:15.2: PCI bridge to [bus 05]
[    1.081540] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    1.081553] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    1.081577] pci 0000:00:15.3: PCI bridge to [bus 06]
[    1.081595] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    1.081608] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    1.081631] pci 0000:00:15.4: PCI bridge to [bus 07]
[    1.081650] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    1.081662] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    1.081686] pci 0000:00:15.5: PCI bridge to [bus 08]
[    1.081704] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    1.081716] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    1.081741] pci 0000:00:15.6: PCI bridge to [bus 09]
[    1.081759] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    1.081771] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    1.081795] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    1.081813] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    1.081826] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    1.081850] pci 0000:0b:00.0: BAR 6: assigned [mem 0xfe200000-0xfe20ffff pref]
[    1.081851] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    1.081858] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    1.081876] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    1.081888] pci 0000:00:16.0:   bridge window [mem 0xff100000-0xff2fffff 64bit pref]
[    1.081912] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    1.081930] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    1.081942] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    1.081966] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    1.081984] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    1.081997] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    1.082020] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    1.082038] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    1.082051] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    1.082074] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    1.082093] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    1.082105] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    1.082129] pci 0000:00:16.5: PCI bridge to [bus 10]
[    1.082147] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    1.082159] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    1.082183] pci 0000:00:16.6: PCI bridge to [bus 11]
[    1.082201] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    1.082213] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    1.082237] pci 0000:00:16.7: PCI bridge to [bus 12]
[    1.082255] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    1.082267] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    1.082291] pci 0000:00:17.0: PCI bridge to [bus 13]
[    1.082310] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    1.082322] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    1.082346] pci 0000:00:17.1: PCI bridge to [bus 14]
[    1.082364] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    1.082376] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    1.082400] pci 0000:00:17.2: PCI bridge to [bus 15]
[    1.082418] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    1.082430] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    1.082454] pci 0000:00:17.3: PCI bridge to [bus 16]
[    1.082472] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    1.082487] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    1.082511] pci 0000:00:17.4: PCI bridge to [bus 17]
[    1.082529] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    1.082541] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    1.082565] pci 0000:00:17.5: PCI bridge to [bus 18]
[    1.082583] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    1.082596] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    1.082619] pci 0000:00:17.6: PCI bridge to [bus 19]
[    1.082626] pci 0000:00:17.6:   bridge window [io  0xf000-0xffff]
[    1.082644] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    1.082656] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    1.082680] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    1.082687] pci 0000:00:17.7:   bridge window [io  0xe000-0xefff]
[    1.082705] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    1.082717] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    1.082741] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    1.082748] pci 0000:00:18.0:   bridge window [io  0xd000-0xdfff]
[    1.082766] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    1.082778] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    1.082802] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    1.082808] pci 0000:00:18.1:   bridge window [io  0xc000-0xcfff]
[    1.082826] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    1.082839] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    1.082862] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    1.082869] pci 0000:00:18.2:   bridge window [io  0xb000-0xbfff]
[    1.082887] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    1.082899] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    1.082923] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    1.082930] pci 0000:00:18.3:   bridge window [io  0xa000-0xafff]
[    1.082948] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    1.082960] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    1.082984] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    1.082990] pci 0000:00:18.4:   bridge window [io  0x9000-0x9fff]
[    1.083008] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    1.083020] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    1.083044] pci 0000:00:18.5: PCI bridge to [bus 20]
[    1.083051] pci 0000:00:18.5:   bridge window [io  0x8000-0x8fff]
[    1.083069] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    1.083081] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    1.083105] pci 0000:00:18.6: PCI bridge to [bus 21]
[    1.083111] pci 0000:00:18.6:   bridge window [io  0x7000-0x7fff]
[    1.083129] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    1.083142] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    1.083165] pci 0000:00:18.7: PCI bridge to [bus 22]
[    1.083172] pci 0000:00:18.7:   bridge window [io  0x6000-0x6fff]
[    1.083190] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    1.083202] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    1.083227] pci_bus 0000:00: resource 4 [io  0x0d00-0xffff window]
[    1.083227] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    1.083228] pci_bus 0000:00: resource 6 [mem 0xfef00000-0xffdfffff window]
[    1.083229] pci_bus 0000:00: resource 7 [mem 0xfed45000-0xfedfffff window]
[    1.083229] pci_bus 0000:00: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    1.083230] pci_bus 0000:00: resource 9 [mem 0xfa300000-0xfebfffff window]
[    1.083231] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    1.083231] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xefffffff window]
[    1.083232] pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
[    1.083232] pci_bus 0000:00: resource 13 [mem 0x000c4000-0x000c7fff window]
[    1.083233] pci_bus 0000:00: resource 14 [mem 0x000c8000-0x000cbfff window]
[    1.083234] pci_bus 0000:00: resource 15 [mem 0x000d4000-0x000d7fff window]
[    1.083234] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000dbfff window]
[    1.083235] pci_bus 0000:00: resource 17 [mem 0x000e4000-0x000e7fff window]
[    1.083235] pci_bus 0000:00: resource 18 [mem 0x000e8000-0x000ebfff window]
[    1.083236] pci_bus 0000:00: resource 19 [mem 0x000ec000-0x000effff window]
[    1.083237] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    1.083237] pci_bus 0000:02: resource 1 [mem 0xfc000000-0xfc9fffff]
[    1.083238] pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf84fffff 64bit pref]
[    1.083239] pci_bus 0000:02: resource 4 [io  0x0d00-0xffff window]
[    1.083239] pci_bus 0000:02: resource 5 [io  0x0000-0x0cf7 window]
[    1.083240] pci_bus 0000:02: resource 6 [mem 0xfef00000-0xffdfffff window]
[    1.083240] pci_bus 0000:02: resource 7 [mem 0xfed45000-0xfedfffff window]
[    1.083241] pci_bus 0000:02: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    1.083242] pci_bus 0000:02: resource 9 [mem 0xfa300000-0xfebfffff window]
[    1.083242] pci_bus 0000:02: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    1.083243] pci_bus 0000:02: resource 11 [mem 0xc0000000-0xefffffff window]
[    1.083243] pci_bus 0000:02: resource 12 [mem 0x000a0000-0x000bffff window]
[    1.083244] pci_bus 0000:02: resource 13 [mem 0x000c4000-0x000c7fff window]
[    1.083245] pci_bus 0000:02: resource 14 [mem 0x000c8000-0x000cbfff window]
[    1.083245] pci_bus 0000:02: resource 15 [mem 0x000d4000-0x000d7fff window]
[    1.083246] pci_bus 0000:02: resource 16 [mem 0x000d8000-0x000dbfff window]
[    1.083246] pci_bus 0000:02: resource 17 [mem 0x000e4000-0x000e7fff window]
[    1.083247] pci_bus 0000:02: resource 18 [mem 0x000e8000-0x000ebfff window]
[    1.083248] pci_bus 0000:02: resource 19 [mem 0x000ec000-0x000effff window]
[    1.083249] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    1.083249] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    1.083250] pci_bus 0000:03: resource 2 [mem 0xfef00000-0xff0fffff 64bit pref]
[    1.083251] pci_bus 0000:04: resource 1 [mem 0xfe900000-0xfe9fffff]
[    1.083251] pci_bus 0000:04: resource 2 [mem 0xfa200000-0xfa2fffff 64bit pref]
[    1.083252] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]
[    1.083252] pci_bus 0000:05: resource 2 [mem 0xfa100000-0xfa1fffff 64bit pref]
[    1.083253] pci_bus 0000:06: resource 1 [mem 0xfe700000-0xfe7fffff]
[    1.083254] pci_bus 0000:06: resource 2 [mem 0xfa000000-0xfa0fffff 64bit pref]
[    1.083254] pci_bus 0000:07: resource 1 [mem 0xfe600000-0xfe6fffff]
[    1.083255] pci_bus 0000:07: resource 2 [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    1.083255] pci_bus 0000:08: resource 1 [mem 0xfe500000-0xfe5fffff]
[    1.083256] pci_bus 0000:08: resource 2 [mem 0xf9e00000-0xf9efffff 64bit pref]
[    1.083257] pci_bus 0000:09: resource 1 [mem 0xfe400000-0xfe4fffff]
[    1.083257] pci_bus 0000:09: resource 2 [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    1.083258] pci_bus 0000:0a: resource 1 [mem 0xfe300000-0xfe3fffff]
[    1.083258] pci_bus 0000:0a: resource 2 [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    1.083259] pci_bus 0000:0b: resource 0 [io  0x3000-0x3fff]
[    1.083259] pci_bus 0000:0b: resource 1 [mem 0xfe200000-0xfe2fffff]
[    1.083260] pci_bus 0000:0b: resource 2 [mem 0xff100000-0xff2fffff 64bit pref]
[    1.083261] pci_bus 0000:0c: resource 1 [mem 0xfe100000-0xfe1fffff]
[    1.083261] pci_bus 0000:0c: resource 2 [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    1.083262] pci_bus 0000:0d: resource 1 [mem 0xfe000000-0xfe0fffff]
[    1.083262] pci_bus 0000:0d: resource 2 [mem 0xf9a00000-0xf9afffff 64bit pref]
[    1.083263] pci_bus 0000:0e: resource 1 [mem 0xfdf00000-0xfdffffff]
[    1.083264] pci_bus 0000:0e: resource 2 [mem 0xf9900000-0xf99fffff 64bit pref]
[    1.083264] pci_bus 0000:0f: resource 1 [mem 0xfde00000-0xfdefffff]
[    1.083265] pci_bus 0000:0f: resource 2 [mem 0xf9800000-0xf98fffff 64bit pref]
[    1.083265] pci_bus 0000:10: resource 1 [mem 0xfdd00000-0xfddfffff]
[    1.083266] pci_bus 0000:10: resource 2 [mem 0xf9700000-0xf97fffff 64bit pref]
[    1.083266] pci_bus 0000:11: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    1.083267] pci_bus 0000:11: resource 2 [mem 0xf9600000-0xf96fffff 64bit pref]
[    1.083268] pci_bus 0000:12: resource 1 [mem 0xfdb00000-0xfdbfffff]
[    1.083268] pci_bus 0000:12: resource 2 [mem 0xf9500000-0xf95fffff 64bit pref]
[    1.083269] pci_bus 0000:13: resource 1 [mem 0xfda00000-0xfdafffff]
[    1.083269] pci_bus 0000:13: resource 2 [mem 0xf9400000-0xf94fffff 64bit pref]
[    1.083270] pci_bus 0000:14: resource 1 [mem 0xfd900000-0xfd9fffff]
[    1.083270] pci_bus 0000:14: resource 2 [mem 0xf9300000-0xf93fffff 64bit pref]
[    1.083271] pci_bus 0000:15: resource 1 [mem 0xfd800000-0xfd8fffff]
[    1.083272] pci_bus 0000:15: resource 2 [mem 0xf9200000-0xf92fffff 64bit pref]
[    1.083272] pci_bus 0000:16: resource 1 [mem 0xfd700000-0xfd7fffff]
[    1.083273] pci_bus 0000:16: resource 2 [mem 0xf9100000-0xf91fffff 64bit pref]
[    1.083273] pci_bus 0000:17: resource 1 [mem 0xfd600000-0xfd6fffff]
[    1.083274] pci_bus 0000:17: resource 2 [mem 0xf9000000-0xf90fffff 64bit pref]
[    1.083275] pci_bus 0000:18: resource 1 [mem 0xfd500000-0xfd5fffff]
[    1.083275] pci_bus 0000:18: resource 2 [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    1.083276] pci_bus 0000:19: resource 0 [io  0xf000-0xffff]
[    1.083276] pci_bus 0000:19: resource 1 [mem 0xfd400000-0xfd4fffff]
[    1.083277] pci_bus 0000:19: resource 2 [mem 0xf8e00000-0xf8efffff 64bit pref]
[    1.083278] pci_bus 0000:1a: resource 0 [io  0xe000-0xefff]
[    1.083278] pci_bus 0000:1a: resource 1 [mem 0xfd300000-0xfd3fffff]
[    1.083279] pci_bus 0000:1a: resource 2 [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    1.083279] pci_bus 0000:1b: resource 0 [io  0xd000-0xdfff]
[    1.083280] pci_bus 0000:1b: resource 1 [mem 0xfd200000-0xfd2fffff]
[    1.083280] pci_bus 0000:1b: resource 2 [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    1.083281] pci_bus 0000:1c: resource 0 [io  0xc000-0xcfff]
[    1.083282] pci_bus 0000:1c: resource 1 [mem 0xfd100000-0xfd1fffff]
[    1.083282] pci_bus 0000:1c: resource 2 [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    1.083283] pci_bus 0000:1d: resource 0 [io  0xb000-0xbfff]
[    1.083283] pci_bus 0000:1d: resource 1 [mem 0xfd000000-0xfd0fffff]
[    1.083284] pci_bus 0000:1d: resource 2 [mem 0xf8a00000-0xf8afffff 64bit pref]
[    1.083285] pci_bus 0000:1e: resource 0 [io  0xa000-0xafff]
[    1.083285] pci_bus 0000:1e: resource 1 [mem 0xfcf00000-0xfcffffff]
[    1.083286] pci_bus 0000:1e: resource 2 [mem 0xf8900000-0xf89fffff 64bit pref]
[    1.083286] pci_bus 0000:1f: resource 0 [io  0x9000-0x9fff]
[    1.083287] pci_bus 0000:1f: resource 1 [mem 0xfce00000-0xfcefffff]
[    1.083287] pci_bus 0000:1f: resource 2 [mem 0xf8800000-0xf88fffff 64bit pref]
[    1.083288] pci_bus 0000:20: resource 0 [io  0x8000-0x8fff]
[    1.083289] pci_bus 0000:20: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    1.083289] pci_bus 0000:20: resource 2 [mem 0xf8700000-0xf87fffff 64bit pref]
[    1.083290] pci_bus 0000:21: resource 0 [io  0x7000-0x7fff]
[    1.083290] pci_bus 0000:21: resource 1 [mem 0xfcc00000-0xfccfffff]
[    1.083291] pci_bus 0000:21: resource 2 [mem 0xf8600000-0xf86fffff 64bit pref]
[    1.083291] pci_bus 0000:22: resource 0 [io  0x6000-0x6fff]
[    1.083292] pci_bus 0000:22: resource 1 [mem 0xfcb00000-0xfcbfffff]
[    1.083293] pci_bus 0000:22: resource 2 [mem 0xf8500000-0xf85fffff 64bit pref]
[    1.083350] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    1.083415] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.083650] PCI: CLS 32 bytes, default 64
[    1.083678] Trying to unpack rootfs image as initramfs...
[    2.061431] Freeing initrd memory: 77368K
[    2.061456] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.061458] software IO TLB: mapped [mem 0x00000000bc000000-0x00000000c0000000] (64MB)
[    2.093018] Initialise system trusted keyrings
[    2.093026] Key type blacklist registered
[    2.093399] workingset: timestamp_bits=36 max_order=28 bucket_order=0
[    2.094378] zbud: loaded
[    2.097053] integrity: Platform Keyring initialized
[    2.105105] NET: Registered protocol family 38
[    2.105109] Key type asymmetric registered
[    2.105111] Asymmetric key parser 'x509' registered
[    2.105119] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    2.105743] io scheduler mq-deadline registered
[    2.105744] io scheduler kyber registered
[    2.105774] io scheduler bfq registered
[    2.108339] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    2.108863] pcieport 0000:00:15.0: PME: Signaling with IRQ 24
[    2.108940] pcieport 0000:00:15.0: pciehp: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.109702] pcieport 0000:00:15.1: PME: Signaling with IRQ 25
[    2.109775] pcieport 0000:00:15.1: pciehp: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.110507] pcieport 0000:00:15.2: PME: Signaling with IRQ 26
[    2.110577] pcieport 0000:00:15.2: pciehp: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.111306] pcieport 0000:00:15.3: PME: Signaling with IRQ 27
[    2.111378] pcieport 0000:00:15.3: pciehp: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.112176] pcieport 0000:00:15.4: PME: Signaling with IRQ 28
[    2.112243] pcieport 0000:00:15.4: pciehp: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.113339] pcieport 0000:00:15.5: PME: Signaling with IRQ 29
[    2.113406] pcieport 0000:00:15.5: pciehp: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.114190] pcieport 0000:00:15.6: PME: Signaling with IRQ 30
[    2.114256] pcieport 0000:00:15.6: pciehp: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.114964] pcieport 0000:00:15.7: PME: Signaling with IRQ 31
[    2.115030] pcieport 0000:00:15.7: pciehp: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.115741] pcieport 0000:00:16.0: PME: Signaling with IRQ 32
[    2.115807] pcieport 0000:00:16.0: pciehp: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.116498] pcieport 0000:00:16.1: PME: Signaling with IRQ 33
[    2.116565] pcieport 0000:00:16.1: pciehp: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.117269] pcieport 0000:00:16.2: PME: Signaling with IRQ 34
[    2.117335] pcieport 0000:00:16.2: pciehp: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.118028] pcieport 0000:00:16.3: PME: Signaling with IRQ 35
[    2.118090] pcieport 0000:00:16.3: pciehp: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.118750] pcieport 0000:00:16.4: PME: Signaling with IRQ 36
[    2.118811] pcieport 0000:00:16.4: pciehp: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.119467] pcieport 0000:00:16.5: PME: Signaling with IRQ 37
[    2.119534] pcieport 0000:00:16.5: pciehp: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.120188] pcieport 0000:00:16.6: PME: Signaling with IRQ 38
[    2.120251] pcieport 0000:00:16.6: pciehp: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.120910] pcieport 0000:00:16.7: PME: Signaling with IRQ 39
[    2.120973] pcieport 0000:00:16.7: pciehp: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.121642] pcieport 0000:00:17.0: PME: Signaling with IRQ 40
[    2.121705] pcieport 0000:00:17.0: pciehp: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.122353] pcieport 0000:00:17.1: PME: Signaling with IRQ 41
[    2.122415] pcieport 0000:00:17.1: pciehp: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.123629] pcieport 0000:00:17.2: PME: Signaling with IRQ 42
[    2.123704] pcieport 0000:00:17.2: pciehp: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.126099] pcieport 0000:00:17.3: PME: Signaling with IRQ 43
[    2.126160] pcieport 0000:00:17.3: pciehp: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.126973] pcieport 0000:00:17.4: PME: Signaling with IRQ 44
[    2.127039] pcieport 0000:00:17.4: pciehp: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.127833] pcieport 0000:00:17.5: PME: Signaling with IRQ 45
[    2.127899] pcieport 0000:00:17.5: pciehp: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.128618] pcieport 0000:00:17.6: PME: Signaling with IRQ 46
[    2.128680] pcieport 0000:00:17.6: pciehp: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.129449] pcieport 0000:00:17.7: PME: Signaling with IRQ 47
[    2.129515] pcieport 0000:00:17.7: pciehp: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.130171] pcieport 0000:00:18.0: PME: Signaling with IRQ 48
[    2.130233] pcieport 0000:00:18.0: pciehp: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.130890] pcieport 0000:00:18.1: PME: Signaling with IRQ 49
[    2.130951] pcieport 0000:00:18.1: pciehp: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.131615] pcieport 0000:00:18.2: PME: Signaling with IRQ 50
[    2.131671] pcieport 0000:00:18.2: pciehp: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.132269] pcieport 0000:00:18.3: PME: Signaling with IRQ 51
[    2.132325] pcieport 0000:00:18.3: pciehp: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.132941] pcieport 0000:00:18.4: PME: Signaling with IRQ 52
[    2.132997] pcieport 0000:00:18.4: pciehp: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.133607] pcieport 0000:00:18.5: PME: Signaling with IRQ 53
[    2.133663] pcieport 0000:00:18.5: pciehp: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.134271] pcieport 0000:00:18.6: PME: Signaling with IRQ 54
[    2.134328] pcieport 0000:00:18.6: pciehp: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.134951] pcieport 0000:00:18.7: PME: Signaling with IRQ 55
[    2.135008] pcieport 0000:00:18.7: pciehp: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.135381] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.135411] efifb: probing for efifb
[    2.135684] efifb: framebuffer at 0xf0000000, using 3072k, total 3072k
[    2.135685] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    2.135686] efifb: scrolling: redraw
[    2.135687] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.135789] Console: switching to colour frame buffer device 128x48
[    2.138806] fb0: EFI VGA frame buffer device
[    2.138818] intel_idle: Please enable MWAIT in BIOS SETUP
[    2.139123] ACPI: AC Adapter [ACAD] (on-line)
[    2.139195] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    2.139243] ACPI: Power Button [PWRF]
[    2.154661] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.155576] Non-volatile memory driver v1.3
[    2.168847] rdac: device handler registered
[    2.169055] hp_sw: device handler registered
[    2.169057] emc: device handler registered
[    2.169648] alua: device handler registered
[    2.169746] libphy: Fixed MDIO Bus: probed
[    2.169799] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.169802] ehci-pci: EHCI PCI platform driver
[    2.169813] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.169815] ohci-pci: OHCI PCI platform driver
[    2.169833] uhci_hcd: USB Universal Host Controller Interface driver
[    2.169876] usbcore: registered new interface driver usbserial_generic
[    2.169879] usbserial: USB Serial support registered for generic
[    2.169922] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    2.172169] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.172175] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.172323] mousedev: PS/2 mouse device common for all mice
[    2.192955] rtc_cmos 00:01: registered as rtc0
[    2.193337] rtc_cmos 00:01: setting system clock to 2020-12-11T15:00:27 UTC (1607698827)
[    2.193401] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    2.193409] intel_pstate: CPU model not supported
[    2.194119] EFI Variables Facility v0.08 2004-May-17
[    2.194349] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    2.195940] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    2.196174] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    2.201700] hid: raw HID events driver (C) Jiri Kosina
[    2.201737] usbcore: registered new interface driver usbhid
[    2.201738] usbhid: USB HID core driver
[    2.202236] drop_monitor: Initializing network drop monitor service
[    2.202327] Initializing XFRM netlink socket
[    2.202466] NET: Registered protocol family 10
[    2.203267] Segment Routing with IPv6
[    2.203281] NET: Registered protocol family 17
[    2.203338] mpls_gso: MPLS GSO support
[    2.210424] IPI shorthand broadcast: enabled
[    2.210443] AVX2 version of gcm_enc/dec engaged.
[    2.210444] AES CTR mode by8 optimization enabled
[    2.227069] sched_clock: Marking stable (2217711486, 9354900)->(2429728420, -202662034)
[    2.228187] registered taskstats version 1
[    2.228207] Loading compiled-in X.509 certificates
[    2.256188] Loaded X.509 cert 'Build time autogenerated kernel key: 65188e3fe9d679047dac4752cde1da6f29df4a20'
[    2.256875] zswap: loaded using pool lzo/zbud
[    2.260890] Key type encrypted registered
[    2.261390] integrity: Loading X.509 certificate: UEFI:db
[    2.261469] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    2.261470] integrity: Loading X.509 certificate: UEFI:db
[    2.261646] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    2.261647] integrity: Loading X.509 certificate: UEFI:db
[    2.261662] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    2.261663] integrity: Loading X.509 certificate: UEFI:db
[    2.261676] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    2.262639] integrity: Loading X.509 certificate: UEFI:MokListRT
[    2.262842] integrity: Loaded X.509 cert 'Red Hat Secure Boot (CA key 1): 4016841644ce3a810408050766e8f8a29c65f85c'
[    2.262845] ima: No TPM chip found, activating TPM-bypass!
[    2.262848] ima: Allocated hash algorithm: sha1
[    2.262854] ima: No architecture policies found
[    2.262881] evm: Initialising EVM extended attributes:
[    2.262882] evm: security.selinux
[    2.262883] evm: security.ima
[    2.262884] evm: security.capability
[    2.262884] evm: HMAC attrs: 0x1
[    2.269413] Freeing unused decrypted memory: 2036K
[    2.270642] Freeing unused kernel image (initmem) memory: 2356K
[    2.278505] Write protecting the kernel read-only data: 20480k
[    2.280020] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    2.281296] Freeing unused kernel image (rodata/data gap) memory: 1732K
[    2.281423] Run /init as init process
[    2.281425]   with arguments:
[    2.281426]     /init
[    2.281426]     rhgb
[    2.281427]   with environment:
[    2.281428]     HOME=/
[    2.281429]     TERM=linux
[    2.281430]     BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3
[    2.281430]     crashkernel=auto
[    2.307202] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    2.307227] systemd[1]: Detected virtualization vmware.
[    2.307231] systemd[1]: Detected architecture x86-64.
[    2.307233] systemd[1]: Running in initial RAM disk.
[    2.317049] systemd[1]: Set hostname to <localhost.localdomain>.
[    2.368241] random: systemd: uninitialized urandom read (16 bytes read)
[    2.368251] systemd[1]: Reached target Timers.
[    2.368287] random: systemd: uninitialized urandom read (16 bytes read)
[    2.368358] systemd[1]: Listening on Journal Socket (/dev/log).
[    2.368366] random: systemd: uninitialized urandom read (16 bytes read)
[    2.368371] systemd[1]: Reached target Slices.
[    2.368382] systemd[1]: Reached target Swap.
[    2.368425] systemd[1]: Listening on udev Kernel Socket.
[    2.880534] VMware PVSCSI driver - version 1.0.7.0-k
[    2.881605] vmw_pvscsi: using 64bit dma
[    2.881773] vmw_pvscsi: max_id: 65
[    2.881774] vmw_pvscsi: setting ring_pages to 32
[    2.882916] vmw_pvscsi: enabling reqCallThreshold
[    2.885948] vmw_pvscsi: driver-based request coalescing enabled
[    2.885949] vmw_pvscsi: using MSI-X
[    2.886431] scsi host0: VMware PVSCSI storage adapter rev 2, req/cmp/msg rings: 32/32/1 pages, cmd_per_lun=254
[    2.886795] vmw_pvscsi 0000:03:00.0: VMware PVSCSI rev 2 host #0
[    2.887927] scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     2.0  PQ: 0 ANSI: 6
[    2.891314] VMware vmxnet3 virtual NIC driver - version 1.5.0.0-k-NAPI
[    2.891364] vmxnet3 0000:0b:00.0: # of Tx queues : 8, # of Rx queues : 8
[    2.891405] vmxnet3 0000:0b:00.0: enabling device (0000 -> 0003)
[    2.898090] vmxnet3 0000:0b:00.0 eth0: NIC Link is Up 10000 Mbps
[    2.911645] libata version 3.00 loaded.
[    2.916333] ata_piix 0000:00:07.1: version 2.13
[    2.919091] scsi host1: ata_piix
[    2.919452] scsi host2: ata_piix
[    2.919497] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x2050 irq 14
[    2.919498] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x2058 irq 15
[    3.082517] tsc: Refined TSC clocksource calibration: 2095.080 MHz
[    3.082600] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e3308baada, max_idle_ns: 440795237786 ns
[    3.108505] clocksource: Switched to clocksource tsc
[    3.147353] [drm] DMA map mode: Caching DMA mappings.
[    3.147598] [drm] Capabilities:
[    3.147599] [drm]   Rect copy.
[    3.147600] [drm]   Cursor.
[    3.147600] [drm]   Cursor bypass.
[    3.147601] [drm]   Cursor bypass 2.
[    3.147601] [drm]   8bit emulation.
[    3.147602] [drm]   Alpha cursor.
[    3.147604] [drm]   Extended Fifo.
[    3.147606] [drm]   Multimon.
[    3.147608] [drm]   Pitchlock.
[    3.147610] [drm]   Irq mask.
[    3.147612] [drm]   Display Topology.
[    3.147614] [drm]   GMR.
[    3.147615] [drm]   Traces.
[    3.147617] [drm]   GMR2.
[    3.147619] [drm]   Screen Object 2.
[    3.147621] [drm]   Command Buffers.
[    3.147622] [drm]   Command Buffers 2.
[    3.147624] [drm]   Guest Backed Resources.
[    3.147626] [drm]   DX Features.
[    3.147627] [drm]   HP Command Queue.
[    3.147629] [drm] Capabilities2:
[    3.147631] [drm]   Grow oTable.
[    3.147632] [drm]   IntraSurface copy.
[    3.147637] [drm] Max GMR ids is 64
[    3.147638] [drm] Max number of GMR pages is 65536
[    3.147639] [drm] Max dedicated hypervisor surface memory is 0 kiB
[    3.147639] [drm] Maximum display memory size is 8192 kiB
[    3.147640] [drm] VRAM at 0xf0000000 size is 8192 kiB
[    3.147641] [drm] MMIO at 0xfb800000 size is 256 kiB
[    3.147680] vmwgfx 0000:00:0f.0: BAR 1: can't reserve [mem 0xf0000000-0xf7ffffff pref]
[    3.147681] [drm] It appears like vesafb is loaded. Ignore above error if any.
[    3.149586] [TTM] Zone  kernel: Available graphics memory: 528423276 KiB
[    3.149588] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    3.149589] [TTM] Initializing pool allocator
[    3.149594] [TTM] Initializing DMA pool allocator
[    3.151071] [drm] Screen Target Display device initialized
[    3.151108] [drm] width 1024
[    3.151114] [drm] height 768
[    3.151120] [drm] bpp 32
[    3.154896] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
[    3.155817] [drm] Using command buffers with DMA pool.
[    3.155824] [drm] Atomic: yes.
[    3.170008] checking generic (f0000000 300000) vs hw (f0000000 800000)
[    3.170010] fb0: switching to svgadrmfb from EFI VGA
[    3.170321] Console: switching to colour dummy device 80x25
[    3.170426] fbcon: svgadrmfb (fb0) is primary device
[    3.171414] Console: switching to colour frame buffer device 128x48
[    3.177414] [drm] Initialized vmwgfx 2.18.0 20200114 for 0000:00:0f.0 on minor 0
[    3.231463] vmxnet3 0000:0b:00.0 ens192: renamed from eth0
[    3.247599] sd 0:0:0:0: [sda] 41943040 512-byte logical blocks: (21.5 GB/20.0 GiB)
[    3.247635] sd 0:0:0:0: [sda] Write Protect is off
[    3.247637] sd 0:0:0:0: [sda] Mode Sense: 61 00 00 00
[    3.247669] sd 0:0:0:0: [sda] Cache data unavailable
[    3.247670] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    3.263603]  sda: sda1 sda2
[    3.265201] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.401143] random: fast init done
[    3.575170] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    3.657450] random: crng init done
[    3.657455] random: 7 urandom warning(s) missed due to ratelimiting
[    3.916184] systemd-journald[803]: Received SIGTERM from PID 1 (systemd).
[    3.949172] printk: systemd: 22 output lines suppressed due to ratelimiting
[    4.014828] SELinux:  Runtime disable is deprecated, use selinux=0 on the kernel cmdline.
[    4.014852] SELinux:  Disabled at runtime.
[    4.045561] audit: type=1404 audit(1607698829.352:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1
[    4.072463] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    4.072490] systemd[1]: Detected virtualization vmware.
[    4.072494] systemd[1]: Detected architecture x86-64.
[    4.073137] systemd[1]: Set hostname to <localhost.localdomain>.
[    4.123969] systemd[1]: Configuration file /usr/lib/systemd/system/rc-local.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    4.178172] systemd[1]: Stopped Switch Root.
[    4.178421] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[    4.178474] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    4.178495] systemd[1]: Stopped Journal Service.
[    4.179294] systemd[1]: Starting Journal Service...
[    4.194297] EXT4-fs (sda2): re-mounted. Opts: (null)
[    4.390490] systemd-journald[4352]: Received request to flush runtime journal from PID 1
[    4.590272] piix4_smbus 0000:00:07.3: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
[    4.591401] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    4.598767] vmw_vmci 0000:00:07.7: enabling device (0000 -> 0003)
[    4.601340] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x12000, irq 16
[    4.601453] vmw_vmci 0000:00:07.7: Using capabilities 0x1c
[    4.602284] Guest personality initialized and is active
[    4.606479] VMCI host device registered (name=vmci, major=10, minor=61)
[    4.606481] Initialized host personality
[    4.608522] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.620967] NET: Registered protocol family 40
[    4.728697] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    4.932848] vmxnet3 0000:0b:00.0 ens192: intr type 3, mode 0, 9 vectors allocated
[    4.934224] vmxnet3 0000:0b:00.0 ens192: NIC Link is Up 10000 Mbps

[-- Attachment #3: vanilla-dmesg.log --]
[-- Type: application/octet-stream, Size: 140126 bytes --]

[    0.000000] Linux version 5.10.0-rc3 (root@w1-hs1-mwenig-dhcp-175.eng.vmware.com) (gcc (GCC) 8.3.1 20190507 (Red Hat 8.3.1-4), GNU ld version 2.30-58.el8) #1 SMP Tue Nov 24 01:58:07 EST 2020
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    0.000000] Disabled fast string operations
[    0.000000] ------------[ cut here ]------------
[    0.000000] XSAVE consistency problem, dumping leaves
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/fpu/xstate.c:657 fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.10.0-rc3 #1
[    0.000000] RIP: 0010:fpu__init_system_xstate+0x415/0x8d3
[    0.000000] Code: 85 7c fd ff ff 44 3b 35 f1 55 22 00 74 2c 80 3d 6c 78 bc ff 00 75 15 48 c7 c7 a8 8c 8e 8f c6 05 5c 78 bc ff 01 e8 e2 15 b9 fe <0f> 0b 83 3d 9a b9 68 ff 00 74 05 e8 40 d0 b8 fe 48 8b 35 0c b4 bf
[    0.000000] RSP: 0000:ffffffff8fc03e60 EFLAGS: 00010086 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: 0000000000000a88 RCX: 0000000000000000
[    0.000000] RDX: ffffffff8fc03c70 RSI: 00000000ffff7fff RDI: ffffffff9082cecc
[    0.000000] RBP: 0000000000000010 R08: 0000000000000000 R09: c0000000ffff7fff
[    0.000000] R10: 0000000000000001 R11: ffffffff8fc03c68 R12: 0000000000000a88
[    0.000000] R13: 0000000000000008 R14: 0000000000000988 R15: 0000000000000001
[    0.000000] FS:  0000000000000000(0000) GS:ffffffff9055f000(0000) knlGS:0000000000000000
[    0.000000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: ffff88800e0b0000 CR3: 000000fc6f1f6000 CR4: 00000000000406a0
[    0.000000] Call Trace:
[    0.000000]  ? 0xffffffff8e800000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xc2/0xcb
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.10.0-rc3 #1
[    0.000000] Call Trace:
[    0.000000]  ? dump_stack+0x57/0x6a
[    0.000000]  ? __warn.cold.14+0xe/0x3d
[    0.000000]  ? fpu__init_system_xstate+0x415/0x8d3
[    0.000000]  ? report_bug+0xc0/0xf0
[    0.000000]  ? early_fixup_exception+0x59/0xa6
[    0.000000]  ? early_idt_handler_common+0x2f/0x3a
[    0.000000]  ? fpu__init_system_xstate+0x415/0x8d3
[    0.000000]  ? 0xffffffff8e800000
[    0.000000]  ? fpu__init_system+0x101/0x12c
[    0.000000]  ? early_cpu_init+0x3a0/0x3c5
[    0.000000]  ? setup_arch+0xca/0xc9b
[    0.000000]  ? printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x5e/0x57a
[    0.000000]  ? secondary_startup_64_no_verify+0xc2/0xcb
[    0.000000] random: get_random_bytes called from print_oops_end_marker+0x26/0x40 with crng_init=0
[    0.000000] ---[ end trace 69c4d346c8a1abbe ]---
[    0.000000] CPUID[0d, 00]: eax=000002e7 ebx=00000a88 ecx=00000a88 edx=00000000
[    0.000000] CPUID[0d, 01]: eax=0000000f ebx=00000a88 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 02]: eax=00000100 ebx=00000240 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 03]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 04]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 05]: eax=00000040 ebx=00000440 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 06]: eax=00000200 ebx=00000480 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 07]: eax=00000400 ebx=00000680 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 08]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 09]: eax=00000008 ebx=00000a80 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0d]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0e]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0f]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 10]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 11]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 12]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 13]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 14]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 15]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 16]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 17]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 18]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 19]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2696 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000ef23fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a6018-0x0e0ae057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a3018-0x0e0a5057] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] e820: update [mem 0x0e0a1018-0x0e0a2857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000e0a1017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a1018-0x000000000e0a2857] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a2858-0x000000000e0a3017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a3018-0x000000000e0a5057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a5058-0x000000000e0a6017] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0a6018-0x000000000e0ae057] usable
[    0.000000] reserve setup_data: [mem 0x000000000e0ae058-0x000000000ef23fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef24000-0x000000000ef2cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef2d000-0x000000000ef3bfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef3c000-0x000000000ef41fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef42000-0x000000000ef47fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ef48000-0x000000000ef60fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000ef61000-0x000000000ef65fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ef66000-0x000000000fee6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000000fee7000-0x000000000ff56fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000ff57000-0x000000000ff72fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000000ff73000-0x000000000ff76fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000ff77000-0x00000000bfffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffc29fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000fcffffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000010000000000-0x000001033fffffff] usable
[    0.000000] efi: EFI v2.31 by VMware, Inc.
[    0.000000] efi: SMBIOS=0xef42000 ACPI 2.0=0xff66000 MEMATTR=0xfda1018 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: VMware, Inc. VMware7,1/440BX Desktop Reference Platform, BIOS VMW71.00V.15401161.B64.2001021853 01/02/2020
[    0.000000] vmware: hypercall mode: 0x02
[    0.000000] Hypervisor detected: VMware
[    0.000000] vmware: TSC freq read from hypervisor : 2095.078 MHz
[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[    0.000000] vmware: using clock offset of 7339465455 ns
[    0.000010] tsc: Detected 2095.078 MHz processor
[    0.002010] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.002012] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.002016] last_pfn = 0x10340000 max_arch_pfn = 0x400000000
[    0.002050] MTRR default type: uncachable
[    0.002051] MTRR fixed ranges enabled:
[    0.002051]   00000-9FFFF write-back
[    0.002052]   A0000-FFFFF uncachable
[    0.002053] MTRR variable ranges enabled:
[    0.002054]   0 base 000000000000 mask 1E0000000000 write-back
[    0.002055]   1 base 0000C0000000 mask 1FFFC0000000 uncachable
[    0.002055]   2 disabled
[    0.002055]   3 disabled
[    0.002056]   4 disabled
[    0.002056]   5 disabled
[    0.002057]   6 disabled
[    0.002057]   7 disabled
[    0.002068] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002086] total RAM covered: 2096128M
[    0.002139]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002140]  gran_size: 64K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002141]  gran_size: 64K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002142]  gran_size: 64K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002143]  gran_size: 64K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002144]  gran_size: 64K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002144]  gran_size: 64K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002145]  gran_size: 64K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002146]  gran_size: 64K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002147]  gran_size: 64K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002148]  gran_size: 64K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002148]  gran_size: 64K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002149]  gran_size: 64K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002150]  gran_size: 64K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002151]  gran_size: 64K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002151]  gran_size: 64K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002152]  gran_size: 128K 	chunk_size: 128K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002153]  gran_size: 128K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002154]  gran_size: 128K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002155]  gran_size: 128K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002156]  gran_size: 128K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002156]  gran_size: 128K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002157]  gran_size: 128K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002158]  gran_size: 128K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002159]  gran_size: 128K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002159]  gran_size: 128K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002160]  gran_size: 128K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002161]  gran_size: 128K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002162]  gran_size: 128K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002163]  gran_size: 128K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002163]  gran_size: 128K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002164]  gran_size: 256K 	chunk_size: 256K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002165]  gran_size: 256K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002166]  gran_size: 256K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002167]  gran_size: 256K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002167]  gran_size: 256K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002168]  gran_size: 256K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002169]  gran_size: 256K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002170]  gran_size: 256K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002171]  gran_size: 256K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002171]  gran_size: 256K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002172]  gran_size: 256K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002173]  gran_size: 256K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002174]  gran_size: 256K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002174]  gran_size: 256K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002175]  gran_size: 512K 	chunk_size: 512K 	num_reg: 8  	lose cover RAM: 1792G
[    0.002176]  gran_size: 512K 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002177]  gran_size: 512K 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002178]  gran_size: 512K 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002179]  gran_size: 512K 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002180]  gran_size: 512K 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002181]  gran_size: 512K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002181]  gran_size: 512K 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002182]  gran_size: 512K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002183]  gran_size: 512K 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002184]  gran_size: 512K 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002185]  gran_size: 512K 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002185]  gran_size: 512K 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002186]  gran_size: 1M 	chunk_size: 1M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002187]  gran_size: 1M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002188]  gran_size: 1M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002189]  gran_size: 1M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002189]  gran_size: 1M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002190]  gran_size: 1M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002191]  gran_size: 1M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002192]  gran_size: 1M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002193]  gran_size: 1M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002193]  gran_size: 1M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002194]  gran_size: 1M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002195]  gran_size: 1M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002196]  gran_size: 2M 	chunk_size: 2M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002197]  gran_size: 2M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002197]  gran_size: 2M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002198]  gran_size: 2M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002199]  gran_size: 2M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002200]  gran_size: 2M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002200]  gran_size: 2M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002201]  gran_size: 2M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002202]  gran_size: 2M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002203]  gran_size: 2M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002204]  gran_size: 2M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002204]  gran_size: 4M 	chunk_size: 4M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002205]  gran_size: 4M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002206]  gran_size: 4M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002207]  gran_size: 4M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002208]  gran_size: 4M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002208]  gran_size: 4M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002209]  gran_size: 4M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002210]  gran_size: 4M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002211]  gran_size: 4M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002212]  gran_size: 4M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002212]  gran_size: 8M 	chunk_size: 8M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002213]  gran_size: 8M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002214]  gran_size: 8M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002215]  gran_size: 8M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002216]  gran_size: 8M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002216]  gran_size: 8M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002217]  gran_size: 8M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002218]  gran_size: 8M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002219]  gran_size: 8M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002220]  gran_size: 16M 	chunk_size: 16M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002221]  gran_size: 16M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002221]  gran_size: 16M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002222]  gran_size: 16M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002223]  gran_size: 16M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002224]  gran_size: 16M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002225]  gran_size: 16M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002225]  gran_size: 16M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002226]  gran_size: 32M 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002227]  gran_size: 32M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002228]  gran_size: 32M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002229]  gran_size: 32M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002229]  gran_size: 32M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002230]  gran_size: 32M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002231]  gran_size: 32M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002232]  gran_size: 64M 	chunk_size: 64M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002232]  gran_size: 64M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002233]  gran_size: 64M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002234]  gran_size: 64M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002235]  gran_size: 64M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002236]  gran_size: 64M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002236]  gran_size: 128M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002237]  gran_size: 128M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002238]  gran_size: 128M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002239]  gran_size: 128M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002240]  gran_size: 128M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002240]  gran_size: 256M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002241]  gran_size: 256M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002242]  gran_size: 256M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002243]  gran_size: 256M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002244]  gran_size: 512M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 1792G
[    0.002244]  gran_size: 512M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002245]  gran_size: 512M 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002246]  gran_size: 1G 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002247]  gran_size: 1G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1792G
[    0.002248]  gran_size: 2G 	chunk_size: 2G 	num_reg: 8  	lose cover RAM: 1537G
[    0.002248] mtrr_cleanup: can not find optimal value
[    0.002249] please specify mtrr_gran_size/mtrr_chunk_size
[    0.002259] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.002264] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
[    0.007518] kexec: Reserving the low 1M of memory for crashkernel
[    0.007545] Using GB pages for direct mapping
[    0.008580] Secure boot disabled
[    0.008581] RAMDISK: [mem 0x05df8000-0x0a985fff]
[    0.008593] ACPI: Early table checksum verification disabled
[    0.008596] ACPI: RSDP 0x000000000FF66000 000024 (v02 VMWARE)
[    0.008598] ACPI: XSDT 0x000000000FF66064 00005C (v01 INTEL  440BX    06040000 VMW  01324272)
[    0.008603] ACPI: SRAT 0x000000000FF660C0 000660 (v03 VMWARE EFISRAT  06040001 VMW  000007CE)
[    0.008606] ACPI: FACP 0x000000000FF7252C 0000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
[    0.008609] ACPI: DSDT 0x000000000FF66720 00BE0C (v01 PTLTD  Custom   00000000 INTL 20130823)
[    0.008611] ACPI: FACS 0x000000000FF76000 000040
[    0.008613] ACPI: FACS 0x000000000FF76000 000040
[    0.008615] ACPI: APIC 0x000000000FF72694 0004DA (v03 VMWARE EFIAPIC  06040001 VMW  000007CE)
[    0.008617] ACPI: MCFG 0x000000000FF72B6E 00003C (v01 VMWARE EFIMCFG  06040001 VMW  000007CE)
[    0.008618] ACPI: HPET 0x000000000FF72BAA 000038 (v01 VMWARE VMW HPET 00000000 VMW  00000000)
[    0.008620] ACPI: WAET 0x000000000FF72BE2 000028 (v01 VMWARE VMW WAET 06040001 VMW  00000001)
[    0.008622] ACPI: WSMT 0x000000000FF72C0A 000028 (v01 VMWARE VMW WSMT 06040001 VMW  00000001)
[    0.008628] ACPI: Local APIC address 0xfee00000
[    0.008661] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.008662] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.008662] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.008663] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.008663] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.008664] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.008664] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.008665] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.008665] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.008666] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.008666] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.008666] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.008667] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.008667] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.008668] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.008668] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[    0.008669] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.008669] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.008669] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.008670] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.008670] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.008671] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.008671] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[    0.008672] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[    0.008672] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[    0.008673] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.008673] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.008673] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.008674] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.008674] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.008675] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[    0.008675] SRAT: PXM 1 -> APIC 0x3e -> Node 1
[    0.008676] SRAT: PXM 1 -> APIC 0x40 -> Node 1
[    0.008676] SRAT: PXM 1 -> APIC 0x42 -> Node 1
[    0.008677] SRAT: PXM 1 -> APIC 0x44 -> Node 1
[    0.008677] SRAT: PXM 1 -> APIC 0x46 -> Node 1
[    0.008678] SRAT: PXM 1 -> APIC 0x48 -> Node 1
[    0.008678] SRAT: PXM 1 -> APIC 0x4a -> Node 1
[    0.008679] SRAT: PXM 1 -> APIC 0x4c -> Node 1
[    0.008679] SRAT: PXM 1 -> APIC 0x4e -> Node 1
[    0.008680] SRAT: PXM 1 -> APIC 0x50 -> Node 1
[    0.008680] SRAT: PXM 1 -> APIC 0x52 -> Node 1
[    0.008681] SRAT: PXM 1 -> APIC 0x54 -> Node 1
[    0.008681] SRAT: PXM 1 -> APIC 0x56 -> Node 1
[    0.008681] SRAT: PXM 1 -> APIC 0x58 -> Node 1
[    0.008682] SRAT: PXM 1 -> APIC 0x5a -> Node 1
[    0.008682] SRAT: PXM 1 -> APIC 0x5c -> Node 1
[    0.008683] SRAT: PXM 1 -> APIC 0x5e -> Node 1
[    0.008683] SRAT: PXM 1 -> APIC 0x60 -> Node 1
[    0.008684] SRAT: PXM 1 -> APIC 0x62 -> Node 1
[    0.008684] SRAT: PXM 1 -> APIC 0x64 -> Node 1
[    0.008684] SRAT: PXM 1 -> APIC 0x66 -> Node 1
[    0.008685] SRAT: PXM 1 -> APIC 0x68 -> Node 1
[    0.008685] SRAT: PXM 1 -> APIC 0x6a -> Node 1
[    0.008686] SRAT: PXM 1 -> APIC 0x6c -> Node 1
[    0.008686] SRAT: PXM 1 -> APIC 0x6e -> Node 1
[    0.008687] SRAT: PXM 2 -> APIC 0x70 -> Node 2
[    0.008687] SRAT: PXM 2 -> APIC 0x72 -> Node 2
[    0.008688] SRAT: PXM 2 -> APIC 0x74 -> Node 2
[    0.008688] SRAT: PXM 2 -> APIC 0x76 -> Node 2
[    0.008689] SRAT: PXM 2 -> APIC 0x78 -> Node 2
[    0.008689] SRAT: PXM 2 -> APIC 0x7a -> Node 2
[    0.008690] SRAT: PXM 2 -> APIC 0x7c -> Node 2
[    0.008690] SRAT: PXM 2 -> APIC 0x7e -> Node 2
[    0.008690] SRAT: PXM 2 -> APIC 0x80 -> Node 2
[    0.008691] SRAT: PXM 2 -> APIC 0x82 -> Node 2
[    0.008691] SRAT: PXM 2 -> APIC 0x84 -> Node 2
[    0.008692] SRAT: PXM 2 -> APIC 0x86 -> Node 2
[    0.008692] SRAT: PXM 2 -> APIC 0x88 -> Node 2
[    0.008693] SRAT: PXM 2 -> APIC 0x8a -> Node 2
[    0.008693] SRAT: PXM 2 -> APIC 0x8c -> Node 2
[    0.008694] SRAT: PXM 2 -> APIC 0x8e -> Node 2
[    0.008694] SRAT: PXM 2 -> APIC 0x90 -> Node 2
[    0.008694] SRAT: PXM 2 -> APIC 0x92 -> Node 2
[    0.008695] SRAT: PXM 2 -> APIC 0x94 -> Node 2
[    0.008695] SRAT: PXM 2 -> APIC 0x96 -> Node 2
[    0.008696] SRAT: PXM 2 -> APIC 0x98 -> Node 2
[    0.008696] SRAT: PXM 2 -> APIC 0x9a -> Node 2
[    0.008697] SRAT: PXM 2 -> APIC 0x9c -> Node 2
[    0.008697] SRAT: PXM 2 -> APIC 0x9e -> Node 2
[    0.008698] SRAT: PXM 2 -> APIC 0xa0 -> Node 2
[    0.008699] SRAT: PXM 2 -> APIC 0xa2 -> Node 2
[    0.008699] SRAT: PXM 2 -> APIC 0xa4 -> Node 2
[    0.008700] SRAT: PXM 2 -> APIC 0xa6 -> Node 2
[    0.008702] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.008703] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[    0.008703] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x55ffffffff]
[    0.008704] ACPI: SRAT: Node 1 PXM 1 [mem 0x5600000000-0xaaffffffff]
[    0.008704] ACPI: SRAT: Node 2 PXM 2 [mem 0xab00000000-0xfcffffffff]
[    0.008705] ACPI: SRAT: Node 2 PXM 2 [mem 0x10000000000-0x1033fffffff]
[    0.008706] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xbfffffff] -> [mem 0x00000000-0xbfffffff]
[    0.008707] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x55ffffffff] -> [mem 0x00000000-0x55ffffffff]
[    0.008708] NUMA: Node 2 [mem 0xab00000000-0xfcffffffff] + [mem 0x10000000000-0x1033fffffff] -> [mem 0xab00000000-0x1033fffffff]
[    0.008716] NODE_DATA(0) allocated [mem 0x55fffd6000-0x55ffffffff]
[    0.009077] NODE_DATA(1) allocated [mem 0xaafffd6000-0xaaffffffff]
[    0.009714] NODE_DATA(2) allocated [mem 0x1033ffd5000-0x1033fffefff]
[    0.009824] crashkernel: memory value expected
[    0.010528] Zone ranges:
[    0.010529]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.010530]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.010531]   Normal   [mem 0x0000000100000000-0x000001033fffffff]
[    0.010532]   Device   empty
[    0.010533] Movable zone start for each node
[    0.010535] Early memory node ranges
[    0.010535]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.010536]   node   0: [mem 0x0000000000100000-0x000000000ef23fff]
[    0.010537]   node   0: [mem 0x000000000ef2d000-0x000000000ef3bfff]
[    0.010537]   node   0: [mem 0x000000000ef48000-0x000000000ef60fff]
[    0.010538]   node   0: [mem 0x000000000ef66000-0x000000000fee6fff]
[    0.010538]   node   0: [mem 0x000000000ff77000-0x00000000bfffffff]
[    0.010539]   node   0: [mem 0x0000000100000000-0x00000055ffffffff]
[    0.010553]   node   1: [mem 0x0000005600000000-0x000000aaffffffff]
[    0.010567]   node   2: [mem 0x000000ab00000000-0x000000fcffffffff]
[    0.010581]   node   2: [mem 0x0000010000000000-0x000001033fffffff]
[    0.011315] Zeroed struct page in unavailable ranges: 267 pages
[    0.011316] Initmem setup node 0 [mem 0x0000000000001000-0x00000055ffffffff]
[    0.011318] On node 0 totalpages: 89915125
[    0.011319]   DMA zone: 64 pages used for memmap
[    0.011319]   DMA zone: 159 pages reserved
[    0.011320]   DMA zone: 3999 pages, LIFO batch:0
[    0.011340]   DMA32 zone: 12222 pages used for memmap
[    0.011341]   DMA32 zone: 782166 pages, LIFO batch:63
[    0.022717]   Normal zone: 1392640 pages used for memmap
[    0.022719]   Normal zone: 89128960 pages, LIFO batch:63
[    0.023239] Initmem setup node 1 [mem 0x0000005600000000-0x000000aaffffffff]
[    0.023242] On node 1 totalpages: 89128960
[    0.023242]   Normal zone: 1392640 pages used for memmap
[    0.023243]   Normal zone: 89128960 pages, LIFO batch:63
[    0.024009] Initmem setup node 2 [mem 0x000000ab00000000-0x000001033fffffff]
[    0.024011] On node 2 totalpages: 89391104
[    0.024012]   Normal zone: 1445888 pages used for memmap
[    0.024012]   Normal zone: 89391104 pages, LIFO batch:63
[    2.054646] ACPI: PM-Timer IO Port: 0x448
[    2.054650] ACPI: Local APIC address 0xfee00000
[    2.054671] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    2.054672] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    2.054672] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    2.054673] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    2.054673] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    2.054674] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    2.054675] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    2.054675] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    2.054676] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    2.054677] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    2.054678] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    2.054678] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    2.054679] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    2.054680] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    2.054680] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    2.054681] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    2.054682] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    2.054682] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    2.054683] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    2.054683] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    2.054683] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    2.054684] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    2.054684] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    2.054685] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    2.054685] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    2.054686] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    2.054686] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    2.054687] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    2.054687] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    2.054688] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    2.054688] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    2.054688] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    2.054689] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    2.054689] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    2.054690] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    2.054691] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    2.054691] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    2.054692] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    2.054693] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    2.054694] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    2.054694] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    2.054695] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    2.054695] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    2.054696] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    2.054696] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    2.054697] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    2.054697] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    2.054698] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    2.054698] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    2.054699] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    2.054699] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    2.054699] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    2.054700] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    2.054700] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    2.054701] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    2.054701] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    2.054702] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    2.054702] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    2.054703] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    2.054703] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    2.054704] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[    2.054704] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    2.054704] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[    2.054705] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[    2.054705] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[    2.054706] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[    2.054706] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[    2.054707] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[    2.054707] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[    2.054708] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[    2.054708] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[    2.054709] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[    2.054709] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[    2.054710] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[    2.054710] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[    2.054711] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[    2.054712] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[    2.054712] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[    2.054713] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[    2.054713] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[    2.054714] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[    2.054715] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[    2.054715] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[    2.054716] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[    2.054747] IOAPIC[0]: apic_id 84, version 32, address 0xfec00000, GSI 0-23
[    2.054749] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    2.054751] ACPI: IRQ0 used by override.
[    2.054752] ACPI: IRQ9 used by override.
[    2.054754] Using ACPI (MADT) for SMP configuration information
[    2.054755] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[    2.054760] TSC deadline timer available
[    2.054761] smpboot: Allowing 84 CPUs, 0 hotplug CPUs
[    2.054798] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    2.054799] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    2.054800] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    2.054801] PM: hibernation: Registered nosave memory: [mem 0x0e0a1000-0x0e0a1fff]
[    2.054802] PM: hibernation: Registered nosave memory: [mem 0x0e0a2000-0x0e0a2fff]
[    2.054803] PM: hibernation: Registered nosave memory: [mem 0x0e0a3000-0x0e0a3fff]
[    2.054804] PM: hibernation: Registered nosave memory: [mem 0x0e0a5000-0x0e0a5fff]
[    2.054805] PM: hibernation: Registered nosave memory: [mem 0x0e0a6000-0x0e0a6fff]
[    2.054806] PM: hibernation: Registered nosave memory: [mem 0x0e0ae000-0x0e0aefff]
[    2.054808] PM: hibernation: Registered nosave memory: [mem 0x0ef24000-0x0ef2cfff]
[    2.054809] PM: hibernation: Registered nosave memory: [mem 0x0ef3c000-0x0ef41fff]
[    2.054809] PM: hibernation: Registered nosave memory: [mem 0x0ef42000-0x0ef47fff]
[    2.054811] PM: hibernation: Registered nosave memory: [mem 0x0ef61000-0x0ef65fff]
[    2.054812] PM: hibernation: Registered nosave memory: [mem 0x0fee7000-0x0ff56fff]
[    2.054812] PM: hibernation: Registered nosave memory: [mem 0x0ff57000-0x0ff72fff]
[    2.054813] PM: hibernation: Registered nosave memory: [mem 0x0ff73000-0x0ff76fff]
[    2.054814] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xffbfffff]
[    2.054815] PM: hibernation: Registered nosave memory: [mem 0xffc00000-0xffc29fff]
[    2.054815] PM: hibernation: Registered nosave memory: [mem 0xffc2a000-0xffffffff]
[    2.054816] PM: hibernation: Registered nosave memory: [mem 0xfd00000000-0xffffffffff]
[    2.054818] [mem 0xc0000000-0xffbfffff] available for PCI devices
[    2.054820] Booting paravirtualized kernel on VMware hypervisor
[    2.054823] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    2.058128] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:84 nr_cpu_ids:84 nr_node_ids:3
[    2.066742] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
[    2.066753] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
[    2.066755] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    2.066762] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 -- -- -- -- 
[    2.066768] pcpu-alloc: [1] 28 29 30 31 32 33 34 35 [1] 36 37 38 39 40 41 42 43 
[    2.066774] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 [1] 52 53 54 55 -- -- -- -- 
[    2.066780] pcpu-alloc: [2] 56 57 58 59 60 61 62 63 [2] 64 65 66 67 68 69 70 71 
[    2.066785] pcpu-alloc: [2] 72 73 74 75 76 77 78 79 [2] 80 81 82 83 -- -- -- -- 
[    2.066832] Built 3 zonelists, mobility grouping on.  Total pages: 264191576
[    2.066834] Policy zone: Normal
[    2.066836] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3 root=UUID=406a3e6d-4dc9-4837-895c-2508f1e1fbe0 ro crashkernel=auto rhgb quiet
[    2.067784] mem auto-init: stack:off, heap alloc:off, heap free:off
[    3.274204] Memory: 347271336K/1073740756K available (12297K kernel code, 5775K rwdata, 4412K rodata, 2356K init, 6444K bss, 16996408K reserved, 0K cma-reserved)
[    3.276174] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=84, Nodes=3
[    3.276223] Kernel/User page tables isolation: enabled
[    3.276278] ftrace: allocating 39728 entries in 156 pages
[    3.290726] ftrace: allocated 156 pages with 4 groups
[    3.292084] rcu: Hierarchical RCU implementation.
[    3.292086] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=84.
[    3.292087] 	Rude variant of Tasks RCU enabled.
[    3.292088] 	Tracing variant of Tasks RCU enabled.
[    3.292089] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    3.292090] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=84
[    3.294957] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    3.295640] Console: colour dummy device 80x25
[    3.295679] printk: console [tty0] enabled
[    3.295836] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    3.295840] ACPI: Core revision 20200925
[    3.298244] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    3.298322] APIC: Switch to symmetric I/O mode setup
[    3.299819] x2apic enabled
[    3.302382] Switched APIC routing to physical x2apic.
[    3.305421] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    3.305459] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e3306b9ada, max_idle_ns: 440795224413 ns
[    3.305463] Calibrating delay loop (skipped) preset value.. 4190.15 BogoMIPS (lpj=2095078)
[    3.305466] pid_max: default: 86016 minimum: 672
[    3.306799] LSM: Security Framework initializing
[    3.306835] Yama: becoming mindful.
[    3.306876] SELinux:  Initializing.
[    3.401405] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes, vmalloc)
[    3.447701] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc)
[    3.448553] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.449755] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.452057] Disabled fast string operations
[    3.452532] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    3.452533] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    3.452541] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    3.452542] Spectre V2 : Mitigation: Full generic retpoline
[    3.452543] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    3.452544] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    3.452545] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    3.452546] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    3.452550] MDS: Mitigation: Clear CPU buffers
[    3.452881] Freeing SMP alternatives memory: 32K
[    3.454133] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8176 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x4)
[    3.454332] Performance Events: Skylake events, core PMU driver.
[    3.454392] core: CPUID marked event: 'cpu cycles' unavailable
[    3.454393] core: CPUID marked event: 'instructions' unavailable
[    3.454394] core: CPUID marked event: 'bus cycles' unavailable
[    3.454394] core: CPUID marked event: 'cache references' unavailable
[    3.454395] core: CPUID marked event: 'cache misses' unavailable
[    3.454396] core: CPUID marked event: 'branch instructions' unavailable
[    3.454396] core: CPUID marked event: 'branch misses' unavailable
[    3.454398] ... version:                1
[    3.454399] ... bit width:              48
[    3.454399] ... generic registers:      4
[    3.454400] ... value mask:             0000ffffffffffff
[    3.454400] ... max period:             000000007fffffff
[    3.454401] ... fixed-purpose events:   0
[    3.454401] ... event mask:             000000000000000f
[    3.454460] rcu: Hierarchical SRCU implementation.
[    3.454570] NMI watchdog: Perf NMI watchdog permanently disabled
[    3.456319] smp: Bringing up secondary CPUs ...
[    3.456410] x86: Booting SMP configuration:
[    3.456411] .... node  #0, CPUs:        #1
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 1 Converting physical 2 to logical package 1
[    0.008984] smpboot: CPU 1 Converting physical 0 to logical die 1
[    3.457115]   #2
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 2 Converting physical 4 to logical package 2
[    0.008984] smpboot: CPU 2 Converting physical 0 to logical die 2
[    3.458106]   #3
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 3 Converting physical 6 to logical package 3
[    0.008984] smpboot: CPU 3 Converting physical 0 to logical die 3
[    3.458540]   #4
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 4 Converting physical 8 to logical package 4
[    0.008984] smpboot: CPU 4 Converting physical 0 to logical die 4
[    3.459222]   #5
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 5 Converting physical 10 to logical package 5
[    0.008984] smpboot: CPU 5 Converting physical 0 to logical die 5
[    3.460123]   #6
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 6 Converting physical 12 to logical package 6
[    0.008984] smpboot: CPU 6 Converting physical 0 to logical die 6
[    3.460905]   #7
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 7 Converting physical 14 to logical package 7
[    0.008984] smpboot: CPU 7 Converting physical 0 to logical die 7
[    3.461527]   #8
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 8 Converting physical 16 to logical package 8
[    0.008984] smpboot: CPU 8 Converting physical 0 to logical die 8
[    3.462537]   #9
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 9 Converting physical 18 to logical package 9
[    0.008984] smpboot: CPU 9 Converting physical 0 to logical die 9
[    3.463279]  #10
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 10 Converting physical 20 to logical package 10
[    0.008984] smpboot: CPU 10 Converting physical 0 to logical die 10
[    3.464123]  #11
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 11 Converting physical 22 to logical package 11
[    0.008984] smpboot: CPU 11 Converting physical 0 to logical die 11
[    3.464830]  #12
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 12 Converting physical 24 to logical package 12
[    0.008984] smpboot: CPU 12 Converting physical 0 to logical die 12
[    3.465532]  #13
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 13 Converting physical 26 to logical package 13
[    0.008984] smpboot: CPU 13 Converting physical 0 to logical die 13
[    3.466484]  #14
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 14 Converting physical 28 to logical package 14
[    0.008984] smpboot: CPU 14 Converting physical 0 to logical die 14
[    3.467232]  #15
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 15 Converting physical 30 to logical package 15
[    0.008984] smpboot: CPU 15 Converting physical 0 to logical die 15
[    3.468047]  #16
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 16 Converting physical 32 to logical package 16
[    0.008984] smpboot: CPU 16 Converting physical 0 to logical die 16
[    3.468828]  #17
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 17 Converting physical 34 to logical package 17
[    0.008984] smpboot: CPU 17 Converting physical 0 to logical die 17
[    3.469675]  #18
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 18 Converting physical 36 to logical package 18
[    0.008984] smpboot: CPU 18 Converting physical 0 to logical die 18
[    3.470904]  #19
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 19 Converting physical 38 to logical package 19
[    0.008984] smpboot: CPU 19 Converting physical 0 to logical die 19
[    3.471693]  #20
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 20 Converting physical 40 to logical package 20
[    0.008984] smpboot: CPU 20 Converting physical 0 to logical die 20
[    3.472533]  #21
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 21 Converting physical 42 to logical package 21
[    0.008984] smpboot: CPU 21 Converting physical 0 to logical die 21
[    3.473538]  #22
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 22 Converting physical 44 to logical package 22
[    0.008984] smpboot: CPU 22 Converting physical 0 to logical die 22
[    3.474166]  #23
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 23 Converting physical 46 to logical package 23
[    0.008984] smpboot: CPU 23 Converting physical 0 to logical die 23
[    3.475077]  #24
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 24 Converting physical 48 to logical package 24
[    0.008984] smpboot: CPU 24 Converting physical 0 to logical die 24
[    3.475711]  #25
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 25 Converting physical 50 to logical package 25
[    0.008984] smpboot: CPU 25 Converting physical 0 to logical die 25
[    3.476539]  #26
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 26 Converting physical 52 to logical package 26
[    0.008984] smpboot: CPU 26 Converting physical 0 to logical die 26
[    3.477217]  #27
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 27 Converting physical 54 to logical package 27
[    0.008984] smpboot: CPU 27 Converting physical 0 to logical die 27

[    3.478121] .... node  #1, CPUs:   #28
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 28 Converting physical 56 to logical package 28
[    0.008984] smpboot: CPU 28 Converting physical 0 to logical die 28
[    3.479044]  #29
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 29 Converting physical 58 to logical package 29
[    0.008984] smpboot: CPU 29 Converting physical 0 to logical die 29
[    3.480114]  #30
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 30 Converting physical 60 to logical package 30
[    0.008984] smpboot: CPU 30 Converting physical 0 to logical die 30
[    3.481068]  #31
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 31 Converting physical 62 to logical package 31
[    0.008984] smpboot: CPU 31 Converting physical 0 to logical die 31
[    3.482032]  #32
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 32 Converting physical 64 to logical package 32
[    0.008984] smpboot: CPU 32 Converting physical 0 to logical die 32
[    3.482833]  #33
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 33 Converting physical 66 to logical package 33
[    0.008984] smpboot: CPU 33 Converting physical 0 to logical die 33
[    3.483555]  #34
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 34 Converting physical 68 to logical package 34
[    0.008984] smpboot: CPU 34 Converting physical 0 to logical die 34
[    3.484541]  #35
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 35 Converting physical 70 to logical package 35
[    0.008984] smpboot: CPU 35 Converting physical 0 to logical die 35
[    3.485144]  #36
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 36 Converting physical 72 to logical package 36
[    0.008984] smpboot: CPU 36 Converting physical 0 to logical die 36
[    3.485912]  #37
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 37 Converting physical 74 to logical package 37
[    0.008984] smpboot: CPU 37 Converting physical 0 to logical die 37
[    3.486688]  #38
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 38 Converting physical 76 to logical package 38
[    0.008984] smpboot: CPU 38 Converting physical 0 to logical die 38
[    3.488151]  #39
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 39 Converting physical 78 to logical package 39
[    0.008984] smpboot: CPU 39 Converting physical 0 to logical die 39
[    3.488543]  #40
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 40 Converting physical 80 to logical package 40
[    0.008984] smpboot: CPU 40 Converting physical 0 to logical die 40
[    3.489174]  #41
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 41 Converting physical 82 to logical package 41
[    0.008984] smpboot: CPU 41 Converting physical 0 to logical die 41
[    3.489988]  #42
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 42 Converting physical 84 to logical package 42
[    0.008984] smpboot: CPU 42 Converting physical 0 to logical die 42
[    3.490662]  #43
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 43 Converting physical 86 to logical package 43
[    0.008984] smpboot: CPU 43 Converting physical 0 to logical die 43
[    3.491536]  #44
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 44 Converting physical 88 to logical package 44
[    0.008984] smpboot: CPU 44 Converting physical 0 to logical die 44
[    3.492149]  #45
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 45 Converting physical 90 to logical package 45
[    0.008984] smpboot: CPU 45 Converting physical 0 to logical die 45
[    3.492928]  #46
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 46 Converting physical 92 to logical package 46
[    0.008984] smpboot: CPU 46 Converting physical 0 to logical die 46
[    3.493547]  #47
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 47 Converting physical 94 to logical package 47
[    0.008984] smpboot: CPU 47 Converting physical 0 to logical die 47
[    3.494145]  #48
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 48 Converting physical 96 to logical package 48
[    0.008984] smpboot: CPU 48 Converting physical 0 to logical die 48
[    3.495080]  #49
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 49 Converting physical 98 to logical package 49
[    0.008984] smpboot: CPU 49 Converting physical 0 to logical die 49
[    3.495917]  #50
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 50 Converting physical 100 to logical package 50
[    0.008984] smpboot: CPU 50 Converting physical 0 to logical die 50
[    3.496701]  #51
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 51 Converting physical 102 to logical package 51
[    0.008984] smpboot: CPU 51 Converting physical 0 to logical die 51
[    3.498131]  #52
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 52 Converting physical 104 to logical package 52
[    0.008984] smpboot: CPU 52 Converting physical 0 to logical die 52
[    3.498551]  #53
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 53 Converting physical 106 to logical package 53
[    0.008984] smpboot: CPU 53 Converting physical 0 to logical die 53
[    3.499151]  #54
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 54 Converting physical 108 to logical package 54
[    0.008984] smpboot: CPU 54 Converting physical 0 to logical die 54
[    3.500122]  #55
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 55 Converting physical 110 to logical package 55
[    0.008984] smpboot: CPU 55 Converting physical 0 to logical die 55

[    3.501003] .... node  #2, CPUs:   #56
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 56 Converting physical 112 to logical package 56
[    0.008984] smpboot: CPU 56 Converting physical 0 to logical die 56
[    3.502063]  #57
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 57 Converting physical 114 to logical package 57
[    0.008984] smpboot: CPU 57 Converting physical 0 to logical die 57
[    3.503048]  #58
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 58 Converting physical 116 to logical package 58
[    0.008984] smpboot: CPU 58 Converting physical 0 to logical die 58
[    3.503733]  #59
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 59 Converting physical 118 to logical package 59
[    0.008984] smpboot: CPU 59 Converting physical 0 to logical die 59
[    3.504599]  #60
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 60 Converting physical 120 to logical package 60
[    0.008984] smpboot: CPU 60 Converting physical 0 to logical die 60
[    3.505484]  #61
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 61 Converting physical 122 to logical package 61
[    0.008984] smpboot: CPU 61 Converting physical 0 to logical die 61
[    3.506129]  #62
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 62 Converting physical 124 to logical package 62
[    0.008984] smpboot: CPU 62 Converting physical 0 to logical die 62
[    3.506873]  #63
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 63 Converting physical 126 to logical package 63
[    0.008984] smpboot: CPU 63 Converting physical 0 to logical die 63
[    3.508200]  #64
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 64 Converting physical 128 to logical package 64
[    0.008984] smpboot: CPU 64 Converting physical 0 to logical die 64
[    3.509005]  #65
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 65 Converting physical 130 to logical package 65
[    0.008984] smpboot: CPU 65 Converting physical 0 to logical die 65
[    3.509707]  #66
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 66 Converting physical 132 to logical package 66
[    0.008984] smpboot: CPU 66 Converting physical 0 to logical die 66
[    3.510541]  #67
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 67 Converting physical 134 to logical package 67
[    0.008984] smpboot: CPU 67 Converting physical 0 to logical die 67
[    3.511157]  #68
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 68 Converting physical 136 to logical package 68
[    0.008984] smpboot: CPU 68 Converting physical 0 to logical die 68
[    3.511966]  #69
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 69 Converting physical 138 to logical package 69
[    0.008984] smpboot: CPU 69 Converting physical 0 to logical die 69
[    3.512689]  #70
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 70 Converting physical 140 to logical package 70
[    0.008984] smpboot: CPU 70 Converting physical 0 to logical die 70
[    3.513596]  #71
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 71 Converting physical 142 to logical package 71
[    0.008984] smpboot: CPU 71 Converting physical 0 to logical die 71
[    3.514478]  #72
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 72 Converting physical 144 to logical package 72
[    0.008984] smpboot: CPU 72 Converting physical 0 to logical die 72
[    3.515101]  #73
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 73 Converting physical 146 to logical package 73
[    0.008984] smpboot: CPU 73 Converting physical 0 to logical die 73
[    3.515550]  #74
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 74 Converting physical 148 to logical package 74
[    0.008984] smpboot: CPU 74 Converting physical 0 to logical die 74
[    3.516145]  #75
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 75 Converting physical 150 to logical package 75
[    0.008984] smpboot: CPU 75 Converting physical 0 to logical die 75
[    3.517006]  #76
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 76 Converting physical 152 to logical package 76
[    0.008984] smpboot: CPU 76 Converting physical 0 to logical die 76
[    3.518502]  #77
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 77 Converting physical 154 to logical package 77
[    0.008984] smpboot: CPU 77 Converting physical 0 to logical die 77
[    3.519502]  #78
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 78 Converting physical 156 to logical package 78
[    0.008984] smpboot: CPU 78 Converting physical 0 to logical die 78
[    3.520094]  #79
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 79 Converting physical 158 to logical package 79
[    0.008984] smpboot: CPU 79 Converting physical 0 to logical die 79
[    3.520859]  #80
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 80 Converting physical 160 to logical package 80
[    0.008984] smpboot: CPU 80 Converting physical 0 to logical die 80
[    3.521543]  #81
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 81 Converting physical 162 to logical package 81
[    0.008984] smpboot: CPU 81 Converting physical 0 to logical die 81
[    3.522104]  #82
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 82 Converting physical 164 to logical package 82
[    0.008984] smpboot: CPU 82 Converting physical 0 to logical die 82
[    3.522949]  #83
[    0.008984] Disabled fast string operations
[    0.008984] smpboot: CPU 83 Converting physical 166 to logical package 83
[    0.008984] smpboot: CPU 83 Converting physical 0 to logical die 83
[    3.523791] smp: Brought up 3 nodes, 84 CPUs
[    3.523793] smpboot: Max logical packages: 84
[    3.523797] smpboot: Total of 84 processors activated (351973.10 BogoMIPS)
[    3.555460] node 2 deferred pages initialised in 27ms
[    3.648512] node 0 deferred pages initialised in 121ms
[    3.679507] node 1 deferred pages initialised in 152ms
[    3.722535] devtmpfs: initialized
[    3.722535] x86/mm: Memory block size: 1024MB
[    3.729872] PM: Registering ACPI NVS region [mem 0x00000000-0x00000fff] (4096 bytes)
[    3.729872] PM: Registering ACPI NVS region [mem 0x0ef42000-0x0ef47fff] (24576 bytes)
[    3.729872] PM: Registering ACPI NVS region [mem 0x0ff73000-0x0ff76fff] (16384 bytes)
[    3.730958] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    3.730958] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    3.732731] pinctrl core: initialized pinctrl subsystem
[    3.733437] NET: Registered protocol family 16
[    3.733555] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    3.733567] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    3.733579] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    3.733588] audit: initializing netlink subsys (disabled)
[    3.733600] audit: type=2000 audit(1607700427.430:1): state=initialized audit_enabled=0 res=1
[    3.733666] thermal_sys: Registered thermal governor 'fair_share'
[    3.733668] thermal_sys: Registered thermal governor 'bang_bang'
[    3.733669] thermal_sys: Registered thermal governor 'step_wise'
[    3.733669] thermal_sys: Registered thermal governor 'user_space'
[    3.733697] cpuidle: using governor menu
[    3.733697] ACPI: bus type PCI registered
[    3.733697] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.734469] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    3.734473] PCI: not using MMCONFIG
[    3.734474] PCI: Using configuration type 1 for base access
[    3.738974] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    3.738974] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    3.768972] cryptd: max_cpu_qlen set to 1000
[    3.788065] ACPI: Added _OSI(Module Device)
[    3.788066] ACPI: Added _OSI(Processor Device)
[    3.788067] ACPI: Added _OSI(3.0 _SCP Extensions)
[    3.788068] ACPI: Added _OSI(Processor Aggregator Device)
[    3.788070] ACPI: Added _OSI(Linux-Dell-Video)
[    3.788071] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    3.788072] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    3.792171] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    3.793083] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    3.793088] ACPI: BIOS _OSI(Darwin) query ignored
[    3.802076] ACPI: Interpreter enabled
[    3.802089] ACPI: (supports S0 S1 S4 S5)
[    3.802090] ACPI: Using IOAPIC for interrupt routing
[    3.802106] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xe0000000-0xe7ffffff] (base 0xe0000000)
[    3.802685] PCI: MMCONFIG at [mem 0xe0000000-0xe7ffffff] reserved in ACPI motherboard resources
[    3.802703] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    3.803406] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    3.803787] ACPI: Enabled 4 GPEs in block 00 to 0F
[    3.821078] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    3.821084] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    3.821221] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[    3.821348] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    3.821995] PCI host bridge to bus 0000:00
[    3.821996] pci_bus 0000:00: Unknown NUMA node; performance will be reduced
[    3.821997] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    3.821998] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    3.821999] pci_bus 0000:00: root bus resource [mem 0xfef00000-0xffdfffff window]
[    3.822000] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfedfffff window]
[    3.822001] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfed3ffff window]
[    3.822002] pci_bus 0000:00: root bus resource [mem 0xfa300000-0xfebfffff window]
[    3.822003] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfa2fffff pref window]
[    3.822004] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xefffffff window]
[    3.822005] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    3.822005] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    3.822006] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    3.822007] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    3.822008] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    3.822009] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    3.822009] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    3.822010] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    3.822012] pci_bus 0000:00: root bus resource [bus 00-7f]
[    3.822104] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[    3.822667] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[    3.823142] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[    3.823763] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[    3.828051] pci 0000:00:07.1: reg 0x20: [io  0x2050-0x205f]
[    3.830071] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    3.830072] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    3.830073] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    3.830073] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    3.830295] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[    3.830673] pci 0000:00:07.3: quirk: [io  0x0440-0x047f] claimed by PIIX4 ACPI
[    3.830970] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[    3.831060] pci 0000:00:07.7: reg 0x10: [io  0x2000-0x203f]
[    3.831137] pci 0000:00:07.7: reg 0x14: [mem 0xffbf0000-0xffbf1fff 64bit]
[    3.831814] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[    3.833465] pci 0000:00:0f.0: reg 0x10: [io  0x2040-0x204f]
[    3.835464] pci 0000:00:0f.0: reg 0x14: [mem 0xf0000000-0xf7ffffff pref]
[    3.837463] pci 0000:00:0f.0: reg 0x18: [mem 0xfb800000-0xfbffffff]
[    3.845464] pci 0000:00:0f.0: reg 0x30: [mem 0xffff8000-0xffffffff pref]
[    3.845501] pci 0000:00:0f.0: BAR 1: assigned to efifb
[    3.845955] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[    3.846713] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[    3.847474] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    3.847832] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[    3.848579] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[    3.848930] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[    3.849695] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    3.850046] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[    3.850804] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    3.851152] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[    3.851910] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[    3.852259] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[    3.853030] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[    3.853384] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[    3.854154] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[    3.854520] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[    3.855294] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[    3.855637] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[    3.856438] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    3.856784] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[    3.857551] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    3.857916] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[    3.858655] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[    3.859006] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[    3.859749] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[    3.860105] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[    3.860838] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[    3.861184] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[    3.861930] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[    3.862280] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[    3.863039] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[    3.863381] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[    3.864140] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[    3.864486] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[    3.865233] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[    3.865593] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[    3.866334] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[    3.866673] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[    3.867433] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[    3.867783] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[    3.868557] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[    3.868930] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[    3.869669] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[    3.870026] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[    3.870764] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[    3.871115] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[    3.871858] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[    3.872204] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[    3.872963] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[    3.873317] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[    3.874050] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[    3.874393] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[    3.875150] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[    3.875494] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[    3.876247] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[    3.876604] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[    3.877352] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[    3.877700] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[    3.878449] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[    3.878791] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[    3.879534] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[    3.879892] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[    3.880633] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[    3.880987] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[    3.881723] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[    3.882077] pci_bus 0000:01: extended config space not accessible
[    3.882120] pci 0000:00:01.0: PCI bridge to [bus 01]
[    3.882302] pci_bus 0000:02: extended config space not accessible
[    3.882477] acpiphp: Slot [32] registered
[    3.882486] acpiphp: Slot [33] registered
[    3.882495] acpiphp: Slot [34] registered
[    3.882503] acpiphp: Slot [35] registered
[    3.882511] acpiphp: Slot [36] registered
[    3.882519] acpiphp: Slot [37] registered
[    3.882528] acpiphp: Slot [38] registered
[    3.882536] acpiphp: Slot [39] registered
[    3.882544] acpiphp: Slot [40] registered
[    3.882553] acpiphp: Slot [41] registered
[    3.882561] acpiphp: Slot [42] registered
[    3.882569] acpiphp: Slot [43] registered
[    3.882577] acpiphp: Slot [44] registered
[    3.882585] acpiphp: Slot [45] registered
[    3.882593] acpiphp: Slot [46] registered
[    3.882601] acpiphp: Slot [47] registered
[    3.882608] acpiphp: Slot [48] registered
[    3.882617] acpiphp: Slot [49] registered
[    3.882624] acpiphp: Slot [50] registered
[    3.882633] acpiphp: Slot [51] registered
[    3.882642] acpiphp: Slot [52] registered
[    3.882650] acpiphp: Slot [53] registered
[    3.882657] acpiphp: Slot [54] registered
[    3.882665] acpiphp: Slot [55] registered
[    3.882673] acpiphp: Slot [56] registered
[    3.882680] acpiphp: Slot [57] registered
[    3.882689] acpiphp: Slot [58] registered
[    3.882697] acpiphp: Slot [59] registered
[    3.882704] acpiphp: Slot [60] registered
[    3.882712] acpiphp: Slot [61] registered
[    3.882719] acpiphp: Slot [62] registered
[    3.882727] acpiphp: Slot [63] registered
[    3.882761] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[    3.882790] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    3.882816] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    3.882852] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    3.882853] pci 0000:00:11.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    3.882854] pci 0000:00:11.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    3.882855] pci 0000:00:11.0:   bridge window [mem 0xfef00000-0xffdfffff window] (subtractive decode)
[    3.882856] pci 0000:00:11.0:   bridge window [mem 0xfed45000-0xfedfffff window] (subtractive decode)
[    3.882857] pci 0000:00:11.0:   bridge window [mem 0xfec10000-0xfed3ffff window] (subtractive decode)
[    3.882860] pci 0000:00:11.0:   bridge window [mem 0xfa300000-0xfebfffff window] (subtractive decode)
[    3.882861] pci 0000:00:11.0:   bridge window [mem 0xf0000000-0xfa2fffff pref window] (subtractive decode)
[    3.882861] pci 0000:00:11.0:   bridge window [mem 0xc0000000-0xefffffff window] (subtractive decode)
[    3.882862] pci 0000:00:11.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    3.882863] pci 0000:00:11.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    3.882864] pci 0000:00:11.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    3.882865] pci 0000:00:11.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    3.882866] pci 0000:00:11.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    3.882866] pci 0000:00:11.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    3.882867] pci 0000:00:11.0:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    3.882868] pci 0000:00:11.0:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    3.883224] pci 0000:03:00.0: [15ad:07c0] type 00 class 0x010700
[    3.884463] pci 0000:03:00.0: reg 0x10: [io  0x4000-0x4007]
[    3.886463] pci 0000:03:00.0: reg 0x14: [mem 0xfea10000-0xfea17fff 64bit]
[    3.894465] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    3.894918] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    3.895217] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    3.895262] pci 0000:00:15.0: PCI bridge to [bus 03]
[    3.895280] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    3.895297] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    3.895580] pci 0000:00:15.1: PCI bridge to [bus 04]
[    3.895616] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    3.895649] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    3.895885] pci 0000:00:15.2: PCI bridge to [bus 05]
[    3.895919] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    3.895953] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    3.896194] pci 0000:00:15.3: PCI bridge to [bus 06]
[    3.896228] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    3.896264] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    3.896497] pci 0000:00:15.4: PCI bridge to [bus 07]
[    3.896531] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    3.896566] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    3.896809] pci 0000:00:15.5: PCI bridge to [bus 08]
[    3.896843] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    3.896876] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    3.897110] pci 0000:00:15.6: PCI bridge to [bus 09]
[    3.897143] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    3.897177] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    3.897411] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    3.897444] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    3.897470] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    3.897822] pci 0000:0b:00.0: [15ad:07b0] type 00 class 0x020000
[    3.897929] pci 0000:0b:00.0: reg 0x10: [mem 0xfe213000-0xfe213fff]
[    3.897974] pci 0000:0b:00.0: reg 0x14: [mem 0xfe212000-0xfe212fff]
[    3.898019] pci 0000:0b:00.0: reg 0x18: [mem 0xfe210000-0xfe211fff]
[    3.898062] pci 0000:0b:00.0: reg 0x1c: [io  0x3000-0x300f]
[    3.898193] pci 0000:0b:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    3.898637] pci 0000:0b:00.0: supports D1 D2
[    3.898639] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.899004] pci 0000:0b:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    3.899049] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    3.899070] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    3.899088] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    3.899361] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    3.899394] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    3.899429] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    3.899668] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    3.899702] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    3.899737] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    3.899976] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    3.900011] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    3.900045] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    3.900284] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    3.900318] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    3.900352] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    3.900591] pci 0000:00:16.5: PCI bridge to [bus 10]
[    3.900624] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    3.900657] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    3.900891] pci 0000:00:16.6: PCI bridge to [bus 11]
[    3.900926] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    3.900959] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    3.901193] pci 0000:00:16.7: PCI bridge to [bus 12]
[    3.901226] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    3.901258] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    3.901489] pci 0000:00:17.0: PCI bridge to [bus 13]
[    3.901523] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    3.901557] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    3.901786] pci 0000:00:17.1: PCI bridge to [bus 14]
[    3.901819] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    3.901852] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    3.902083] pci 0000:00:17.2: PCI bridge to [bus 15]
[    3.902117] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    3.902150] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    3.902386] pci 0000:00:17.3: PCI bridge to [bus 16]
[    3.902420] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    3.902453] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    3.902694] pci 0000:00:17.4: PCI bridge to [bus 17]
[    3.902730] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    3.902764] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    3.902999] pci 0000:00:17.5: PCI bridge to [bus 18]
[    3.903032] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    3.903069] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    3.903302] pci 0000:00:17.6: PCI bridge to [bus 19]
[    3.903336] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    3.903371] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    3.903608] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    3.903642] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    3.903677] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    3.903917] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    3.903952] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    3.903985] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    3.904226] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    3.904261] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    3.904296] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    3.904532] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    3.904567] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    3.904602] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    3.904842] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    3.904878] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    3.904913] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    3.905156] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    3.905190] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    3.905224] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    3.905455] pci 0000:00:18.5: PCI bridge to [bus 20]
[    3.905487] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    3.905521] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    3.905755] pci 0000:00:18.6: PCI bridge to [bus 21]
[    3.905790] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    3.905824] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    3.906067] pci 0000:00:18.7: PCI bridge to [bus 22]
[    3.906101] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    3.906138] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    3.907694] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.907764] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.907827] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.907889] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 14 15) *0, disabled.
[    3.922128] iommu: Default domain type: Passthrough 
[    3.922128] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[    3.922128] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    3.922128] pci 0000:00:0f.0: vgaarb: bridge control possible
[    3.922128] vgaarb: loaded
[    3.922579] SCSI subsystem initialized
[    3.922598] ACPI: bus type USB registered
[    3.922617] usbcore: registered new interface driver usbfs
[    3.922625] usbcore: registered new interface driver hub
[    3.923443] usbcore: registered new device driver usb
[    3.923465] pps_core: LinuxPPS API ver. 1 registered
[    3.923465] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    3.923468] PTP clock support registered
[    3.924918] EDAC MC: Ver: 3.0.0
[    3.925931] Registered efivars operations
[    3.925931] NetLabel: Initializing
[    3.925931] NetLabel:  domain hash size = 128
[    3.925931] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    3.925931] NetLabel:  unlabeled traffic allowed by default
[    3.925931] PCI: Using ACPI for IRQ routing
[    3.929042] PCI: pci_cache_line_size set to 64 bytes
[    3.929762] e820: reserve RAM buffer [mem 0x0e0a1018-0x0fffffff]
[    3.929764] e820: reserve RAM buffer [mem 0x0e0a3018-0x0fffffff]
[    3.929766] e820: reserve RAM buffer [mem 0x0e0a6018-0x0fffffff]
[    3.929767] e820: reserve RAM buffer [mem 0x0ef24000-0x0fffffff]
[    3.929768] e820: reserve RAM buffer [mem 0x0ef3c000-0x0fffffff]
[    3.929769] e820: reserve RAM buffer [mem 0x0ef61000-0x0fffffff]
[    3.929769] e820: reserve RAM buffer [mem 0x0fee7000-0x0fffffff]
[    3.929778] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[    3.929778] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[    3.938589] clocksource: Switched to clocksource tsc-early
[    3.954537] VFS: Disk quotas dquot_6.6.0
[    3.954596] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.954780] pnp: PnP ACPI init
[    3.954935] system 00:00: [io  0x0440-0x047f] has been reserved
[    3.954937] system 00:00: [io  0x5658-0x5659] has been reserved
[    3.954938] system 00:00: [io  0x5670] has been reserved
[    3.954940] system 00:00: [io  0x0cf0-0x0cf1] has been reserved
[    3.954946] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    3.954966] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    3.954979] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    3.954993] pnp 00:03: Plug and Play ACPI device, IDs VMW0003 PNP0f13 (active)
[    3.955131] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    3.955134] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    3.956223] system 00:05: [io  0x0400-0x041f] has been reserved
[    3.956224] system 00:05: [mem 0xe0000000-0xe7ffffff] has been reserved
[    3.956228] system 00:05: [mem 0xffc00000-0xffdfffff] could not be reserved
[    3.956230] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    3.956954] pnp: PnP ACPI: found 6 devices
[    3.964329] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    3.964440] NET: Registered protocol family 2
[    3.964779] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    3.965098] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc)
[    3.965864] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    3.966611] TCP: Hash tables configured (established 524288 bind 65536)
[    3.966798] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    3.967180] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    3.968332] NET: Registered protocol family 1
[    3.968338] NET: Registered protocol family 44
[    3.968371] pci 0000:00:0f.0: can't claim BAR 6 [mem 0xffff8000-0xffffffff pref]: no compatible bridge window
[    3.968373] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    3.968374] pci 0000:0b:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    3.968382] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    3.968384] pci 0000:00:15.1: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    3.968386] pci 0000:00:15.2: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    3.968389] pci 0000:00:15.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    3.968390] pci 0000:00:15.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    3.968391] pci 0000:00:15.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    3.968393] pci 0000:00:15.6: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    3.968394] pci 0000:00:15.7: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    3.968396] pci 0000:00:16.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    3.968398] pci 0000:00:16.1: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    3.968399] pci 0000:00:16.2: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    3.968401] pci 0000:00:16.3: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    3.968402] pci 0000:00:16.4: bridge window [io  0x1000-0x0fff] to [bus 0f] add_size 1000
[    3.968404] pci 0000:00:16.5: bridge window [io  0x1000-0x0fff] to [bus 10] add_size 1000
[    3.968406] pci 0000:00:16.6: bridge window [io  0x1000-0x0fff] to [bus 11] add_size 1000
[    3.968407] pci 0000:00:16.7: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    3.968409] pci 0000:00:17.0: bridge window [io  0x1000-0x0fff] to [bus 13] add_size 1000
[    3.968410] pci 0000:00:17.1: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    3.968411] pci 0000:00:17.2: bridge window [io  0x1000-0x0fff] to [bus 15] add_size 1000
[    3.968412] pci 0000:00:17.3: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    3.968414] pci 0000:00:17.4: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    3.968415] pci 0000:00:17.5: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    3.968417] pci 0000:00:17.6: bridge window [io  0x1000-0x0fff] to [bus 19] add_size 1000
[    3.968418] pci 0000:00:17.7: bridge window [io  0x1000-0x0fff] to [bus 1a] add_size 1000
[    3.968419] pci 0000:00:18.0: bridge window [io  0x1000-0x0fff] to [bus 1b] add_size 1000
[    3.968421] pci 0000:00:18.1: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
[    3.968422] pci 0000:00:18.2: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    3.968424] pci 0000:00:18.3: bridge window [io  0x1000-0x0fff] to [bus 1e] add_size 1000
[    3.968425] pci 0000:00:18.4: bridge window [io  0x1000-0x0fff] to [bus 1f] add_size 1000
[    3.968427] pci 0000:00:18.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    3.968428] pci 0000:00:18.6: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[    3.968429] pci 0000:00:18.7: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[    3.968458] pci 0000:00:15.0: BAR 15: assigned [mem 0xfef00000-0xff0fffff 64bit pref]
[    3.968469] pci 0000:00:16.0: BAR 15: assigned [mem 0xff100000-0xff2fffff 64bit pref]
[    3.968471] pci 0000:00:0f.0: BAR 6: assigned [mem 0xff300000-0xff307fff pref]
[    3.968472] pci 0000:00:15.1: BAR 13: assigned [io  0x6000-0x6fff]
[    3.968474] pci 0000:00:15.2: BAR 13: assigned [io  0x7000-0x7fff]
[    3.968475] pci 0000:00:15.3: BAR 13: assigned [io  0x8000-0x8fff]
[    3.968476] pci 0000:00:15.4: BAR 13: assigned [io  0x9000-0x9fff]
[    3.968477] pci 0000:00:15.5: BAR 13: assigned [io  0xa000-0xafff]
[    3.968478] pci 0000:00:15.6: BAR 13: assigned [io  0xb000-0xbfff]
[    3.968479] pci 0000:00:15.7: BAR 13: assigned [io  0xc000-0xcfff]
[    3.968480] pci 0000:00:16.1: BAR 13: assigned [io  0xd000-0xdfff]
[    3.968481] pci 0000:00:16.2: BAR 13: assigned [io  0xe000-0xefff]
[    3.968483] pci 0000:00:16.3: BAR 13: assigned [io  0xf000-0xffff]
[    3.968485] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    3.968486] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    3.968488] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    3.968489] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    3.968490] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    3.968491] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    3.968493] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    3.968494] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    3.968495] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    3.968496] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    3.968498] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    3.968499] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    3.968500] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    3.968501] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    3.968503] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    3.968504] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    3.968506] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    3.968507] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    3.968508] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    3.968509] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    3.968511] pci 0000:00:17.6: BAR 13: no space for [io  size 0x1000]
[    3.968511] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
[    3.968513] pci 0000:00:17.7: BAR 13: no space for [io  size 0x1000]
[    3.968514] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
[    3.968515] pci 0000:00:18.0: BAR 13: no space for [io  size 0x1000]
[    3.968516] pci 0000:00:18.0: BAR 13: failed to assign [io  size 0x1000]
[    3.968518] pci 0000:00:18.1: BAR 13: no space for [io  size 0x1000]
[    3.968519] pci 0000:00:18.1: BAR 13: failed to assign [io  size 0x1000]
[    3.968520] pci 0000:00:18.2: BAR 13: no space for [io  size 0x1000]
[    3.968521] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
[    3.968523] pci 0000:00:18.3: BAR 13: no space for [io  size 0x1000]
[    3.968523] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
[    3.968525] pci 0000:00:18.4: BAR 13: no space for [io  size 0x1000]
[    3.968526] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
[    3.968528] pci 0000:00:18.5: BAR 13: no space for [io  size 0x1000]
[    3.968528] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
[    3.968530] pci 0000:00:18.6: BAR 13: no space for [io  size 0x1000]
[    3.968531] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
[    3.968532] pci 0000:00:18.7: BAR 13: no space for [io  size 0x1000]
[    3.968533] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
[    3.968537] pci 0000:00:18.7: BAR 13: assigned [io  0x6000-0x6fff]
[    3.968538] pci 0000:00:18.6: BAR 13: assigned [io  0x7000-0x7fff]
[    3.968540] pci 0000:00:18.5: BAR 13: assigned [io  0x8000-0x8fff]
[    3.968541] pci 0000:00:18.4: BAR 13: assigned [io  0x9000-0x9fff]
[    3.968542] pci 0000:00:18.3: BAR 13: assigned [io  0xa000-0xafff]
[    3.968543] pci 0000:00:18.2: BAR 13: assigned [io  0xb000-0xbfff]
[    3.968544] pci 0000:00:18.1: BAR 13: assigned [io  0xc000-0xcfff]
[    3.968545] pci 0000:00:18.0: BAR 13: assigned [io  0xd000-0xdfff]
[    3.968546] pci 0000:00:17.7: BAR 13: assigned [io  0xe000-0xefff]
[    3.968548] pci 0000:00:17.6: BAR 13: assigned [io  0xf000-0xffff]
[    3.968549] pci 0000:00:17.5: BAR 13: no space for [io  size 0x1000]
[    3.968550] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
[    3.968552] pci 0000:00:17.4: BAR 13: no space for [io  size 0x1000]
[    3.968553] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
[    3.968555] pci 0000:00:17.3: BAR 13: no space for [io  size 0x1000]
[    3.968556] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
[    3.968558] pci 0000:00:17.2: BAR 13: no space for [io  size 0x1000]
[    3.968559] pci 0000:00:17.2: BAR 13: failed to assign [io  size 0x1000]
[    3.968561] pci 0000:00:17.1: BAR 13: no space for [io  size 0x1000]
[    3.968562] pci 0000:00:17.1: BAR 13: failed to assign [io  size 0x1000]
[    3.968563] pci 0000:00:17.0: BAR 13: no space for [io  size 0x1000]
[    3.968564] pci 0000:00:17.0: BAR 13: failed to assign [io  size 0x1000]
[    3.968566] pci 0000:00:16.7: BAR 13: no space for [io  size 0x1000]
[    3.968567] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
[    3.968569] pci 0000:00:16.6: BAR 13: no space for [io  size 0x1000]
[    3.968570] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
[    3.968571] pci 0000:00:16.5: BAR 13: no space for [io  size 0x1000]
[    3.968572] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
[    3.968574] pci 0000:00:16.4: BAR 13: no space for [io  size 0x1000]
[    3.968574] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
[    3.968576] pci 0000:00:16.3: BAR 13: no space for [io  size 0x1000]
[    3.968577] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
[    3.968579] pci 0000:00:16.2: BAR 13: no space for [io  size 0x1000]
[    3.968579] pci 0000:00:16.2: BAR 13: failed to assign [io  size 0x1000]
[    3.968581] pci 0000:00:16.1: BAR 13: no space for [io  size 0x1000]
[    3.968582] pci 0000:00:16.1: BAR 13: failed to assign [io  size 0x1000]
[    3.968583] pci 0000:00:15.7: BAR 13: no space for [io  size 0x1000]
[    3.968584] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
[    3.968586] pci 0000:00:15.6: BAR 13: no space for [io  size 0x1000]
[    3.968587] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
[    3.968588] pci 0000:00:15.5: BAR 13: no space for [io  size 0x1000]
[    3.968589] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
[    3.968591] pci 0000:00:15.4: BAR 13: no space for [io  size 0x1000]
[    3.968591] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
[    3.968593] pci 0000:00:15.3: BAR 13: no space for [io  size 0x1000]
[    3.968594] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
[    3.968595] pci 0000:00:15.2: BAR 13: no space for [io  size 0x1000]
[    3.968596] pci 0000:00:15.2: BAR 13: failed to assign [io  size 0x1000]
[    3.968598] pci 0000:00:15.1: BAR 13: no space for [io  size 0x1000]
[    3.968599] pci 0000:00:15.1: BAR 13: failed to assign [io  size 0x1000]
[    3.968601] pci 0000:00:01.0: PCI bridge to [bus 01]
[    3.968683] pci 0000:00:11.0: PCI bridge to [bus 02]
[    3.968692] pci 0000:00:11.0:   bridge window [io  0x1000-0x1fff]
[    3.968717] pci 0000:00:11.0:   bridge window [mem 0xfc000000-0xfc9fffff]
[    3.968734] pci 0000:00:11.0:   bridge window [mem 0xf8000000-0xf84fffff 64bit pref]
[    3.968767] pci 0000:03:00.0: BAR 6: assigned [mem 0xfea00000-0xfea0ffff pref]
[    3.968768] pci 0000:00:15.0: PCI bridge to [bus 03]
[    3.968777] pci 0000:00:15.0:   bridge window [io  0x4000-0x4fff]
[    3.968802] pci 0000:00:15.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    3.968819] pci 0000:00:15.0:   bridge window [mem 0xfef00000-0xff0fffff 64bit pref]
[    3.968851] pci 0000:00:15.1: PCI bridge to [bus 04]
[    3.968876] pci 0000:00:15.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    3.968892] pci 0000:00:15.1:   bridge window [mem 0xfa200000-0xfa2fffff 64bit pref]
[    3.968925] pci 0000:00:15.2: PCI bridge to [bus 05]
[    3.968949] pci 0000:00:15.2:   bridge window [mem 0xfe800000-0xfe8fffff]
[    3.968966] pci 0000:00:15.2:   bridge window [mem 0xfa100000-0xfa1fffff 64bit pref]
[    3.968998] pci 0000:00:15.3: PCI bridge to [bus 06]
[    3.969022] pci 0000:00:15.3:   bridge window [mem 0xfe700000-0xfe7fffff]
[    3.969039] pci 0000:00:15.3:   bridge window [mem 0xfa000000-0xfa0fffff 64bit pref]
[    3.969071] pci 0000:00:15.4: PCI bridge to [bus 07]
[    3.969096] pci 0000:00:15.4:   bridge window [mem 0xfe600000-0xfe6fffff]
[    3.969112] pci 0000:00:15.4:   bridge window [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    3.969145] pci 0000:00:15.5: PCI bridge to [bus 08]
[    3.969169] pci 0000:00:15.5:   bridge window [mem 0xfe500000-0xfe5fffff]
[    3.969186] pci 0000:00:15.5:   bridge window [mem 0xf9e00000-0xf9efffff 64bit pref]
[    3.969218] pci 0000:00:15.6: PCI bridge to [bus 09]
[    3.969243] pci 0000:00:15.6:   bridge window [mem 0xfe400000-0xfe4fffff]
[    3.969260] pci 0000:00:15.6:   bridge window [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    3.969292] pci 0000:00:15.7: PCI bridge to [bus 0a]
[    3.969318] pci 0000:00:15.7:   bridge window [mem 0xfe300000-0xfe3fffff]
[    3.969335] pci 0000:00:15.7:   bridge window [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    3.969368] pci 0000:0b:00.0: BAR 6: assigned [mem 0xfe200000-0xfe20ffff pref]
[    3.969369] pci 0000:00:16.0: PCI bridge to [bus 0b]
[    3.969377] pci 0000:00:16.0:   bridge window [io  0x3000-0x3fff]
[    3.969402] pci 0000:00:16.0:   bridge window [mem 0xfe200000-0xfe2fffff]
[    3.969418] pci 0000:00:16.0:   bridge window [mem 0xff100000-0xff2fffff 64bit pref]
[    3.969451] pci 0000:00:16.1: PCI bridge to [bus 0c]
[    3.969480] pci 0000:00:16.1:   bridge window [mem 0xfe100000-0xfe1fffff]
[    3.969496] pci 0000:00:16.1:   bridge window [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    3.969528] pci 0000:00:16.2: PCI bridge to [bus 0d]
[    3.969553] pci 0000:00:16.2:   bridge window [mem 0xfe000000-0xfe0fffff]
[    3.969570] pci 0000:00:16.2:   bridge window [mem 0xf9a00000-0xf9afffff 64bit pref]
[    3.969612] pci 0000:00:16.3: PCI bridge to [bus 0e]
[    3.969632] pci 0000:00:16.3:   bridge window [mem 0xfdf00000-0xfdffffff]
[    3.969645] pci 0000:00:16.3:   bridge window [mem 0xf9900000-0xf99fffff 64bit pref]
[    3.969671] pci 0000:00:16.4: PCI bridge to [bus 0f]
[    3.969691] pci 0000:00:16.4:   bridge window [mem 0xfde00000-0xfdefffff]
[    3.969704] pci 0000:00:16.4:   bridge window [mem 0xf9800000-0xf98fffff 64bit pref]
[    3.969730] pci 0000:00:16.5: PCI bridge to [bus 10]
[    3.969749] pci 0000:00:16.5:   bridge window [mem 0xfdd00000-0xfddfffff]
[    3.969763] pci 0000:00:16.5:   bridge window [mem 0xf9700000-0xf97fffff 64bit pref]
[    3.969799] pci 0000:00:16.6: PCI bridge to [bus 11]
[    3.969818] pci 0000:00:16.6:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    3.969831] pci 0000:00:16.6:   bridge window [mem 0xf9600000-0xf96fffff 64bit pref]
[    3.969857] pci 0000:00:16.7: PCI bridge to [bus 12]
[    3.969876] pci 0000:00:16.7:   bridge window [mem 0xfdb00000-0xfdbfffff]
[    3.969889] pci 0000:00:16.7:   bridge window [mem 0xf9500000-0xf95fffff 64bit pref]
[    3.969914] pci 0000:00:17.0: PCI bridge to [bus 13]
[    3.969933] pci 0000:00:17.0:   bridge window [mem 0xfda00000-0xfdafffff]
[    3.969946] pci 0000:00:17.0:   bridge window [mem 0xf9400000-0xf94fffff 64bit pref]
[    3.969971] pci 0000:00:17.1: PCI bridge to [bus 14]
[    3.969990] pci 0000:00:17.1:   bridge window [mem 0xfd900000-0xfd9fffff]
[    3.970003] pci 0000:00:17.1:   bridge window [mem 0xf9300000-0xf93fffff 64bit pref]
[    3.970028] pci 0000:00:17.2: PCI bridge to [bus 15]
[    3.970047] pci 0000:00:17.2:   bridge window [mem 0xfd800000-0xfd8fffff]
[    3.970060] pci 0000:00:17.2:   bridge window [mem 0xf9200000-0xf92fffff 64bit pref]
[    3.970086] pci 0000:00:17.3: PCI bridge to [bus 16]
[    3.970105] pci 0000:00:17.3:   bridge window [mem 0xfd700000-0xfd7fffff]
[    3.970118] pci 0000:00:17.3:   bridge window [mem 0xf9100000-0xf91fffff 64bit pref]
[    3.970143] pci 0000:00:17.4: PCI bridge to [bus 17]
[    3.970162] pci 0000:00:17.4:   bridge window [mem 0xfd600000-0xfd6fffff]
[    3.970175] pci 0000:00:17.4:   bridge window [mem 0xf9000000-0xf90fffff 64bit pref]
[    3.970200] pci 0000:00:17.5: PCI bridge to [bus 18]
[    3.970220] pci 0000:00:17.5:   bridge window [mem 0xfd500000-0xfd5fffff]
[    3.970232] pci 0000:00:17.5:   bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    3.970258] pci 0000:00:17.6: PCI bridge to [bus 19]
[    3.970265] pci 0000:00:17.6:   bridge window [io  0xf000-0xffff]
[    3.970284] pci 0000:00:17.6:   bridge window [mem 0xfd400000-0xfd4fffff]
[    3.970297] pci 0000:00:17.6:   bridge window [mem 0xf8e00000-0xf8efffff 64bit pref]
[    3.970327] pci 0000:00:17.7: PCI bridge to [bus 1a]
[    3.970335] pci 0000:00:17.7:   bridge window [io  0xe000-0xefff]
[    3.970382] pci 0000:00:17.7:   bridge window [mem 0xfd300000-0xfd3fffff]
[    3.970403] pci 0000:00:17.7:   bridge window [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    3.970436] pci 0000:00:18.0: PCI bridge to [bus 1b]
[    3.970445] pci 0000:00:18.0:   bridge window [io  0xd000-0xdfff]
[    3.970476] pci 0000:00:18.0:   bridge window [mem 0xfd200000-0xfd2fffff]
[    3.970493] pci 0000:00:18.0:   bridge window [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    3.970526] pci 0000:00:18.1: PCI bridge to [bus 1c]
[    3.970535] pci 0000:00:18.1:   bridge window [io  0xc000-0xcfff]
[    3.970559] pci 0000:00:18.1:   bridge window [mem 0xfd100000-0xfd1fffff]
[    3.970576] pci 0000:00:18.1:   bridge window [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    3.970608] pci 0000:00:18.2: PCI bridge to [bus 1d]
[    3.970617] pci 0000:00:18.2:   bridge window [io  0xb000-0xbfff]
[    3.970642] pci 0000:00:18.2:   bridge window [mem 0xfd000000-0xfd0fffff]
[    3.970658] pci 0000:00:18.2:   bridge window [mem 0xf8a00000-0xf8afffff 64bit pref]
[    3.970691] pci 0000:00:18.3: PCI bridge to [bus 1e]
[    3.970700] pci 0000:00:18.3:   bridge window [io  0xa000-0xafff]
[    3.970724] pci 0000:00:18.3:   bridge window [mem 0xfcf00000-0xfcffffff]
[    3.970741] pci 0000:00:18.3:   bridge window [mem 0xf8900000-0xf89fffff 64bit pref]
[    3.970773] pci 0000:00:18.4: PCI bridge to [bus 1f]
[    3.970782] pci 0000:00:18.4:   bridge window [io  0x9000-0x9fff]
[    3.970806] pci 0000:00:18.4:   bridge window [mem 0xfce00000-0xfcefffff]
[    3.970823] pci 0000:00:18.4:   bridge window [mem 0xf8800000-0xf88fffff 64bit pref]
[    3.970855] pci 0000:00:18.5: PCI bridge to [bus 20]
[    3.970864] pci 0000:00:18.5:   bridge window [io  0x8000-0x8fff]
[    3.970888] pci 0000:00:18.5:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    3.970905] pci 0000:00:18.5:   bridge window [mem 0xf8700000-0xf87fffff 64bit pref]
[    3.970937] pci 0000:00:18.6: PCI bridge to [bus 21]
[    3.970946] pci 0000:00:18.6:   bridge window [io  0x7000-0x7fff]
[    3.970970] pci 0000:00:18.6:   bridge window [mem 0xfcc00000-0xfccfffff]
[    3.970987] pci 0000:00:18.6:   bridge window [mem 0xf8600000-0xf86fffff 64bit pref]
[    3.971019] pci 0000:00:18.7: PCI bridge to [bus 22]
[    3.971028] pci 0000:00:18.7:   bridge window [io  0x6000-0x6fff]
[    3.971053] pci 0000:00:18.7:   bridge window [mem 0xfcb00000-0xfcbfffff]
[    3.971069] pci 0000:00:18.7:   bridge window [mem 0xf8500000-0xf85fffff 64bit pref]
[    3.971102] pci_bus 0000:00: resource 4 [io  0x0d00-0xffff window]
[    3.971103] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    3.971104] pci_bus 0000:00: resource 6 [mem 0xfef00000-0xffdfffff window]
[    3.971105] pci_bus 0000:00: resource 7 [mem 0xfed45000-0xfedfffff window]
[    3.971106] pci_bus 0000:00: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    3.971107] pci_bus 0000:00: resource 9 [mem 0xfa300000-0xfebfffff window]
[    3.971108] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    3.971109] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xefffffff window]
[    3.971109] pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
[    3.971110] pci_bus 0000:00: resource 13 [mem 0x000c4000-0x000c7fff window]
[    3.971111] pci_bus 0000:00: resource 14 [mem 0x000c8000-0x000cbfff window]
[    3.971112] pci_bus 0000:00: resource 15 [mem 0x000d4000-0x000d7fff window]
[    3.971113] pci_bus 0000:00: resource 16 [mem 0x000d8000-0x000dbfff window]
[    3.971113] pci_bus 0000:00: resource 17 [mem 0x000e4000-0x000e7fff window]
[    3.971114] pci_bus 0000:00: resource 18 [mem 0x000e8000-0x000ebfff window]
[    3.971115] pci_bus 0000:00: resource 19 [mem 0x000ec000-0x000effff window]
[    3.971116] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    3.971117] pci_bus 0000:02: resource 1 [mem 0xfc000000-0xfc9fffff]
[    3.971118] pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf84fffff 64bit pref]
[    3.971119] pci_bus 0000:02: resource 4 [io  0x0d00-0xffff window]
[    3.971119] pci_bus 0000:02: resource 5 [io  0x0000-0x0cf7 window]
[    3.971120] pci_bus 0000:02: resource 6 [mem 0xfef00000-0xffdfffff window]
[    3.971121] pci_bus 0000:02: resource 7 [mem 0xfed45000-0xfedfffff window]
[    3.971122] pci_bus 0000:02: resource 8 [mem 0xfec10000-0xfed3ffff window]
[    3.971123] pci_bus 0000:02: resource 9 [mem 0xfa300000-0xfebfffff window]
[    3.971124] pci_bus 0000:02: resource 10 [mem 0xf0000000-0xfa2fffff pref window]
[    3.971124] pci_bus 0000:02: resource 11 [mem 0xc0000000-0xefffffff window]
[    3.971125] pci_bus 0000:02: resource 12 [mem 0x000a0000-0x000bffff window]
[    3.971126] pci_bus 0000:02: resource 13 [mem 0x000c4000-0x000c7fff window]
[    3.971127] pci_bus 0000:02: resource 14 [mem 0x000c8000-0x000cbfff window]
[    3.971127] pci_bus 0000:02: resource 15 [mem 0x000d4000-0x000d7fff window]
[    3.971128] pci_bus 0000:02: resource 16 [mem 0x000d8000-0x000dbfff window]
[    3.971129] pci_bus 0000:02: resource 17 [mem 0x000e4000-0x000e7fff window]
[    3.971130] pci_bus 0000:02: resource 18 [mem 0x000e8000-0x000ebfff window]
[    3.971131] pci_bus 0000:02: resource 19 [mem 0x000ec000-0x000effff window]
[    3.971132] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    3.971133] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    3.971134] pci_bus 0000:03: resource 2 [mem 0xfef00000-0xff0fffff 64bit pref]
[    3.971136] pci_bus 0000:04: resource 1 [mem 0xfe900000-0xfe9fffff]
[    3.971137] pci_bus 0000:04: resource 2 [mem 0xfa200000-0xfa2fffff 64bit pref]
[    3.971138] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]
[    3.971139] pci_bus 0000:05: resource 2 [mem 0xfa100000-0xfa1fffff 64bit pref]
[    3.971140] pci_bus 0000:06: resource 1 [mem 0xfe700000-0xfe7fffff]
[    3.971141] pci_bus 0000:06: resource 2 [mem 0xfa000000-0xfa0fffff 64bit pref]
[    3.971142] pci_bus 0000:07: resource 1 [mem 0xfe600000-0xfe6fffff]
[    3.971143] pci_bus 0000:07: resource 2 [mem 0xf9f00000-0xf9ffffff 64bit pref]
[    3.971144] pci_bus 0000:08: resource 1 [mem 0xfe500000-0xfe5fffff]
[    3.971145] pci_bus 0000:08: resource 2 [mem 0xf9e00000-0xf9efffff 64bit pref]
[    3.971146] pci_bus 0000:09: resource 1 [mem 0xfe400000-0xfe4fffff]
[    3.971146] pci_bus 0000:09: resource 2 [mem 0xf9d00000-0xf9dfffff 64bit pref]
[    3.971147] pci_bus 0000:0a: resource 1 [mem 0xfe300000-0xfe3fffff]
[    3.971148] pci_bus 0000:0a: resource 2 [mem 0xf9c00000-0xf9cfffff 64bit pref]
[    3.971149] pci_bus 0000:0b: resource 0 [io  0x3000-0x3fff]
[    3.971150] pci_bus 0000:0b: resource 1 [mem 0xfe200000-0xfe2fffff]
[    3.971150] pci_bus 0000:0b: resource 2 [mem 0xff100000-0xff2fffff 64bit pref]
[    3.971151] pci_bus 0000:0c: resource 1 [mem 0xfe100000-0xfe1fffff]
[    3.971152] pci_bus 0000:0c: resource 2 [mem 0xf9b00000-0xf9bfffff 64bit pref]
[    3.971153] pci_bus 0000:0d: resource 1 [mem 0xfe000000-0xfe0fffff]
[    3.971154] pci_bus 0000:0d: resource 2 [mem 0xf9a00000-0xf9afffff 64bit pref]
[    3.971155] pci_bus 0000:0e: resource 1 [mem 0xfdf00000-0xfdffffff]
[    3.971156] pci_bus 0000:0e: resource 2 [mem 0xf9900000-0xf99fffff 64bit pref]
[    3.971157] pci_bus 0000:0f: resource 1 [mem 0xfde00000-0xfdefffff]
[    3.971158] pci_bus 0000:0f: resource 2 [mem 0xf9800000-0xf98fffff 64bit pref]
[    3.971159] pci_bus 0000:10: resource 1 [mem 0xfdd00000-0xfddfffff]
[    3.971159] pci_bus 0000:10: resource 2 [mem 0xf9700000-0xf97fffff 64bit pref]
[    3.971160] pci_bus 0000:11: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    3.971161] pci_bus 0000:11: resource 2 [mem 0xf9600000-0xf96fffff 64bit pref]
[    3.971162] pci_bus 0000:12: resource 1 [mem 0xfdb00000-0xfdbfffff]
[    3.971163] pci_bus 0000:12: resource 2 [mem 0xf9500000-0xf95fffff 64bit pref]
[    3.971164] pci_bus 0000:13: resource 1 [mem 0xfda00000-0xfdafffff]
[    3.971164] pci_bus 0000:13: resource 2 [mem 0xf9400000-0xf94fffff 64bit pref]
[    3.971165] pci_bus 0000:14: resource 1 [mem 0xfd900000-0xfd9fffff]
[    3.971166] pci_bus 0000:14: resource 2 [mem 0xf9300000-0xf93fffff 64bit pref]
[    3.971167] pci_bus 0000:15: resource 1 [mem 0xfd800000-0xfd8fffff]
[    3.971167] pci_bus 0000:15: resource 2 [mem 0xf9200000-0xf92fffff 64bit pref]
[    3.971168] pci_bus 0000:16: resource 1 [mem 0xfd700000-0xfd7fffff]
[    3.971169] pci_bus 0000:16: resource 2 [mem 0xf9100000-0xf91fffff 64bit pref]
[    3.971170] pci_bus 0000:17: resource 1 [mem 0xfd600000-0xfd6fffff]
[    3.971171] pci_bus 0000:17: resource 2 [mem 0xf9000000-0xf90fffff 64bit pref]
[    3.971172] pci_bus 0000:18: resource 1 [mem 0xfd500000-0xfd5fffff]
[    3.971173] pci_bus 0000:18: resource 2 [mem 0xf8f00000-0xf8ffffff 64bit pref]
[    3.971174] pci_bus 0000:19: resource 0 [io  0xf000-0xffff]
[    3.971175] pci_bus 0000:19: resource 1 [mem 0xfd400000-0xfd4fffff]
[    3.971176] pci_bus 0000:19: resource 2 [mem 0xf8e00000-0xf8efffff 64bit pref]
[    3.971177] pci_bus 0000:1a: resource 0 [io  0xe000-0xefff]
[    3.971177] pci_bus 0000:1a: resource 1 [mem 0xfd300000-0xfd3fffff]
[    3.971178] pci_bus 0000:1a: resource 2 [mem 0xf8d00000-0xf8dfffff 64bit pref]
[    3.971179] pci_bus 0000:1b: resource 0 [io  0xd000-0xdfff]
[    3.971180] pci_bus 0000:1b: resource 1 [mem 0xfd200000-0xfd2fffff]
[    3.971180] pci_bus 0000:1b: resource 2 [mem 0xf8c00000-0xf8cfffff 64bit pref]
[    3.971181] pci_bus 0000:1c: resource 0 [io  0xc000-0xcfff]
[    3.971182] pci_bus 0000:1c: resource 1 [mem 0xfd100000-0xfd1fffff]
[    3.971183] pci_bus 0000:1c: resource 2 [mem 0xf8b00000-0xf8bfffff 64bit pref]
[    3.971184] pci_bus 0000:1d: resource 0 [io  0xb000-0xbfff]
[    3.971185] pci_bus 0000:1d: resource 1 [mem 0xfd000000-0xfd0fffff]
[    3.971185] pci_bus 0000:1d: resource 2 [mem 0xf8a00000-0xf8afffff 64bit pref]
[    3.971186] pci_bus 0000:1e: resource 0 [io  0xa000-0xafff]
[    3.971187] pci_bus 0000:1e: resource 1 [mem 0xfcf00000-0xfcffffff]
[    3.971188] pci_bus 0000:1e: resource 2 [mem 0xf8900000-0xf89fffff 64bit pref]
[    3.971188] pci_bus 0000:1f: resource 0 [io  0x9000-0x9fff]
[    3.971189] pci_bus 0000:1f: resource 1 [mem 0xfce00000-0xfcefffff]
[    3.971190] pci_bus 0000:1f: resource 2 [mem 0xf8800000-0xf88fffff 64bit pref]
[    3.971191] pci_bus 0000:20: resource 0 [io  0x8000-0x8fff]
[    3.971192] pci_bus 0000:20: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    3.971192] pci_bus 0000:20: resource 2 [mem 0xf8700000-0xf87fffff 64bit pref]
[    3.971193] pci_bus 0000:21: resource 0 [io  0x7000-0x7fff]
[    3.971194] pci_bus 0000:21: resource 1 [mem 0xfcc00000-0xfccfffff]
[    3.971195] pci_bus 0000:21: resource 2 [mem 0xf8600000-0xf86fffff 64bit pref]
[    3.971196] pci_bus 0000:22: resource 0 [io  0x6000-0x6fff]
[    3.971197] pci_bus 0000:22: resource 1 [mem 0xfcb00000-0xfcbfffff]
[    3.971197] pci_bus 0000:22: resource 2 [mem 0xf8500000-0xf85fffff 64bit pref]
[    3.971270] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    3.971359] pci 0000:00:0f.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    3.971674] PCI: CLS 32 bytes, default 64
[    3.971710] Trying to unpack rootfs image as initramfs...
[    4.962134] Freeing initrd memory: 77368K
[    4.962164] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    4.962166] software IO TLB: mapped [mem 0x00000000bc000000-0x00000000c0000000] (64MB)
[    4.997472] Initialise system trusted keyrings
[    4.997480] Key type blacklist registered
[    4.997677] workingset: timestamp_bits=36 max_order=28 bucket_order=0
[    4.998575] zbud: loaded
[    5.001215] integrity: Platform Keyring initialized
[    5.009583] NET: Registered protocol family 38
[    5.009587] Key type asymmetric registered
[    5.009589] Asymmetric key parser 'x509' registered
[    5.009599] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    5.010163] io scheduler mq-deadline registered
[    5.010164] io scheduler kyber registered
[    5.010205] io scheduler bfq registered
[    5.013123] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    5.013705] pcieport 0000:00:15.0: PME: Signaling with IRQ 24
[    5.013791] pcieport 0000:00:15.0: pciehp: Slot #160 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.014673] pcieport 0000:00:15.1: PME: Signaling with IRQ 25
[    5.014748] pcieport 0000:00:15.1: pciehp: Slot #161 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.015595] pcieport 0000:00:15.2: PME: Signaling with IRQ 26
[    5.015668] pcieport 0000:00:15.2: pciehp: Slot #162 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.016514] pcieport 0000:00:15.3: PME: Signaling with IRQ 27
[    5.016586] pcieport 0000:00:15.3: pciehp: Slot #163 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.017406] pcieport 0000:00:15.4: PME: Signaling with IRQ 28
[    5.017486] pcieport 0000:00:15.4: pciehp: Slot #164 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.018288] pcieport 0000:00:15.5: PME: Signaling with IRQ 29
[    5.018365] pcieport 0000:00:15.5: pciehp: Slot #165 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.019203] pcieport 0000:00:15.6: PME: Signaling with IRQ 30
[    5.019274] pcieport 0000:00:15.6: pciehp: Slot #166 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.020111] pcieport 0000:00:15.7: PME: Signaling with IRQ 31
[    5.020182] pcieport 0000:00:15.7: pciehp: Slot #167 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.021010] pcieport 0000:00:16.0: PME: Signaling with IRQ 32
[    5.021081] pcieport 0000:00:16.0: pciehp: Slot #192 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.021903] pcieport 0000:00:16.1: PME: Signaling with IRQ 33
[    5.021974] pcieport 0000:00:16.1: pciehp: Slot #193 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.022820] pcieport 0000:00:16.2: PME: Signaling with IRQ 34
[    5.022891] pcieport 0000:00:16.2: pciehp: Slot #194 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.023722] pcieport 0000:00:16.3: PME: Signaling with IRQ 35
[    5.023795] pcieport 0000:00:16.3: pciehp: Slot #195 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.024629] pcieport 0000:00:16.4: PME: Signaling with IRQ 36
[    5.024701] pcieport 0000:00:16.4: pciehp: Slot #196 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.025544] pcieport 0000:00:16.5: PME: Signaling with IRQ 37
[    5.025617] pcieport 0000:00:16.5: pciehp: Slot #197 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.026453] pcieport 0000:00:16.6: PME: Signaling with IRQ 38
[    5.026532] pcieport 0000:00:16.6: pciehp: Slot #198 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.027414] pcieport 0000:00:16.7: PME: Signaling with IRQ 39
[    5.027493] pcieport 0000:00:16.7: pciehp: Slot #199 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.028334] pcieport 0000:00:17.0: PME: Signaling with IRQ 40
[    5.028406] pcieport 0000:00:17.0: pciehp: Slot #224 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.029951] pcieport 0000:00:17.1: PME: Signaling with IRQ 41
[    5.030023] pcieport 0000:00:17.1: pciehp: Slot #225 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.030851] pcieport 0000:00:17.2: PME: Signaling with IRQ 42
[    5.030923] pcieport 0000:00:17.2: pciehp: Slot #226 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.031748] pcieport 0000:00:17.3: PME: Signaling with IRQ 43
[    5.031819] pcieport 0000:00:17.3: pciehp: Slot #227 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.032638] pcieport 0000:00:17.4: PME: Signaling with IRQ 44
[    5.032710] pcieport 0000:00:17.4: pciehp: Slot #228 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.033538] pcieport 0000:00:17.5: PME: Signaling with IRQ 45
[    5.033610] pcieport 0000:00:17.5: pciehp: Slot #229 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.034388] pcieport 0000:00:17.6: PME: Signaling with IRQ 46
[    5.034462] pcieport 0000:00:17.6: pciehp: Slot #230 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.035269] pcieport 0000:00:17.7: PME: Signaling with IRQ 47
[    5.035341] pcieport 0000:00:17.7: pciehp: Slot #231 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.036161] pcieport 0000:00:18.0: PME: Signaling with IRQ 48
[    5.036233] pcieport 0000:00:18.0: pciehp: Slot #256 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.037109] pcieport 0000:00:18.1: PME: Signaling with IRQ 49
[    5.037180] pcieport 0000:00:18.1: pciehp: Slot #257 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.038000] pcieport 0000:00:18.2: PME: Signaling with IRQ 50
[    5.038071] pcieport 0000:00:18.2: pciehp: Slot #258 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.038910] pcieport 0000:00:18.3: PME: Signaling with IRQ 51
[    5.038982] pcieport 0000:00:18.3: pciehp: Slot #259 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.039805] pcieport 0000:00:18.4: PME: Signaling with IRQ 52
[    5.039877] pcieport 0000:00:18.4: pciehp: Slot #260 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.040766] pcieport 0000:00:18.5: PME: Signaling with IRQ 53
[    5.040839] pcieport 0000:00:18.5: pciehp: Slot #261 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.041666] pcieport 0000:00:18.6: PME: Signaling with IRQ 54
[    5.041738] pcieport 0000:00:18.6: pciehp: Slot #262 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.042589] pcieport 0000:00:18.7: PME: Signaling with IRQ 55
[    5.042663] pcieport 0000:00:18.7: pciehp: Slot #263 AttnBtn+ PwrCtrl+ MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.043169] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    5.043201] efifb: probing for efifb
[    5.043444] efifb: framebuffer at 0xf0000000, using 3072k, total 3072k
[    5.043445] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    5.043445] efifb: scrolling: redraw
[    5.043447] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    5.043545] Console: switching to colour frame buffer device 128x48
[    5.046547] fb0: EFI VGA frame buffer device
[    5.046559] intel_idle: Please enable MWAIT in BIOS SETUP
[    5.046860] ACPI: AC Adapter [ACAD] (on-line)
[    5.046934] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    5.046983] ACPI: Power Button [PWRF]
[    5.071368] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    5.071869] Non-volatile memory driver v1.3
[    5.084948] rdac: device handler registered
[    5.085084] hp_sw: device handler registered
[    5.085085] emc: device handler registered
[    5.085645] alua: device handler registered
[    5.085747] libphy: Fixed MDIO Bus: probed
[    5.085792] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.085795] ehci-pci: EHCI PCI platform driver
[    5.085804] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.085807] ohci-pci: OHCI PCI platform driver
[    5.085816] uhci_hcd: USB Universal Host Controller Interface driver
[    5.085860] usbcore: registered new interface driver usbserial_generic
[    5.085864] usbserial: USB Serial support registered for generic
[    5.085909] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[    5.088060] serio: i8042 KBD port at 0x60,0x64 irq 1
[    5.088064] serio: i8042 AUX port at 0x60,0x64 irq 12
[    5.088209] mousedev: PS/2 mouse device common for all mice
[    5.109093] rtc_cmos 00:01: registered as rtc0
[    5.109401] rtc_cmos 00:01: setting system clock to 2020-12-11T15:27:09 UTC (1607700429)
[    5.109444] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    5.109452] intel_pstate: CPU model not supported
[    5.109506] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    5.110084] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    5.110457] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    5.110841] EFI Variables Facility v0.08 2004-May-17
[    5.116944] hid: raw HID events driver (C) Jiri Kosina
[    5.116986] usbcore: registered new interface driver usbhid
[    5.116987] usbhid: USB HID core driver
[    5.117491] drop_monitor: Initializing network drop monitor service
[    5.117586] Initializing XFRM netlink socket
[    5.117739] NET: Registered protocol family 10
[    5.118607] Segment Routing with IPv6
[    5.118622] NET: Registered protocol family 17
[    5.118756] mpls_gso: MPLS GSO support
[    5.125888] IPI shorthand broadcast: enabled
[    5.125901] AVX2 version of gcm_enc/dec engaged.
[    5.125902] AES CTR mode by8 optimization enabled
[    5.143401] sched_clock: Marking stable (5135409154, 7984336)->(5353259191, -209865701)
[    5.144140] registered taskstats version 1
[    5.144154] Loading compiled-in X.509 certificates
[    5.172279] Loaded X.509 cert 'Build time autogenerated kernel key: c46dfa28fa9f61e138f529b49ac29afd4e094697'
[    5.172357] zswap: loaded using pool lzo/zbud
[    5.177540] Key type encrypted registered
[    5.178222] integrity: Loading X.509 certificate: UEFI:db
[    5.178361] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    5.178363] integrity: Loading X.509 certificate: UEFI:db
[    5.178763] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    5.178764] integrity: Loading X.509 certificate: UEFI:db
[    5.178780] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    5.178780] integrity: Loading X.509 certificate: UEFI:db
[    5.178795] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    5.179780] integrity: Loading X.509 certificate: UEFI:MokListRT
[    5.180065] integrity: Loaded X.509 cert 'Red Hat Secure Boot (CA key 1): 4016841644ce3a810408050766e8f8a29c65f85c'
[    5.180068] ima: No TPM chip found, activating TPM-bypass!
[    5.180072] ima: Allocated hash algorithm: sha1
[    5.180079] ima: No architecture policies found
[    5.180107] evm: Initialising EVM extended attributes:
[    5.180109] evm: security.selinux
[    5.180110] evm: security.ima
[    5.180110] evm: security.capability
[    5.180111] evm: HMAC attrs: 0x1
[    5.187427] Freeing unused decrypted memory: 2036K
[    5.188703] Freeing unused kernel image (initmem) memory: 2356K
[    5.197488] Write protecting the kernel read-only data: 20480k
[    5.199147] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    5.200419] Freeing unused kernel image (rodata/data gap) memory: 1732K
[    5.200549] Run /init as init process
[    5.200550]   with arguments:
[    5.200551]     /init
[    5.200552]     rhgb
[    5.200552]   with environment:
[    5.200553]     HOME=/
[    5.200554]     TERM=linux
[    5.200554]     BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.10.0-rc3
[    5.200555]     crashkernel=auto
[    5.226558] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    5.226584] systemd[1]: Detected virtualization vmware.
[    5.226588] systemd[1]: Detected architecture x86-64.
[    5.226590] systemd[1]: Running in initial RAM disk.
[    5.237975] systemd[1]: Set hostname to <localhost.localdomain>.
[    5.288989] random: systemd: uninitialized urandom read (16 bytes read)
[    5.289080] systemd[1]: Listening on Journal Socket.
[    5.289118] random: systemd: uninitialized urandom read (16 bytes read)
[    5.289124] systemd[1]: Reached target Swap.
[    5.289130] random: systemd: uninitialized urandom read (16 bytes read)
[    5.289135] systemd[1]: Reached target Timers.
[    5.291227] systemd[1]: Starting Setup Virtual Console...
[    5.292453] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon.
[    5.803768] VMware PVSCSI driver - version 1.0.7.0-k
[    5.804621] vmw_pvscsi: using 64bit dma
[    5.804788] vmw_pvscsi: max_id: 65
[    5.804789] vmw_pvscsi: setting ring_pages to 32
[    5.806013] vmw_pvscsi: enabling reqCallThreshold
[    5.808600] vmw_pvscsi: driver-based request coalescing enabled
[    5.808601] vmw_pvscsi: using MSI-X
[    5.808925] scsi host0: VMware PVSCSI storage adapter rev 2, req/cmp/msg rings: 32/32/1 pages, cmd_per_lun=254
[    5.809094] VMware vmxnet3 virtual NIC driver - version 1.5.0.0-k-NAPI
[    5.809141] vmxnet3 0000:0b:00.0: # of Tx queues : 8, # of Rx queues : 8
[    5.809182] vmxnet3 0000:0b:00.0: enabling device (0000 -> 0003)
[    5.813799] vmw_pvscsi 0000:03:00.0: VMware PVSCSI rev 2 host #0
[    5.814313] scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     2.0  PQ: 0 ANSI: 6
[    5.815579] vmxnet3 0000:0b:00.0 eth0: NIC Link is Up 10000 Mbps
[    5.823974] libata version 3.00 loaded.
[    5.828587] ata_piix 0000:00:07.1: version 2.13
[    5.829114] scsi host1: ata_piix
[    5.829275] scsi host2: ata_piix
[    5.829304] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x2050 irq 14
[    5.829305] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x2058 irq 15
[    6.022506] tsc: Refined TSC clocksource calibration: 2095.082 MHz
[    6.022557] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e330abbade, max_idle_ns: 440795251159 ns
[    6.023369] clocksource: Switched to clocksource tsc
[    6.099590] [drm] DMA map mode: Caching DMA mappings.
[    6.099806] [drm] Capabilities:
[    6.099807] [drm]   Rect copy.
[    6.099808] [drm]   Cursor.
[    6.099808] [drm]   Cursor bypass.
[    6.099809] [drm]   Cursor bypass 2.
[    6.099809] [drm]   8bit emulation.
[    6.099809] [drm]   Alpha cursor.
[    6.099810] [drm]   Extended Fifo.
[    6.099810] [drm]   Multimon.
[    6.099811] [drm]   Pitchlock.
[    6.099811] [drm]   Irq mask.
[    6.099811] [drm]   Display Topology.
[    6.099812] [drm]   GMR.
[    6.099812] [drm]   Traces.
[    6.099813] [drm]   GMR2.
[    6.099813] [drm]   Screen Object 2.
[    6.099814] [drm]   Command Buffers.
[    6.099814] [drm]   Command Buffers 2.
[    6.099815] [drm]   Guest Backed Resources.
[    6.099815] [drm]   DX Features.
[    6.099816] [drm]   HP Command Queue.
[    6.099816] [drm] Capabilities2:
[    6.099816] [drm]   Grow oTable.
[    6.099817] [drm]   IntraSurface copy.
[    6.099819] [drm] Max GMR ids is 64
[    6.099819] [drm] Max number of GMR pages is 65536
[    6.099820] [drm] Max dedicated hypervisor surface memory is 0 kiB
[    6.099820] [drm] Maximum display memory size is 8192 kiB
[    6.099821] [drm] VRAM at 0xf0000000 size is 8192 kiB
[    6.099822] [drm] MMIO at 0xfb800000 size is 256 kiB
[    6.099858] vmwgfx 0000:00:0f.0: BAR 1: can't reserve [mem 0xf0000000-0xf7ffffff pref]
[    6.099859] [drm] It appears like vesafb is loaded. Ignore above error if any.
[    6.100720] [TTM] Zone  kernel: Available graphics memory: 528423274 KiB
[    6.100721] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    6.100722] [TTM] Initializing pool allocator
[    6.100726] [TTM] Initializing DMA pool allocator
[    6.102626] [drm] Screen Target Display device initialized
[    6.102673] [drm] width 1024
[    6.102679] [drm] height 768
[    6.102685] [drm] bpp 32
[    6.107119] [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
[    6.108206] [drm] Using command buffers with DMA pool.
[    6.108213] [drm] Atomic: yes.
[    6.114884] checking generic (f0000000 300000) vs hw (f0000000 800000)
[    6.114885] fb0: switching to svgadrmfb from EFI VGA
[    6.120896] Console: switching to colour dummy device 80x25
[    6.125512] fbcon: svgadrmfb (fb0) is primary device
[    6.126654] Console: switching to colour frame buffer device 128x48
[    6.130333] vmxnet3 0000:0b:00.0 ens192: renamed from eth0
[    6.131118] [drm] Initialized vmwgfx 2.18.0 20200114 for 0000:00:0f.0 on minor 0
[    6.146406] sd 0:0:0:0: [sda] 41943040 512-byte logical blocks: (21.5 GB/20.0 GiB)
[    6.146443] sd 0:0:0:0: [sda] Write Protect is off
[    6.146445] sd 0:0:0:0: [sda] Mode Sense: 61 00 00 00
[    6.146501] sd 0:0:0:0: [sda] Cache data unavailable
[    6.146502] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    6.165525]  sda: sda1 sda2
[    6.167321] sd 0:0:0:0: [sda] Attached SCSI disk
[    6.308951] random: fast init done
[    6.470935] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    6.551355] random: crng init done
[    6.551360] random: 7 urandom warning(s) missed due to ratelimiting
[    6.857585] systemd-journald[781]: Received SIGTERM from PID 1 (systemd).
[    6.888984] printk: systemd: 22 output lines suppressed due to ratelimiting
[    6.951257] SELinux:  Runtime disable is deprecated, use selinux=0 on the kernel cmdline.
[    6.951290] SELinux:  Disabled at runtime.
[    6.983612] audit: type=1404 audit(1607700431.374:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1
[    7.005933] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[    7.005953] systemd[1]: Detected virtualization vmware.
[    7.005961] systemd[1]: Detected architecture x86-64.
[    7.007510] systemd[1]: Set hostname to <localhost.localdomain>.
[    7.063042] systemd[1]: Configuration file /usr/lib/systemd/system/rc-local.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    7.116692] systemd[1]: Stopped Switch Root.
[    7.117250] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[    7.117365] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    7.117387] systemd[1]: Stopped Journal Service.
[    7.118928] systemd[1]: Starting Journal Service...
[    7.136012] EXT4-fs (sda2): re-mounted. Opts: (null)
[    7.354396] systemd-journald[4313]: Received request to flush runtime journal from PID 1
[    7.560305] piix4_smbus 0000:00:07.3: SMBus base address uninitialized - upgrade BIOS or use force_addr=0xaddr
[    7.579125] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    7.579153] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    7.579516] vmw_vmci 0000:00:07.7: enabling device (0000 -> 0003)
[    7.582752] vmw_vmci 0000:00:07.7: Found VMCI PCI device at 0x12000, irq 16
[    7.582871] vmw_vmci 0000:00:07.7: Using capabilities 0x1c
[    7.583664] Guest personality initialized and is active
[    7.583729] VMCI host device registered (name=vmci, major=10, minor=61)
[    7.583730] Initialized host personality
[    7.634930] NET: Registered protocol family 40
[    7.694855] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    7.879225] vmxnet3 0000:0b:00.0 ens192: intr type 3, mode 0, 9 vectors allocated
[    7.880262] vmxnet3 0000:0b:00.0 ens192: NIC Link is Up 10000 Mbps

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

* Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
  2020-12-11 16:16                               ` Rahul Gopakumar
@ 2020-12-13 15:15                                 ` bhe
  0 siblings, 0 replies; 21+ messages in thread
From: bhe @ 2020-12-13 15:15 UTC (permalink / raw)
  To: Rahul Gopakumar
  Cc: linux-mm, linux-kernel, akpm, natechancellor, ndesaulniers,
	clang-built-linux, rostedt, Rajender M, Yiu Cho Lau,
	Peter Jonasson, Venkatesh Rajaram, Mike Rapoport

On 12/11/20 at 04:16pm, Rahul Gopakumar wrote:
> Hi Baoquan,
> 
> We re-evaluated your last patch and it seems to be fixing the
> initial performance bug reported. During our previous testing,
> we did not apply the patch rightly hence it was reporting
> some issues. 
> 
> Here is the dmesg log confirming no delay in the draft patch.
> 
> Vanilla (5.10 rc3)
> ------------------
> 
> [    0.024011] On node 2 totalpages: 89391104
> [    0.024012]   Normal zone: 1445888 pages used for memmap
> [    0.024012]   Normal zone: 89391104 pages, LIFO batch:63
> [    2.054646] ACPI: PM-Timer IO Port: 0x448 --------------> 2 secs delay
> 
> Patch
> ------
> 
> [    0.024166] On node 2 totalpages: 89391104
> [    0.024167]   Normal zone: 1445888 pages used for memmap
> [    0.024167]   Normal zone: 89391104 pages, LIFO batch:63
> [    0.026694] ACPI: PM-Timer IO Port: 0x448 --------------> No delay
> 
> Attached dmesg logs. Let me know if anything is needed from our end.

I posted formal patchset to fix this issue. The patch 1 is doing the
fix, and almost the same as the draft v2 patch I attached in this thread.
Please feel free to help test and add your Tested-by: tag in the patch
thread if possible.

> 
> 
> 
> From: Rahul Gopakumar <gopakumarr@vmware.com>
> Sent: 24 November 2020 8:33 PM
> To: bhe@redhat.com <bhe@redhat.com>
> Cc: linux-mm@kvack.org <linux-mm@kvack.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; akpm@linux-foundation.org <akpm@linux-foundation.org>; natechancellor@gmail.com <natechancellor@gmail.com>; ndesaulniers@google.com <ndesaulniers@google.com>; clang-built-linux@googlegroups.com <clang-built-linux@googlegroups.com>; rostedt@goodmis.org <rostedt@goodmis.org>; Rajender M <manir@vmware.com>; Yiu Cho Lau <lauyiuch@vmware.com>; Peter Jonasson <pjonasson@vmware.com>; Venkatesh Rajaram <rajaramv@vmware.com>
> Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel 
>  
> Hi Baoquan,
> 
> We applied the new patch to 5.10 rc3 and tested it. We are still
> observing the same page corruption issue which we saw with the
> old patch. This is causing 3 secs delay in boot time.
> 
> Attached dmesg log from the new patch and also from vanilla
> 5.10 rc3 kernel.
> 
> There are multiple lines like below in the dmesg log of the
> new patch.
> 
> "BUG: Bad page state in process swapper  pfn:ab08001"
> 
> ________________________________________
> From: bhe@redhat.com <bhe@redhat.com>
> Sent: 22 November 2020 6:38 AM
> To: Rahul Gopakumar
> Cc: linux-mm@kvack.org; linux-kernel@vger.kernel.org; akpm@linux-foundation.org; natechancellor@gmail.com; ndesaulniers@google.com; clang-built-linux@googlegroups.com; rostedt@goodmis.org; Rajender M; Yiu Cho Lau; Peter Jonasson; Venkatesh Rajaram
> Subject: Re: Performance regressions in "boot_time" tests in Linux 5.8 Kernel
> 
> On 11/20/20 at 03:11am, Rahul Gopakumar wrote:
> > Hi Baoquan,
> >
> > To which commit should we apply the draft patch. We tried applying
> > the patch to the commit 3e4fb4346c781068610d03c12b16c0cfb0fd24a3
> > (the one we used for applying the previous patch) but it fails.
> 
> I tested on 5.10-rc3+. You can append below change to the old patch in
> your testing kernel.
> 
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index fa6076e1a840..5e5b74e88d69 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -448,6 +448,8 @@ defer_init(int nid, unsigned long pfn, unsigned long end_pfn)
>         if (end_pfn < pgdat_end_pfn(NODE_DATA(nid)))
>                 return false;
> 
> +       if (NODE_DATA(nid)->first_deferred_pfn != ULONG_MAX)
> +               return true;
>         /*
>          * We start only with one section of pages, more pages are added as
>          * needed until the rest of deferred pages are initialized.




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

end of thread, other threads:[~2020-12-13 15:17 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-09 13:15 Performance regressions in "boot_time" tests in Linux 5.8 Kernel Rahul Gopakumar
2020-10-10  6:11 ` bhe
2020-10-12 17:21   ` Rahul Gopakumar
2020-10-13  5:08     ` bhe
2020-10-13 13:17     ` bhe
2020-10-20 13:45       ` Rahul Gopakumar
2020-10-20 15:18         ` bhe
2020-10-20 15:26           ` Rahul Gopakumar
2020-10-22  4:04             ` bhe
2020-10-22 17:21               ` Rahul Gopakumar
2020-11-02 14:15                 ` Rahul Gopakumar
2020-11-02 14:30                   ` bhe
2020-11-03 12:34                     ` Rahul Gopakumar
2020-11-03 14:03                       ` bhe
2020-11-12 14:51                       ` bhe
2020-11-20  3:11                         ` Rahul Gopakumar
2020-11-22  1:08                           ` bhe
2020-11-24 15:03                             ` Rahul Gopakumar
2020-11-30 16:55                               ` Mike Rapoport
2020-12-11 16:16                               ` Rahul Gopakumar
2020-12-13 15:15                                 ` bhe

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).