linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: The issue with page allocation 5.3 rc1-rc2 (seems drm culprit here)
       [not found] <20190806014830.7424-1-hdanton@sina.com>
@ 2019-08-08  3:48 ` Mikhail Gavrilov
  2019-08-08  5:31   ` Alex Deucher
  0 siblings, 1 reply; 9+ messages in thread
From: Mikhail Gavrilov @ 2019-08-08  3:48 UTC (permalink / raw)
  To: Hillf Danton
  Cc: Dave Airlie, Deucher, Alexander, Koenig, Christian,
	Harry Wentland, amd-gfx list, Linux Memory Management List,
	Linux List Kernel Mailing, dri-devel

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

On Tue, 6 Aug 2019 at 06:48, Hillf Danton <hdanton@sina.com> wrote:
>
> My bad, respin with one header file added.
>
> Hillf
> -----8<---
>
> --- a/drivers/gpu/drm/amd/display/dc/core/dc.c
> +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
> @@ -23,6 +23,7 @@
>   */
>
>  #include <linux/slab.h>
> +#include <linux/mm.h>
>
>  #include "dm_services.h"
>
> @@ -1174,8 +1175,12 @@ struct dc_state *dc_create_state(struct
>         struct dc_state *context = kzalloc(sizeof(struct dc_state),
>                                            GFP_KERNEL);
>
> -       if (!context)
> -               return NULL;
> +       if (!context) {
> +               context = kvzalloc(sizeof(struct dc_state),
> +                                          GFP_KERNEL);
> +               if (!context)
> +                       return NULL;
> +       }
>         /* Each context must have their own instance of VBA and in order to
>          * initialize and obtain IP and SOC the base DML instance from DC is
>          * initially copied into every context
> @@ -1195,8 +1200,13 @@ struct dc_state *dc_copy_state(struct dc
>         struct dc_state *new_ctx = kmemdup(src_ctx,
>                         sizeof(struct dc_state), GFP_KERNEL);
>
> -       if (!new_ctx)
> -               return NULL;
> +       if (!new_ctx) {
> +               new_ctx = kvmalloc(sizeof(*new_ctx), GFP_KERNEL);
> +               if (new_ctx)
> +                       *new_ctx = *src_ctx;
> +               else
> +                       return NULL;
> +       }
>
>         for (i = 0; i < MAX_PIPES; i++) {
>                         struct pipe_ctx *cur_pipe = &new_ctx->res_ctx.pipe_ctx[i];
> @@ -1230,7 +1240,7 @@ static void dc_state_free(struct kref *k
>  {
>         struct dc_state *context = container_of(kref, struct dc_state, refcount);
>         dc_resource_state_destruct(context);
> -       kfree(context);
> +       kvfree(context);
>  }
>
>  void dc_release_state(struct dc_state *context)
> --
>

Unfortunately error "gnome-shell: page allocation failure: order:4,
mode:0x40cc0(GFP_KERNEL|__GFP_COMP),
nodemask=(null),cpuset=/,mems_allowed=0" still happens even with
applying this patch.

Thanks.


--
Best Regards,
Mike Gavrilov.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: dmesg-rc3-patched-2.txt --]
[-- Type: text/plain; charset="US-ASCII"; name="dmesg-rc3-patched-2.txt", Size: 158510 bytes --]

[    0.000000] Linux version 5.3.0-0.rc3.git0.2.fc31.x86_64 (mockbuild@a2c589b37bc4489fb49f3e0c9631b721) (gcc version 9.1.1 20190605 (Red Hat 9.1.1-2) (GCC)) #1 SMP Tue Aug 6 08:14:55 +05 2019
[    0.000000] Command line: BOOT_IMAGE=(hd2,gpt2)/boot/vmlinuz-5.3.0-0.rc3.git0.2.fc31.x86_64 root=UUID=cb6dee31-3eff-4a36-aa1b-890117330f8c ro resume=UUID=9c126bde-fad1-467c-8a1b-472db1d9a6a8 rhgb log_buf_len=16M sysrq_always_enabled=1 nmi_watchdog=1 pci=noaer memblock=debug amdgpu.lockup_timeout=-1
[    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: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20b000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b020000-0x00000000d8ae7fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000d8ae8000-0x00000000db3e6fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000db3e7000-0x00000000db40ffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000db410000-0x00000000db8c5fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000db8c6000-0x00000000dc3c6fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dc3c7000-0x00000000deffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd100000-0x00000000fd1fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000081f37ffff] usable
[    0.000000] memblock_reserve: [0x00000000cf716018-0x00000000cf716977] efi_memblock_x86_reserve_range+0x173/0x194
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] memblock_reserve: [0x00000000cf732018-0x00000000cf743057] setup_arch+0x3c5/0xcb2
[    0.000000] memblock_reserve: [0x00000000cf718018-0x00000000cf731057] setup_arch+0x3c5/0xcb2
[    0.000000] e820: update [mem 0xcf732018-0xcf743057] usable ==> usable
[    0.000000] e820: update [mem 0xcf732018-0xcf743057] usable ==> usable
[    0.000000] e820: update [mem 0xcf718018-0xcf731057] usable ==> usable
[    0.000000] e820: update [mem 0xcf718018-0xcf731057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000a20b000-0x000000000affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000b020000-0x00000000cf718017] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf718018-0x00000000cf731057] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf731058-0x00000000cf732017] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf732018-0x00000000cf743057] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf743058-0x00000000d8ae7fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000d8ae8000-0x00000000db3e6fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000db3e7000-0x00000000db40ffff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000db410000-0x00000000db8c5fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000db8c6000-0x00000000dc3c6fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000dc3c7000-0x00000000deffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000df000000-0x00000000dfffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd100000-0x00000000fd1fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000081f37ffff] usable
[    0.000000] efi: EFI v2.60 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0xdb3ef000  ACPI=0xdb3ef000  SMBIOS=0xdc289000  SMBIOS 3.0=0xdc288000  ESRT=0xd6636c18  MEMATTR=0xd635f018 
[    0.000000] memblock_reserve: [0x00000000d635f018-0x00000000d635f687] efi_memattr_init+0x75/0x8f
[    0.000000] secureboot: Secure boot disabled
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] last_pfn = 0x81f380 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF write-through
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFE0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000820000000 aka 33280M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[    0.000000] last_pfn = 0xdf000 max_arch_pfn = 0x400000000
[    0.000000] memblock_reserve: [0x0000000119000000-0x000000011900cfff] setup_arch+0x5e9/0xcb2
[    0.000000] memblock_add: [0x0000000000001000-0x000000000009ffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x0000000000100000-0x0000000009cfffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x000000000a000000-0x000000000a1fffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x000000000a20b000-0x000000000affffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x000000000b020000-0x00000000cf718017] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf718018-0x00000000cf731057] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf731058-0x00000000cf732017] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf732018-0x00000000cf743057] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf743058-0x00000000d8ae7fff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000dc3c7000-0x00000000deffffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x0000000100000000-0x000000081f37ffff] e820__memblock_setup+0x44/0x63
[    0.000000] MEMBLOCK configuration:
[    0.000000]  memory size = 0x00000007fa715000 reserved size = 0x0000000004293050
[    0.000000]  memory.cnt  = 0x7
[    0.000000]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes flags: 0x0
[    0.000000]  memory[0x1]	[0x0000000000100000-0x0000000009cfffff], 0x0000000009c00000 bytes flags: 0x0
[    0.000000]  memory[0x2]	[0x000000000a000000-0x000000000a1fffff], 0x0000000000200000 bytes flags: 0x0
[    0.000000]  memory[0x3]	[0x000000000a20b000-0x000000000affffff], 0x0000000000df5000 bytes flags: 0x0
[    0.000000]  memory[0x4]	[0x000000000b020000-0x00000000d8ae7fff], 0x00000000cdac8000 bytes flags: 0x0
[    0.000000]  memory[0x5]	[0x00000000dc3c7000-0x00000000deffffff], 0x0000000002c39000 bytes flags: 0x0
[    0.000000]  memory[0x6]	[0x0000000100000000-0x000000081f37ffff], 0x000000071f380000 bytes flags: 0x0
[    0.000000]  reserved.cnt  = 0x7
[    0.000000]  reserved[0x0]	[0x0000000000000000-0x0000000000000fff], 0x0000000000001000 bytes flags: 0x0
[    0.000000]  reserved[0x1]	[0x000000005b36e000-0x000000005d5c7fff], 0x000000000225a000 bytes flags: 0x0
[    0.000000]  reserved[0x2]	[0x00000000cf716018-0x00000000cf716977], 0x0000000000000960 bytes flags: 0x0
[    0.000000]  reserved[0x3]	[0x00000000cf718018-0x00000000cf731057], 0x0000000000019040 bytes flags: 0x0
[    0.000000]  reserved[0x4]	[0x00000000cf732018-0x00000000cf743057], 0x0000000000011040 bytes flags: 0x0
[    0.000000]  reserved[0x5]	[0x00000000d635f018-0x00000000d635f687], 0x0000000000000670 bytes flags: 0x0
[    0.000000]  reserved[0x6]	[0x0000000117000000-0x000000011900cfff], 0x000000000200d000 bytes flags: 0x0
[    0.000000] memblock_reserve: [0x000000000009d400-0x00000000000fffff] setup_arch+0x60d/0xcb2
[    0.000000] esrt: Reserving ESRT space from 0x00000000d6636c18 to 0x00000000d6636c50.
[    0.000000] memblock_reserve: [0x00000000d6636c18-0x00000000d6636c4f] efi_mem_reserve+0x22/0x30
[    0.000000] memblock_reserve: [0x000000000009ca40-0x000000000009d3ff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_reserve: [0x000000000003f000-0x000000000003ffff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x0000000001000000-0x000000000101ffff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x00000000d6637000-0x00000000d7c09fff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x00000000d7f03000-0x00000000d8ae7fff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x00000000dc3c7000-0x00000000deffffff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x0000000000096000-0x000000000009bfff] reserve_real_mode+0x7b/0x8d
[    0.000000] memblock_reserve: [0x0000000000000000-0x000000000000ffff] setup_arch+0x658/0xcb2
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x119001000, 0x119001fff] PGTABLE
[    0.000000] BRK [0x119002000, 0x119002fff] PGTABLE
[    0.000000] BRK [0x119003000, 0x119003fff] PGTABLE
[    0.000000] BRK [0x119004000, 0x119004fff] PGTABLE
[    0.000000] BRK [0x119005000, 0x119005fff] PGTABLE
[    0.000000] BRK [0x119006000, 0x119006fff] PGTABLE
[    0.000000] BRK [0x119007000, 0x119007fff] PGTABLE
[    0.000000] BRK [0x119008000, 0x119008fff] PGTABLE
[    0.000000] BRK [0x119009000, 0x119009fff] PGTABLE
[    0.000000] BRK [0x11900a000, 0x11900afff] PGTABLE
[    0.000000] BRK [0x11900b000, 0x11900bfff] PGTABLE
[    0.000000] BRK [0x11900c000, 0x11900cfff] PGTABLE
[    0.000000] memblock_alloc_try_nid: 16777216 bytes align=0x4 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 setup_log_buf+0xa4/0x161
[    0.000000] memblock_reserve: [0x000000081e380000-0x000000081f37ffff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] printk: log_buf_len: 16777216 bytes
[    0.000000] printk: early log buf free: 248568(94%)
[    0.000000] RAMDISK: [mem 0x5b36e000-0x5d5c7fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000DB3EF000 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000DB3EF098 0000AC (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000DB3FDB78 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000DB3EF1E0 00E998 (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.000000] ACPI: FACS 0x00000000DB8ADD80 000040
[    0.000000] ACPI: APIC 0x00000000DB3FDC90 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000DB3FDDF0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x00000000DB3FDE38 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DB3FDED8 0000FC (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
[    0.000000] ACPI: SSDT 0x00000000DB3FDFD8 008C98 (v02 AMD    AMD ALIB 00000002 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x00000000DB406C70 00322C (v01 AMD    AMD AOD  00000001 INTL 20120913)
[    0.000000] ACPI: MCFG 0x00000000DB409EA0 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.000000] ACPI: SSDT 0x00000000DB40F098 0000BF (v01 AMD    AMD PT   00001000 INTL 20120913)
[    0.000000] ACPI: HPET 0x00000000DB409F38 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.000000] ACPI: SSDT 0x00000000DB409F70 000024 (v01 AMDFCH FCHZP    00001000 INTL 20120913)
[    0.000000] ACPI: UEFI 0x00000000DB409F98 000042 (v01 ALASKA A M I    00000002      01000013)
[    0.000000] ACPI: IVRS 0x00000000DB409FE0 0000D0 (v02 AMD    AMD IVRS 00000001 AMD  00000000)
[    0.000000] ACPI: SSDT 0x00000000DB40A0B0 002314 (v01 AMD    AMD CPU  00000001 AMD  00000001)
[    0.000000] ACPI: CRAT 0x00000000DB40C3C8 000F50 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
[    0.000000] ACPI: CDIT 0x00000000DB40D318 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x00000000DB40D348 001D4A (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000081f37ffff]
[    0.000000] memblock_reserve: [0x000000081e355000-0x000000081e37ffff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] NODE_DATA(0) allocated [mem 0x81e355000-0x81e37ffff]
[    0.000000] MEMBLOCK configuration:
[    0.000000]  memory size = 0x00000007fa715000 reserved size = 0x000000000a148648
[    0.000000]  memory.cnt  = 0x7
[    0.000000]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x1]	[0x0000000000100000-0x0000000009cfffff], 0x0000000009c00000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x2]	[0x000000000a000000-0x000000000a1fffff], 0x0000000000200000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x3]	[0x000000000a20b000-0x000000000affffff], 0x0000000000df5000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x4]	[0x000000000b020000-0x00000000d8ae7fff], 0x00000000cdac8000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x5]	[0x00000000dc3c7000-0x00000000deffffff], 0x0000000002c39000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x6]	[0x0000000100000000-0x000000081f37ffff], 0x000000071f380000 bytes on node 0 flags: 0x0
[    0.000000]  reserved.cnt  = 0x11
[    0.000000]  reserved[0x0]	[0x0000000000000000-0x000000000000ffff], 0x0000000000010000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x1]	[0x000000000003f000-0x000000000003ffff], 0x0000000000001000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x2]	[0x0000000000096000-0x000000000009bfff], 0x0000000000006000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x3]	[0x000000000009ca40-0x00000000000fffff], 0x00000000000635c0 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x4]	[0x0000000001000000-0x000000000101ffff], 0x0000000000020000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x5]	[0x000000005b36e000-0x000000005d5c7fff], 0x000000000225a000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x6]	[0x00000000cf716018-0x00000000cf716977], 0x0000000000000960 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x7]	[0x00000000cf718018-0x00000000cf731057], 0x0000000000019040 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x8]	[0x00000000cf732018-0x00000000cf743057], 0x0000000000011040 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x9]	[0x00000000d635f018-0x00000000d635f687], 0x0000000000000670 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xa]	[0x00000000d6636c18-0x00000000d6636c4f], 0x0000000000000038 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xb]	[0x00000000d6637000-0x00000000d7c09fff], 0x00000000015d3000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xc]	[0x00000000d7f03000-0x00000000d8ae7fff], 0x0000000000be5000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xd]	[0x00000000dc3c7000-0x00000000deffffff], 0x0000000002c39000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xe]	[0x0000000117000000-0x000000011900cfff], 0x000000000200d000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xf]	[0x000000081e355000-0x000000081e37ffff], 0x000000000002b000 bytes flags: 0x0
[    0.000000]  reserved[0x10]	[0x000000081e380000-0x000000081f37ffff], 0x0000000001000000 bytes on node 0 flags: 0x0
[    0.000000] memblock_alloc_try_nid: 16384 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 memory_present+0x3e/0x107
[    0.000000] memblock_reserve: [0x000000081e351000-0x000000081e354fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x44/0x67
[    0.000000] memblock_reserve: [0x000000081e350000-0x000000081e350fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x44/0x67
[    0.000000] memblock_reserve: [0x000000081e34f000-0x000000081e34ffff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 10240 bytes align=0x40 nid=0 from=0x0000000818000000 max_addr=0x0000000820000000 sparse_init_nid+0x8a/0x42e
[    0.000000] memblock_reserve: [0x000000081e34c800-0x000000081e34efff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid_raw: 536870912 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x13a/0x42e
[    0.000000] memblock_reserve: [0x00000007fe34c000-0x000000081e34bfff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.0+0xc/0x24
[    0.000000] memblock_reserve: [0x00000007fe34b000-0x00000007fe34bfff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.0+0xc/0x24
[    0.000000] memblock_reserve: [0x00000007fe34a000-0x00000007fe34afff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid_raw: 2097152 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_populate+0x12a/0x2d1
[    0.000000] memblock_reserve: [0x00000007fe000000-0x00000007fe1fffff] memblock_alloc_range_nid+0xad/0x114
[    0.000000]    memblock_free: [0x000000081e200000-0x000000081e34bfff] sparse_init_nid+0x38e/0x42e
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000081f37ffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000009cfffff]
[    0.000000]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.000000]   node   0: [mem 0x000000000a20b000-0x000000000affffff]
[    0.000000]   node   0: [mem 0x000000000b020000-0x00000000d8ae7fff]
[    0.000000]   node   0: [mem 0x00000000dc3c7000-0x00000000deffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000081f37ffff]
[    0.000000] Zeroed struct page in unavailable ranges: 19563 pages
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000081f37ffff]
[    0.000000] On node 0 totalpages: 8365845
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 26 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13968 pages used for memmap
[    0.000000]   DMA32 zone: 893942 pages, LIFO batch:63
[    0.000000]   Normal zone: 116686 pages used for memmap
[    0.000000]   Normal zone: 7467904 pages, LIFO batch:63
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.000000] memblock_alloc_try_nid: 73 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 acpi_parse_hpet+0xca/0x132
[    0.000000] memblock_reserve: [0x000000081e34c780-0x000000081e34c7c8] memblock_alloc_range_nid+0xad/0x114
[    0.000000] smpboot: Allowing 32 CPUs, 16 hotplug CPUs
[    0.000000] memblock_alloc_try_nid: 150 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 io_apic_init_mappings+0x38/0x1c2
[    0.000000] memblock_reserve: [0x000000081e34c6c0-0x000000081e34c755] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 2176 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 e820__reserve_resources+0x2c/0x163
[    0.000000] memblock_reserve: [0x000000081e34be40-0x000000081e34c6bf] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bdc0-0x000000081e34be27] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bd40-0x000000081e34bda7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bcc0-0x000000081e34bd27] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bc40-0x000000081e34bca7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bbc0-0x000000081e34bc27] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bb40-0x000000081e34bba7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bac0-0x000000081e34bb27] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34ba40-0x000000081e34baa7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b9c0-0x000000081e34ba27] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b940-0x000000081e34b9a7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b8c0-0x000000081e34b927] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b840-0x000000081e34b8a7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b7c0-0x000000081e34b827] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b740-0x000000081e34b7a7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b6c0-0x000000081e34b727] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b640-0x000000081e34b6a7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b5c0-0x000000081e34b627] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b540-0x000000081e34b5a7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b4c0-0x000000081e34b527] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b440-0x000000081e34b4a7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b3c0-0x000000081e34b427] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b340-0x000000081e34b3a7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b2c0-0x000000081e34b327] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b240-0x000000081e34b2a7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b1c0-0x000000081e34b227] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b140-0x000000081e34b1a7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b0c0-0x000000081e34b127] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b040-0x000000081e34b0a7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34afc0-0x000000081e34b027] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34af80-0x000000081e34af9f] memblock_alloc_range_nid+0xad/0x114
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34af40-0x000000081e34af5f] memblock_alloc_range_nid+0xad/0x114
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34af00-0x000000081e34af1f] memblock_alloc_range_nid+0xad/0x114
[    0.000000] PM: Registered nosave memory: [mem 0x09d00000-0x09ffffff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34aec0-0x000000081e34aedf] memblock_alloc_range_nid+0xad/0x114
[    0.000000] PM: Registered nosave memory: [mem 0x0a200000-0x0a20afff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ae80-0x000000081e34ae9f] memblock_alloc_range_nid+0xad/0x114
[    0.000000] PM: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ae40-0x000000081e34ae5f] memblock_alloc_range_nid+0xad/0x114
[    0.000000] PM: Registered nosave memory: [mem 0xcf718000-0xcf718fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ae00-0x000000081e34ae1f] memblock_alloc_range_nid+0xad/0x114
[    0.000000] PM: Registered nosave memory: [mem 0xcf731000-0xcf731fff]
[    0.000000] PM: Registered nosave memory: [mem 0xcf732000-0xcf732fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34adc0-0x000000081e34addf] memblock_alloc_range_nid+0xad/0x114
[    0.000000] PM: Registered nosave memory: [mem 0xcf743000-0xcf743fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ad80-0x000000081e34ad9f] memblock_alloc_range_nid+0xad/0x114
[    0.000000] PM: Registered nosave memory: [mem 0xd8ae8000-0xdb3e6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb3e7000-0xdb40ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb410000-0xdb8c5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb8c6000-0xdc3c6fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ad40-0x000000081e34ad5f] memblock_alloc_range_nid+0xad/0x114
[    0.000000] PM: Registered nosave memory: [mem 0xdf000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfd0fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfd100000-0xfd1fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfd200000-0xfe9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd6000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] [mem 0xe0000000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] memblock_alloc_try_nid: 274 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xc1/0x56c
[    0.000000] memblock_reserve: [0x000000081e34ac00-0x000000081e34ad11] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 274 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xd5/0x56c
[    0.000000] memblock_reserve: [0x000000081e34aac0-0x000000081e34abd1] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 274 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xe9/0x56c
[    0.000000] memblock_reserve: [0x000000081e34a980-0x000000081e34aa91] memblock_alloc_range_nid+0xad/0x114
[    0.000000] setup_percpu: NR_CPUS:1024 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_alloc_info+0x3b/0x6c
[    0.000000] memblock_reserve: [0x000000081e349000-0x000000081e349fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_embed_first_chunk+0x71/0x2da
[    0.000000] memblock_reserve: [0x000000081e348000-0x000000081e348fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 8388608 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xfa/0x14f
[    0.000000] memblock_reserve: [0x00000007fd800000-0x00000007fdffffff] memblock_alloc_range_nid+0xad/0x114
[    0.000000]    memblock_free: [0x00000007fd835000-0x00000007fd83ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fd875000-0x00000007fd87ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fd8b5000-0x00000007fd8bffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fd8f5000-0x00000007fd8fffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fd935000-0x00000007fd93ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fd975000-0x00000007fd97ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fd9b5000-0x00000007fd9bffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fd9f5000-0x00000007fd9fffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fda35000-0x00000007fda3ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fda75000-0x00000007fda7ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdab5000-0x00000007fdabffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdaf5000-0x00000007fdafffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdb35000-0x00000007fdb3ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdb75000-0x00000007fdb7ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdbb5000-0x00000007fdbbffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdbf5000-0x00000007fdbfffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdc35000-0x00000007fdc3ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdc75000-0x00000007fdc7ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdcb5000-0x00000007fdcbffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdcf5000-0x00000007fdcfffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdd35000-0x00000007fdd3ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdd75000-0x00000007fdd7ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fddb5000-0x00000007fddbffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fddf5000-0x00000007fddfffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fde35000-0x00000007fde3ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fde75000-0x00000007fde7ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdeb5000-0x00000007fdebffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdef5000-0x00000007fdefffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdf35000-0x00000007fdf3ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdf75000-0x00000007fdf7ffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdfb5000-0x00000007fdfbffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000]    memblock_free: [0x00000007fdff5000-0x00000007fdffffff] pcpu_embed_first_chunk+0x1f4/0x2da
[    0.000000] percpu: Embedded 53 pages/cpu s180224 r8192 d28672 u262144
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x2f2/0x757
[    0.000000] memblock_reserve: [0x000000081e34a940-0x000000081e34a947] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x325/0x757
[    0.000000] memblock_reserve: [0x000000081e34a900-0x000000081e34a907] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 128 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x345/0x757
[    0.000000] memblock_reserve: [0x000000081e34a880-0x000000081e34a8ff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 256 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x37f/0x757
[    0.000000] memblock_reserve: [0x000000081e34a780-0x000000081e34a87f] memblock_alloc_range_nid+0xad/0x114
[    0.000000] pcpu-alloc: s180224 r8192 d28672 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.000000] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 
[    0.000000] memblock_alloc_try_nid: 288 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x641/0x757
[    0.000000] memblock_reserve: [0x000000081e34a640-0x000000081e34a75f] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 121 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x78/0x249
[    0.000000] memblock_reserve: [0x000000081e34a5c0-0x000000081e34a638] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 256 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xcf/0x249
[    0.000000] memblock_reserve: [0x000000081e34a4c0-0x000000081e34a5bf] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 264 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x10e/0x249
[    0.000000] memblock_reserve: [0x000000081e34a380-0x000000081e34a487] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 64 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x12e/0x249
[    0.000000] memblock_reserve: [0x000000081e34a340-0x000000081e34a37f] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 121 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x78/0x249
[    0.000000] memblock_reserve: [0x000000081e34a2c0-0x000000081e34a338] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 896 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xcf/0x249
[    0.000000] memblock_reserve: [0x000000081e347c80-0x000000081e347fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 904 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x10e/0x249
[    0.000000] memblock_reserve: [0x000000081e3478c0-0x000000081e347c47] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 224 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x12e/0x249
[    0.000000] memblock_reserve: [0x000000081e34a1c0-0x000000081e34a29f] memblock_alloc_range_nid+0xad/0x114
[    0.000000]    memblock_free: [0x000000081e349000-0x000000081e349fff] pcpu_embed_first_chunk+0x295/0x2da
[    0.000000]    memblock_free: [0x000000081e348000-0x000000081e348fff] pcpu_embed_first_chunk+0x2c8/0x2da
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a180-0x000000081e34a187] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a140-0x000000081e34a147] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a100-0x000000081e34a107] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a0c0-0x000000081e34a0c7] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a080-0x000000081e34a087] memblock_alloc_range_nid+0xad/0x114
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8235101
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=(hd2,gpt2)/boot/vmlinuz-5.3.0-0.rc3.git0.2.fc31.x86_64 root=UUID=cb6dee31-3eff-4a36-aa1b-890117330f8c ro resume=UUID=9c126bde-fad1-467c-8a1b-472db1d9a6a8 rhgb log_buf_len=16M sysrq_always_enabled=1 nmi_watchdog=1 pci=noaer memblock=debug amdgpu.lockup_timeout=-1
[    0.000000] sysrq: sysrq always enabled.
[    0.000000] memblock_alloc_try_nid: 33554432 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_large_system_hash+0x172/0x28d
[    0.000000] memblock_reserve: [0x00000007fb800000-0x00000007fd7fffff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] memblock_alloc_try_nid: 16777216 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_large_system_hash+0x172/0x28d
[    0.000000] memblock_reserve: [0x00000007fa800000-0x00000007fb7fffff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e349000-0x000000081e349fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e348000-0x000000081e348fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e346000-0x000000081e346fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e345000-0x000000081e345fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e344000-0x000000081e344fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e343000-0x000000081e343fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] memblock_alloc_try_nid: 67108864 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x00000000ffffffff swiotlb_init+0x4d/0xac
[    0.000000] memblock_reserve: [0x00000000d235f000-0x00000000d635efff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 131072 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0x6f/0x13d
[    0.000000] memblock_reserve: [0x000000081e323000-0x000000081e342fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] memblock_alloc_try_nid: 262144 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0xa6/0x13d
[    0.000000] memblock_reserve: [0x000000081e2e3000-0x000000081e322fff] memblock_alloc_range_nid+0xad/0x114
[    0.000000] Memory: 32651652K/33463380K available (12291K kernel code, 1541K rwdata, 4288K rodata, 2272K init, 4476K bss, 811728K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 39982 entries in 157 pages
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=1024 to nr_cpu_ids=32.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 65792, nr_irqs: 1224, preallocated irqs: 16
[    0.000000] random: crng done (trusting CPU's manufacturer)
[    0.000000] Console: colour dummy device 80x25
[    0.000000] printk: console [tty0] enabled
[    0.000000] ACPI: Core revision 20190703
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.001000] Switched APIC routing to physical flat.
[    0.001000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.007000] tsc: PIT calibration matches HPET. 1 loops
[    0.007000] tsc: Detected 3692.531 MHz processor
[    0.000002] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6a738d6c7cc, max_idle_ns: 881590773499 ns
[    0.000006] Calibrating delay loop (skipped), value calculated using timer frequency.. 7385.06 BogoMIPS (lpj=3692531)
[    0.000008] pid_max: default: 32768 minimum: 301
[    0.000102] __memblock_free_late: [0x00000000dc3c7000-0x00000000deffffff] efi_free_boot_services+0x12c/0x200
[    0.000761] __memblock_free_late: [0x00000000d7f03000-0x00000000d8ae7fff] efi_free_boot_services+0x12c/0x200
[    0.000959] __memblock_free_late: [0x00000000d6637000-0x00000000d7c09fff] efi_free_boot_services+0x12c/0x200
[    0.001308] __memblock_free_late: [0x0000000001000000-0x000000000101ffff] efi_free_boot_services+0x12c/0x200
[    0.001315] __memblock_free_late: [0x000000000003f000-0x000000000003ffff] efi_free_boot_services+0x12c/0x200
[    0.002037] LSM: Security Framework initializing
[    0.002047] Yama: becoming mindful.
[    0.002053] SELinux:  Initializing.
[    0.002069] *** VALIDATE SELinux ***
[    0.002120] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.002158] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.002279] *** VALIDATE proc ***
[    0.002321] *** VALIDATE cgroup1 ***
[    0.002323] *** VALIDATE cgroup2 ***
[    0.002368] LVT offset 1 assigned for vector 0xf9
[    0.003009] LVT offset 2 assigned for vector 0xf4
[    0.003023] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.003025] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.003028] Spectre V2 : Mitigation: Full AMD retpoline
[    0.003029] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.003031] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.003033] Spectre V2 : User space: Vulnerable
[    0.003034] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.003188] Freeing SMP alternatives memory: 36K
[    0.005005] smpboot: CPU0: AMD Ryzen 7 2700X Eight-Core Processor (family: 0x17, model: 0x8, stepping: 0x2)
[    0.005005] Performance Events: Fam17h core perfctr, AMD PMU driver.
[    0.005005] ... version:                0
[    0.005005] ... bit width:              48
[    0.005005] ... generic registers:      6
[    0.005005] ... value mask:             0000ffffffffffff
[    0.005005] ... max period:             00007fffffffffff
[    0.005005] ... fixed-purpose events:   0
[    0.005005] ... event mask:             000000000000003f
[    0.005005] rcu: Hierarchical SRCU implementation.
[    0.005005] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.005005] smp: Bringing up secondary CPUs ...
[    0.005005] x86: Booting SMP configuration:
[    0.005005] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
[    0.022031] smp: Brought up 1 node, 16 CPUs
[    0.022031] smpboot: Max logical packages: 2
[    0.022031] smpboot: Total of 16 processors activated (118160.99 BogoMIPS)
[    0.024520] devtmpfs: initialized
[    0.024520] x86/mm: Memory block size: 128MB
[    0.026543] PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
[    0.026543] PM: Registering ACPI NVS region [mem 0xdb410000-0xdb8c5fff] (4939776 bytes)
[    0.026543] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.026543] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.026543] pinctrl core: initialized pinctrl subsystem
[    0.026543] PM: RTC time: 22:02:08, date: 2019-08-07
[    0.027080] NET: Registered protocol family 16
[    0.027156] audit: initializing netlink subsys (disabled)
[    0.027161] audit: type=2000 audit(1565215328.034:1): state=initialized audit_enabled=0 res=1
[    0.027161] cpuidle: using governor menu
[    0.027161] ACPI: bus type PCI registered
[    0.027161] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.027161] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.027161] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.027161] PCI: Using configuration type 1 for base access
[    0.029258] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.029258] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.113138] cryptd: max_cpu_qlen set to 1000
[    0.115302] alg: No test for lzo-rle (lzo-rle-generic)
[    0.115302] alg: No test for lzo-rle (lzo-rle-scomp)
[    0.115302] alg: No test for 842 (842-generic)
[    0.115302] alg: No test for 842 (842-scomp)
[    0.117124] fbcon: Taking over console
[    0.118009] ACPI: Added _OSI(Module Device)
[    0.118009] ACPI: Added _OSI(Processor Device)
[    0.118009] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.118009] ACPI: Added _OSI(Processor Aggregator Device)
[    0.118009] ACPI: Added _OSI(Linux-Dell-Video)
[    0.118009] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.118009] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.124870] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    0.125749] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.127367] ACPI: EC: EC started
[    0.127369] ACPI: EC: interrupt blocked
[    0.127411] ACPI: \_SB_.PCI0.SBRG.EC0_: Used as first EC
[    0.127413] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x2, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.127415] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions
[    0.127416] ACPI: Interpreter enabled
[    0.127427] ACPI: (supports S0 S3 S4 S5)
[    0.127429] ACPI: Using IOAPIC for interrupt routing
[    0.127679] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.127859] ACPI: Enabled 3 GPEs in block 00 to 1F
[    0.132540] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.132545] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.132645] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME LTR]
[    0.132740] acpi PNP0A08:00: _OSC: OS now controls [PCIeCapability]
[    0.132747] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.132932] PCI host bridge to bus 0000:00
[    0.132935] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.132936] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.132938] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.132940] pci_bus 0000:00: root bus resource [io  0x0d00-0xefff window]
[    0.132941] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.132943] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.132945] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
[    0.132947] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[    0.132949] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.132955] pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
[    0.133017] pci 0000:00:00.2: [1022:1451] type 00 class 0x080600
[    0.133092] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.133142] pci 0000:00:01.1: [1022:1453] type 01 class 0x060400
[    0.133255] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.133336] pci 0000:00:01.3: [1022:1453] type 01 class 0x060400
[    0.133367] pci 0000:00:01.3: enabling Extended Tags
[    0.134062] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[    0.134148] pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
[    0.134211] pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
[    0.134258] pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
[    0.135086] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.135175] pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
[    0.135244] pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
[    0.135292] pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
[    0.136008] pci 0000:00:07.1: enabling Extended Tags
[    0.136086] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    0.136173] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.136222] pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
[    0.137008] pci 0000:00:08.1: enabling Extended Tags
[    0.137088] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.137210] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.137411] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.137616] pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
[    0.137654] pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
[    0.137690] pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
[    0.137730] pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
[    0.137766] pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
[    0.137802] pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
[    0.138018] pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
[    0.138054] pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
[    0.138230] pci 0000:01:00.0: [8086:2700] type 00 class 0x010802
[    0.138248] pci 0000:01:00.0: reg 0x10: [mem 0xfcf10000-0xfcf13fff 64bit]
[    0.138271] pci 0000:01:00.0: reg 0x30: [mem 0xfcf00000-0xfcf0ffff pref]
[    0.138365] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.138369] pci 0000:00:01.1:   bridge window [mem 0xfcf00000-0xfcffffff]
[    0.139046] pci 0000:02:00.0: [1022:43d0] type 00 class 0x0c0330
[    0.139067] pci 0000:02:00.0: reg 0x10: [mem 0xfcba0000-0xfcba7fff 64bit]
[    0.139100] pci 0000:02:00.0: enabling Extended Tags
[    0.139147] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.139211] pci 0000:02:00.1: [1022:43c8] type 00 class 0x010601
[    0.139254] pci 0000:02:00.1: reg 0x24: [mem 0xfcb80000-0xfcb9ffff]
[    0.139261] pci 0000:02:00.1: reg 0x30: [mem 0xfcb00000-0xfcb7ffff pref]
[    0.139267] pci 0000:02:00.1: enabling Extended Tags
[    0.139301] pci 0000:02:00.1: PME# supported from D3hot D3cold
[    0.139347] pci 0000:02:00.2: [1022:43c6] type 01 class 0x060400
[    0.139387] pci 0000:02:00.2: enabling Extended Tags
[    0.139425] pci 0000:02:00.2: PME# supported from D3hot D3cold
[    0.139501] pci 0000:00:01.3: PCI bridge to [bus 02-08]
[    0.139504] pci 0000:00:01.3:   bridge window [io  0xc000-0xdfff]
[    0.139506] pci 0000:00:01.3:   bridge window [mem 0xfc900000-0xfcbfffff]
[    0.139575] pci 0000:03:00.0: [1022:43c7] type 01 class 0x060400
[    0.139621] pci 0000:03:00.0: enabling Extended Tags
[    0.139668] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.139730] pci 0000:03:01.0: [1022:43c7] type 01 class 0x060400
[    0.139775] pci 0000:03:01.0: enabling Extended Tags
[    0.139823] pci 0000:03:01.0: PME# supported from D3hot D3cold
[    0.140049] pci 0000:03:02.0: [1022:43c7] type 01 class 0x060400
[    0.140094] pci 0000:03:02.0: enabling Extended Tags
[    0.140142] pci 0000:03:02.0: PME# supported from D3hot D3cold
[    0.140203] pci 0000:03:03.0: [1022:43c7] type 01 class 0x060400
[    0.140248] pci 0000:03:03.0: enabling Extended Tags
[    0.140296] pci 0000:03:03.0: PME# supported from D3hot D3cold
[    0.140357] pci 0000:03:04.0: [1022:43c7] type 01 class 0x060400
[    0.140402] pci 0000:03:04.0: enabling Extended Tags
[    0.140450] pci 0000:03:04.0: PME# supported from D3hot D3cold
[    0.140526] pci 0000:02:00.2: PCI bridge to [bus 03-08]
[    0.140531] pci 0000:02:00.2:   bridge window [io  0xc000-0xdfff]
[    0.140534] pci 0000:02:00.2:   bridge window [mem 0xfc900000-0xfcafffff]
[    0.140601] pci 0000:04:00.0: [8086:1539] type 00 class 0x020000
[    0.140645] pci 0000:04:00.0: reg 0x10: [mem 0xfca00000-0xfca1ffff]
[    0.140678] pci 0000:04:00.0: reg 0x18: [io  0xd000-0xd01f]
[    0.140695] pci 0000:04:00.0: reg 0x1c: [mem 0xfca20000-0xfca23fff]
[    0.140866] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    0.141002] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.141008] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.141011] pci 0000:03:00.0:   bridge window [mem 0xfca00000-0xfcafffff]
[    0.141066] pci 0000:05:00.0: [10ec:b822] type 00 class 0x028000
[    0.141108] pci 0000:05:00.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.141141] pci 0000:05:00.0: reg 0x18: [mem 0xfc900000-0xfc90ffff 64bit]
[    0.141298] pci 0000:05:00.0: supports D1 D2
[    0.141300] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.141463] pci 0000:03:01.0: PCI bridge to [bus 05]
[    0.141468] pci 0000:03:01.0:   bridge window [io  0xc000-0xcfff]
[    0.141471] pci 0000:03:01.0:   bridge window [mem 0xfc900000-0xfc9fffff]
[    0.141504] pci 0000:03:02.0: PCI bridge to [bus 06]
[    0.141545] pci 0000:03:03.0: PCI bridge to [bus 07]
[    0.141585] pci 0000:03:04.0: PCI bridge to [bus 08]
[    0.142046] pci 0000:09:00.0: [1002:14a0] type 01 class 0x060400
[    0.142068] pci 0000:09:00.0: reg 0x10: [mem 0xfcd00000-0xfcd03fff]
[    0.142146] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
[    0.142241] pci 0000:00:03.1: PCI bridge to [bus 09-0b]
[    0.142245] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.142247] pci 0000:00:03.1:   bridge window [mem 0xfcc00000-0xfcdfffff]
[    0.142250] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.142284] pci 0000:0a:00.0: [1002:14a1] type 01 class 0x060400
[    0.142365] pci 0000:0a:00.0: PME# supported from D0 D3hot D3cold
[    0.142428] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.142433] pci 0000:09:00.0:   bridge window [io  0xe000-0xefff]
[    0.142436] pci 0000:09:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.142440] pci 0000:09:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.142472] pci 0000:0b:00.0: [1002:66af] type 00 class 0x030000
[    0.142496] pci 0000:0b:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.142506] pci 0000:0b:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref]
[    0.142513] pci 0000:0b:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    0.142520] pci 0000:0b:00.0: reg 0x24: [mem 0xfcc00000-0xfcc7ffff]
[    0.142527] pci 0000:0b:00.0: reg 0x30: [mem 0xfcc80000-0xfcc9ffff pref]
[    0.142539] pci 0000:0b:00.0: BAR 0: assigned to efifb
[    0.142590] pci 0000:0b:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.142653] pci 0000:0b:00.1: [1002:ab20] type 00 class 0x040300
[    0.142670] pci 0000:0b:00.1: reg 0x10: [mem 0xfcca0000-0xfcca3fff]
[    0.142745] pci 0000:0b:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.142819] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.142824] pci 0000:0a:00.0:   bridge window [io  0xe000-0xefff]
[    0.142827] pci 0000:0a:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.142831] pci 0000:0a:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.143241] pci 0000:0c:00.0: [1022:145a] type 00 class 0x130000
[    0.143265] pci 0000:0c:00.0: enabling Extended Tags
[    0.143323] pci 0000:0c:00.2: [1022:1456] type 00 class 0x108000
[    0.143337] pci 0000:0c:00.2: reg 0x18: [mem 0xfc700000-0xfc7fffff]
[    0.143344] pci 0000:0c:00.2: reg 0x24: [mem 0xfc800000-0xfc801fff]
[    0.143350] pci 0000:0c:00.2: enabling Extended Tags
[    0.143411] pci 0000:0c:00.3: [1022:145f] type 00 class 0x0c0330
[    0.143423] pci 0000:0c:00.3: reg 0x10: [mem 0xfc600000-0xfc6fffff 64bit]
[    0.143441] pci 0000:0c:00.3: enabling Extended Tags
[    0.143467] pci 0000:0c:00.3: PME# supported from D0 D3hot D3cold
[    0.143515] pci 0000:00:07.1: PCI bridge to [bus 0c]
[    0.143519] pci 0000:00:07.1:   bridge window [mem 0xfc600000-0xfc8fffff]
[    0.144052] pci 0000:0d:00.0: [1022:1455] type 00 class 0x130000
[    0.144077] pci 0000:0d:00.0: enabling Extended Tags
[    0.144140] pci 0000:0d:00.2: [1022:7901] type 00 class 0x010601
[    0.144166] pci 0000:0d:00.2: reg 0x24: [mem 0xfce08000-0xfce08fff]
[    0.144173] pci 0000:0d:00.2: enabling Extended Tags
[    0.144200] pci 0000:0d:00.2: PME# supported from D3hot D3cold
[    0.144240] pci 0000:0d:00.3: [1022:1457] type 00 class 0x040300
[    0.144250] pci 0000:0d:00.3: reg 0x10: [mem 0xfce00000-0xfce07fff]
[    0.144267] pci 0000:0d:00.3: enabling Extended Tags
[    0.144293] pci 0000:0d:00.3: PME# supported from D0 D3hot D3cold
[    0.144342] pci 0000:00:08.1: PCI bridge to [bus 0d]
[    0.144346] pci 0000:00:08.1:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.144520] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
[    0.144561] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
[    0.144594] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
[    0.144636] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
[    0.144674] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
[    0.144704] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
[    0.144734] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
[    0.144764] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
[    0.145245] ACPI: EC: interrupt unblocked
[    0.145263] ACPI: EC: event unblocked
[    0.145271] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x2, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.145273] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions and events
[    0.145329] pci 0000:0b:00.0: vgaarb: setting as boot VGA device
[    0.145329] pci 0000:0b:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.145329] pci 0000:0b:00.0: vgaarb: bridge control possible
[    0.145329] vgaarb: loaded
[    0.145329] SCSI subsystem initialized
[    0.145329] libata version 3.00 loaded.
[    0.145329] ACPI: bus type USB registered
[    0.145329] usbcore: registered new interface driver usbfs
[    0.145329] usbcore: registered new interface driver hub
[    0.145329] usbcore: registered new device driver usb
[    0.145329] pps_core: LinuxPPS API ver. 1 registered
[    0.145329] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.145329] PTP clock support registered
[    0.145329] EDAC MC: Ver: 3.0.0
[    0.146017] Registered efivars operations
[    0.168219] PCI: Using ACPI for IRQ routing
[    0.172077] PCI: pci_cache_line_size set to 64 bytes
[    0.172140] e820: reserve RAM buffer [mem 0x09d00000-0x0bffffff]
[    0.172141] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.172141] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    0.172141] e820: reserve RAM buffer [mem 0xcf718018-0xcfffffff]
[    0.172142] e820: reserve RAM buffer [mem 0xcf732018-0xcfffffff]
[    0.172142] e820: reserve RAM buffer [mem 0xd8ae8000-0xdbffffff]
[    0.172143] e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
[    0.172143] e820: reserve RAM buffer [mem 0x81f380000-0x81fffffff]
[    0.172207] NetLabel: Initializing
[    0.172208] NetLabel:  domain hash size = 128
[    0.172209] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.172218] NetLabel:  unlabeled traffic allowed by default
[    0.172221] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.172221] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.174137] clocksource: Switched to clocksource tsc-early
[    0.182441] VFS: Disk quotas dquot_6.6.0
[    0.182459] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.182481] *** VALIDATE hugetlbfs ***
[    0.182507] pnp: PnP ACPI init
[    0.182593] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.182598] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.182650] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.182758] system 00:02: [io  0x02a0-0x02af] has been reserved
[    0.182761] system 00:02: [io  0x0230-0x023f] has been reserved
[    0.182762] system 00:02: [io  0x0290-0x029f] has been reserved
[    0.182765] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.182931] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.182933] system 00:03: [io  0x040b] has been reserved
[    0.182934] system 00:03: [io  0x04d6] has been reserved
[    0.182936] system 00:03: [io  0x0c00-0x0c01] has been reserved
[    0.182938] system 00:03: [io  0x0c14] has been reserved
[    0.182939] system 00:03: [io  0x0c50-0x0c51] has been reserved
[    0.182941] system 00:03: [io  0x0c52] has been reserved
[    0.182942] system 00:03: [io  0x0c6c] has been reserved
[    0.182944] system 00:03: [io  0x0c6f] has been reserved
[    0.182946] system 00:03: [io  0x0cd0-0x0cd1] has been reserved
[    0.182948] system 00:03: [io  0x0cd2-0x0cd3] has been reserved
[    0.182949] system 00:03: [io  0x0cd4-0x0cd5] has been reserved
[    0.182951] system 00:03: [io  0x0cd6-0x0cd7] has been reserved
[    0.182953] system 00:03: [io  0x0cd8-0x0cdf] has been reserved
[    0.182954] system 00:03: [io  0x0800-0x089f] has been reserved
[    0.182956] system 00:03: [io  0x0b00-0x0b0f] has been reserved
[    0.182957] system 00:03: [io  0x0b20-0x0b3f] has been reserved
[    0.182959] system 00:03: [io  0x0900-0x090f] has been reserved
[    0.182960] system 00:03: [io  0x0910-0x091f] has been reserved
[    0.182962] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.182964] system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.182966] system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.182968] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.182969] system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.182971] system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.182973] system 00:03: [mem 0xff000000-0xffffffff] has been reserved
[    0.182976] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.183248] pnp: PnP ACPI: found 4 devices
[    0.184236] thermal_sys: Registered thermal governor 'fair_share'
[    0.184237] thermal_sys: Registered thermal governor 'bang_bang'
[    0.184239] thermal_sys: Registered thermal governor 'step_wise'
[    0.184240] thermal_sys: Registered thermal governor 'user_space'
[    0.188789] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.188837] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.188841] pci 0000:00:01.1:   bridge window [mem 0xfcf00000-0xfcffffff]
[    0.188846] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.188848] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.188852] pci 0000:03:00.0:   bridge window [mem 0xfca00000-0xfcafffff]
[    0.188859] pci 0000:03:01.0: PCI bridge to [bus 05]
[    0.188861] pci 0000:03:01.0:   bridge window [io  0xc000-0xcfff]
[    0.188865] pci 0000:03:01.0:   bridge window [mem 0xfc900000-0xfc9fffff]
[    0.188872] pci 0000:03:02.0: PCI bridge to [bus 06]
[    0.188881] pci 0000:03:03.0: PCI bridge to [bus 07]
[    0.188891] pci 0000:03:04.0: PCI bridge to [bus 08]
[    0.188900] pci 0000:02:00.2: PCI bridge to [bus 03-08]
[    0.188902] pci 0000:02:00.2:   bridge window [io  0xc000-0xdfff]
[    0.188906] pci 0000:02:00.2:   bridge window [mem 0xfc900000-0xfcafffff]
[    0.188912] pci 0000:00:01.3: PCI bridge to [bus 02-08]
[    0.188914] pci 0000:00:01.3:   bridge window [io  0xc000-0xdfff]
[    0.188916] pci 0000:00:01.3:   bridge window [mem 0xfc900000-0xfcbfffff]
[    0.188921] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.188923] pci 0000:0a:00.0:   bridge window [io  0xe000-0xefff]
[    0.188926] pci 0000:0a:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.188929] pci 0000:0a:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.188934] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.188936] pci 0000:09:00.0:   bridge window [io  0xe000-0xefff]
[    0.188940] pci 0000:09:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.188943] pci 0000:09:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.188948] pci 0000:00:03.1: PCI bridge to [bus 09-0b]
[    0.188950] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.188952] pci 0000:00:03.1:   bridge window [mem 0xfcc00000-0xfcdfffff]
[    0.188954] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.188958] pci 0000:00:07.1: PCI bridge to [bus 0c]
[    0.188961] pci 0000:00:07.1:   bridge window [mem 0xfc600000-0xfc8fffff]
[    0.188965] pci 0000:00:08.1: PCI bridge to [bus 0d]
[    0.188968] pci 0000:00:08.1:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.188972] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.188974] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.188976] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.188977] pci_bus 0000:00: resource 7 [io  0x0d00-0xefff window]
[    0.188979] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.188980] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.188982] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfec2ffff window]
[    0.188984] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
[    0.188985] pci_bus 0000:01: resource 1 [mem 0xfcf00000-0xfcffffff]
[    0.188987] pci_bus 0000:02: resource 0 [io  0xc000-0xdfff]
[    0.188988] pci_bus 0000:02: resource 1 [mem 0xfc900000-0xfcbfffff]
[    0.188990] pci_bus 0000:03: resource 0 [io  0xc000-0xdfff]
[    0.188991] pci_bus 0000:03: resource 1 [mem 0xfc900000-0xfcafffff]
[    0.188993] pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
[    0.188994] pci_bus 0000:04: resource 1 [mem 0xfca00000-0xfcafffff]
[    0.188996] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
[    0.188997] pci_bus 0000:05: resource 1 [mem 0xfc900000-0xfc9fffff]
[    0.188999] pci_bus 0000:09: resource 0 [io  0xe000-0xefff]
[    0.189000] pci_bus 0000:09: resource 1 [mem 0xfcc00000-0xfcdfffff]
[    0.189002] pci_bus 0000:09: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.189004] pci_bus 0000:0a: resource 0 [io  0xe000-0xefff]
[    0.189005] pci_bus 0000:0a: resource 1 [mem 0xfcc00000-0xfccfffff]
[    0.189007] pci_bus 0000:0a: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.189008] pci_bus 0000:0b: resource 0 [io  0xe000-0xefff]
[    0.189010] pci_bus 0000:0b: resource 1 [mem 0xfcc00000-0xfccfffff]
[    0.189011] pci_bus 0000:0b: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.189013] pci_bus 0000:0c: resource 1 [mem 0xfc600000-0xfc8fffff]
[    0.189015] pci_bus 0000:0d: resource 1 [mem 0xfce00000-0xfcefffff]
[    0.189072] NET: Registered protocol family 2
[    0.189256] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.189282] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.189506] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.189599] TCP: Hash tables configured (established 262144 bind 65536)
[    0.189634] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.189680] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.189785] NET: Registered protocol family 1
[    0.189789] NET: Registered protocol family 44
[    0.189928] pci 0000:0b:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.189935] pci 0000:0b:00.1: D0 power state depends on 0000:0b:00.0
[    0.190060] PCI: CLS 64 bytes, default 64
[    0.190095] Trying to unpack rootfs image as initramfs...
[    0.524382] Freeing initrd memory: 35176K
[    0.524401] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    0.524729] pci 0000:00:01.0: Adding to iommu group 0
[    0.524869] pci 0000:00:01.1: Adding to iommu group 1
[    0.525014] pci 0000:00:01.3: Adding to iommu group 2
[    0.525158] pci 0000:00:02.0: Adding to iommu group 3
[    0.525287] pci 0000:00:03.0: Adding to iommu group 4
[    0.525429] pci 0000:00:03.1: Adding to iommu group 5
[    0.525557] pci 0000:00:04.0: Adding to iommu group 6
[    0.525704] pci 0000:00:07.0: Adding to iommu group 7
[    0.525864] pci 0000:00:07.1: Adding to iommu group 8
[    0.526008] pci 0000:00:08.0: Adding to iommu group 9
[    0.526136] pci 0000:00:08.1: Adding to iommu group 10
[    0.526289] pci 0000:00:14.0: Adding to iommu group 11
[    0.526303] pci 0000:00:14.3: Adding to iommu group 11
[    0.526457] pci 0000:00:18.0: Adding to iommu group 12
[    0.526470] pci 0000:00:18.1: Adding to iommu group 12
[    0.526483] pci 0000:00:18.2: Adding to iommu group 12
[    0.526496] pci 0000:00:18.3: Adding to iommu group 12
[    0.526509] pci 0000:00:18.4: Adding to iommu group 12
[    0.526522] pci 0000:00:18.5: Adding to iommu group 12
[    0.526535] pci 0000:00:18.6: Adding to iommu group 12
[    0.526547] pci 0000:00:18.7: Adding to iommu group 12
[    0.526694] pci 0000:01:00.0: Adding to iommu group 13
[    0.526838] pci 0000:02:00.0: Adding to iommu group 14
[    0.526858] pci 0000:02:00.1: Adding to iommu group 14
[    0.526879] pci 0000:02:00.2: Adding to iommu group 14
[    0.526892] pci 0000:03:00.0: Adding to iommu group 14
[    0.526904] pci 0000:03:01.0: Adding to iommu group 14
[    0.526915] pci 0000:03:02.0: Adding to iommu group 14
[    0.526926] pci 0000:03:03.0: Adding to iommu group 14
[    0.526938] pci 0000:03:04.0: Adding to iommu group 14
[    0.526955] pci 0000:04:00.0: Adding to iommu group 14
[    0.526975] pci 0000:05:00.0: Adding to iommu group 14
[    0.527124] pci 0000:09:00.0: Adding to iommu group 15
[    0.527253] pci 0000:0a:00.0: Adding to iommu group 16
[    0.527508] pci 0000:0b:00.0: Adding to iommu group 17
[    0.527660] pci 0000:0b:00.0: Using iommu direct mapping
[    0.527738] pci 0000:0b:00.1: Adding to iommu group 18
[    0.527848] pci 0000:0c:00.0: Adding to iommu group 19
[    0.527993] pci 0000:0c:00.2: Adding to iommu group 20
[    0.528127] pci 0000:0c:00.3: Adding to iommu group 21
[    0.528271] pci 0000:0d:00.0: Adding to iommu group 22
[    0.528405] pci 0000:0d:00.2: Adding to iommu group 23
[    0.528550] pci 0000:0d:00.3: Adding to iommu group 24
[    0.528734] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[    0.528736] pci 0000:00:00.2: AMD-Vi: Extended features (0xf77ef22294ada):
[    0.528737]  PPR NX GT IA GA PC GA_vAPIC
[    0.528740] AMD-Vi: Interrupt remapping enabled
[    0.528741] AMD-Vi: Virtual APIC enabled
[    0.528812] AMD-Vi: Lazy IO/TLB flushing enabled
[    0.528818] __memblock_free_late: [0x000000081e2e3000-0x000000081e322fff] swiotlb_exit+0xc3/0x156
[    0.528823] __memblock_free_late: [0x000000081e323000-0x000000081e342fff] swiotlb_exit+0x104/0x156
[    0.528826] __memblock_free_late: [0x00000000d235f000-0x00000000d635efff] swiotlb_exit+0x129/0x156
[    0.529856] amd_uncore: AMD NB counters detected
[    0.529861] amd_uncore: AMD LLC counters detected
[    0.530048] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.531923] Initialise system trusted keyrings
[    0.531934] Key type blacklist registered
[    0.531963] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[    0.532775] zbud: loaded
[    0.533230] Platform Keyring initialized
[    0.536794] NET: Registered protocol family 38
[    0.536797] Key type asymmetric registered
[    0.536798] Asymmetric key parser 'x509' registered
[    0.536803] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.536845] io scheduler mq-deadline registered
[    0.536846] io scheduler kyber registered
[    0.536864] io scheduler bfq registered
[    0.536967] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.541385] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.541400] efifb: probing for efifb
[    0.541421] efifb: No BGRT, not showing boot graphics
[    0.541422] efifb: framebuffer at 0xe0000000, using 3072k, total 3072k
[    0.541423] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    0.541424] efifb: scrolling: redraw
[    0.541426] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.541482] Console: switching to colour frame buffer device 128x48
[    0.542567] fb0: EFI VGA frame buffer device
[    0.542653] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.542677] ACPI: Power Button [PWRB]
[    0.542705] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.542731] ACPI: Power Button [PWRF]
[    0.542770] Monitor-Mwait will be used to enter C-1 state
[    0.543847] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.564722] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.565626] Non-volatile memory driver v1.3
[    0.565651] Linux agpgart interface v0.103
[    0.566429] ahci 0000:02:00.1: version 3.0
[    0.566501] ahci 0000:02:00.1: SSS flag set, parallel bus scan disabled
[    0.566567] ahci 0000:02:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
[    0.566586] ahci 0000:02:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
[    0.566982] scsi host0: ahci
[    0.567064] scsi host1: ahci
[    0.567132] scsi host2: ahci
[    0.567193] scsi host3: ahci
[    0.567259] scsi host4: ahci
[    0.567324] scsi host5: ahci
[    0.567392] scsi host6: ahci
[    0.567456] scsi host7: ahci
[    0.567490] ata1: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80100 irq 42
[    0.567508] ata2: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80180 irq 42
[    0.567526] ata3: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80200 irq 42
[    0.567959] ata4: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80280 irq 42
[    0.568384] ata5: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80300 irq 42
[    0.568800] ata6: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80380 irq 42
[    0.569204] ata7: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80400 irq 42
[    0.569602] ata8: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80480 irq 42
[    0.570082] ahci 0000:0d:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.570475] ahci 0000:0d:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    0.570953] scsi host8: ahci
[    0.571368] ata9: SATA max UDMA/133 abar m4096@0xfce08000 port 0xfce08100 irq 44
[    0.571822] libphy: Fixed MDIO Bus: probed
[    0.572283] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.572696] ehci-pci: EHCI PCI platform driver
[    0.573106] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.573512] ohci-pci: OHCI PCI platform driver
[    0.573923] uhci_hcd: USB Universal Host Controller Interface driver
[    0.574386] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.574822] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
[    0.630533] xhci_hcd 0000:02:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[    0.631222] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.03
[    0.631649] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.632072] usb usb1: Product: xHCI Host Controller
[    0.632493] usb usb1: Manufacturer: Linux 5.3.0-0.rc3.git0.2.fc31.x86_64 xhci-hcd
[    0.632921] usb usb1: SerialNumber: 0000:02:00.0
[    0.633404] hub 1-0:1.0: USB hub found
[    0.633840] hub 1-0:1.0: 14 ports detected
[    0.638357] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.638795] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[    0.639213] xhci_hcd 0000:02:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.639672] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.640112] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.03
[    0.640524] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.640929] usb usb2: Product: xHCI Host Controller
[    0.641326] usb usb2: Manufacturer: Linux 5.3.0-0.rc3.git0.2.fc31.x86_64 xhci-hcd
[    0.641735] usb usb2: SerialNumber: 0000:02:00.0
[    0.642252] hub 2-0:1.0: USB hub found
[    0.642665] hub 2-0:1.0: 8 ports detected
[    0.645464] xhci_hcd 0000:0c:00.3: xHCI Host Controller
[    0.645880] xhci_hcd 0000:0c:00.3: new USB bus registered, assigned bus number 3
[    0.646367] xhci_hcd 0000:0c:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x0000000000000410
[    0.647006] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.03
[    0.647429] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.647855] usb usb3: Product: xHCI Host Controller
[    0.648286] usb usb3: Manufacturer: Linux 5.3.0-0.rc3.git0.2.fc31.x86_64 xhci-hcd
[    0.648733] usb usb3: SerialNumber: 0000:0c:00.3
[    0.649239] hub 3-0:1.0: USB hub found
[    0.649692] hub 3-0:1.0: 4 ports detected
[    0.650257] xhci_hcd 0000:0c:00.3: xHCI Host Controller
[    0.650738] xhci_hcd 0000:0c:00.3: new USB bus registered, assigned bus number 4
[    0.651210] xhci_hcd 0000:0c:00.3: Host supports USB 3.0 SuperSpeed
[    0.651696] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.652201] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.03
[    0.652705] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.653213] usb usb4: Product: xHCI Host Controller
[    0.653718] usb usb4: Manufacturer: Linux 5.3.0-0.rc3.git0.2.fc31.x86_64 xhci-hcd
[    0.654227] usb usb4: SerialNumber: 0000:0c:00.3
[    0.654777] hub 4-0:1.0: USB hub found
[    0.655270] hub 4-0:1.0: 4 ports detected
[    0.655884] usbcore: registered new interface driver usbserial_generic
[    0.656374] usbserial: USB Serial support registered for generic
[    0.656867] i8042: PNP: No PS/2 controller found.
[    0.657369] mousedev: PS/2 mouse device common for all mice
[    0.657924] rtc_cmos 00:01: RTC can wake from S4
[    0.658643] rtc_cmos 00:01: registered as rtc0
[    0.659124] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.659638] device-mapper: uevent: version 1.0.3
[    0.660152] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
[    0.660803] hidraw: raw HID events driver (C) Jiri Kosina
[    0.661308] usbcore: registered new interface driver usbhid
[    0.661787] usbhid: USB HID core driver
[    0.662332] drop_monitor: Initializing network drop monitor service
[    0.662862] Initializing XFRM netlink socket
[    0.663414] NET: Registered protocol family 10
[    0.666270] Segment Routing with IPv6
[    0.666762] mip6: Mobile IPv6
[    0.667236] NET: Registered protocol family 17
[    0.668363] RAS: Correctable Errors collector initialized.
[    0.668855] microcode: CPU0: patch_level=0x0800820c
[    0.669326] microcode: CPU1: patch_level=0x0800820c
[    0.669805] microcode: CPU2: patch_level=0x0800820c
[    0.670260] microcode: CPU3: patch_level=0x0800820c
[    0.670710] microcode: CPU4: patch_level=0x0800820c
[    0.671147] microcode: CPU5: patch_level=0x0800820c
[    0.671575] microcode: CPU6: patch_level=0x0800820c
[    0.672004] microcode: CPU7: patch_level=0x0800820c
[    0.672424] microcode: CPU8: patch_level=0x0800820c
[    0.672833] microcode: CPU9: patch_level=0x0800820c
[    0.673237] microcode: CPU10: patch_level=0x0800820c
[    0.673629] microcode: CPU11: patch_level=0x0800820c
[    0.674013] microcode: CPU12: patch_level=0x0800820c
[    0.674384] microcode: CPU13: patch_level=0x0800820c
[    0.674744] microcode: CPU14: patch_level=0x0800820c
[    0.675094] microcode: CPU15: patch_level=0x0800820c
[    0.675438] microcode: Microcode Update Driver: v2.2.
[    0.675443] AVX2 version of gcm_enc/dec engaged.
[    0.676126] AES CTR mode by8 optimization enabled
[    0.695239] sched_clock: Marking stable (702230268, -6994820)->(832905563, -137670115)
[    0.695798] registered taskstats version 1
[    0.696151] Loading compiled-in X.509 certificates
[    0.717036] Loaded X.509 cert 'Fedora kernel signing key: aaca8ca9317b011688027c7c5b976fd80c106999'
[    0.717410] zswap: loaded using pool lzo/zbud
[    0.721702] Key type big_key registered
[    0.723805] Key type encrypted registered
[    0.725697] ima: No TPM chip found, activating TPM-bypass!
[    0.726044] ima: Allocated hash algorithm: sha256
[    0.726397] No architecture policies found
[    0.727015] PM:   Magic number: 15:832:46
[    0.727373] event_source uprobe: hash matches
[    0.727751] memory memory211: hash matches
[    0.728187] rtc_cmos 00:01: setting system clock to 2019-08-07T22:02:09 UTC (1565215329)
[    0.877835] ata1: SATA link down (SStatus 0 SControl 300)
[    0.878129] ata9: SATA link down (SStatus 0 SControl 300)
[    0.962930] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[    1.115135] usb 1-2: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    1.115600] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.115946] usb 1-2: Product: USB2.0 Hub
[    1.116258] usb 1-2: Manufacturer: VIA Labs, Inc.
[    1.123135] hub 1-2:1.0: USB hub found
[    1.126118] hub 1-2:1.0: 4 ports detected
[    1.190993] ata2: SATA link down (SStatus 0 SControl 300)
[    1.215154] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[    1.229876] usb 2-1: LPM exit latency is zeroed, disabling LPM.
[    1.231885] usb 2-1: Int endpoint with wBytesPerInterval of 1024 in config 1 interface 4 altsetting 0 ep 135: setting to 262
[    1.234127] usb 2-1: New USB device found, idVendor=07ca, idProduct=0553, bcdDevice= 3.08
[    1.234465] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.234802] usb 2-1: Product: Live Gamer Ultra-Video
[    1.235143] usb 2-1: Manufacturer: AVerMedia
[    1.235487] usb 2-1: SerialNumber: 5202584700069
[    1.256515] hid-generic 0003:07CA:0553.0001: hiddev96,hidraw0: USB HID v1.11 Device [AVerMedia Live Gamer Ultra-Video] on usb-0000:02:00.0-1/input4
[    1.344376] usb 1-10: new full-speed USB device number 3 using xhci_hcd
[    1.502095] ata3: SATA link down (SStatus 0 SControl 300)
[    1.560040] tsc: Refined TSC clocksource calibration: 3693.062 MHz
[    1.560622] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6a7777116fa, max_idle_ns: 881590883556 ns
[    1.561305] clocksource: Switched to clocksource tsc
[    1.657044] usb 1-10: New USB device found, idVendor=0b05, idProduct=1872, bcdDevice= 2.00
[    1.657510] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.657973] usb 1-10: Product: AURA LED Controller
[    1.658440] usb 1-10: Manufacturer: AsusTek Computer Inc.
[    1.658915] usb 1-10: SerialNumber: 00000000001A
[    1.678916] hid-generic 0003:0B05:1872.0002: hiddev97,hidraw1: USB HID v1.11 Device [AsusTek Computer Inc. AURA LED Controller] on usb-0000:02:00.0-10/input0
[    1.712398] usb 2-2: new SuperSpeed Gen 1 USB device number 3 using xhci_hcd
[    1.813106] ata4: SATA link down (SStatus 0 SControl 300)
[    1.813979] usb 2-2: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    1.814515] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.815042] usb 2-2: Product: USB3.0 Hub
[    1.815581] usb 2-2: Manufacturer: VIA Labs, Inc.
[    1.823491] hub 2-2:1.0: USB hub found
[    1.824729] hub 2-2:1.0: 4 ports detected
[    1.893368] usb 1-2.1: new high-speed USB device number 4 using xhci_hcd
[    2.020266] usb 1-2.1: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    2.020781] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.021298] usb 1-2.1: Product: USB2.0 Hub
[    2.021810] usb 1-2.1: Manufacturer: VIA Labs, Inc.
[    2.031284] hub 1-2.1:1.0: USB hub found
[    2.034238] hub 1-2.1:1.0: 4 ports detected
[    2.119366] usb 1-12: new full-speed USB device number 5 using xhci_hcd
[    2.280382] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.281284] ata5.00: ATA-8: OCZ-VECTOR150, 1.2, max UDMA/133
[    2.281845] ata5.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.284555] ata5.00: configured for UDMA/133
[    2.285234] scsi 4:0:0:0: Direct-Access     ATA      OCZ-VECTOR150    1.2  PQ: 0 ANSI: 5
[    2.285886] sd 4:0:0:0: Attached scsi generic sg0 type 0
[    2.285920] sd 4:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/224 GiB)
[    2.287171] sd 4:0:0:0: [sda] Write Protect is off
[    2.287710] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.287716] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.289414]  sda: sda1 sda2
[    2.290237] sd 4:0:0:0: [sda] Attached SCSI disk
[    2.350117] usb 1-12: New USB device found, idVendor=0b05, idProduct=185c, bcdDevice= 1.10
[    2.350644] usb 1-12: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.351157] usb 1-12: Product: Bluetooth Radio 
[    2.351663] usb 1-12: Manufacturer: Realtek 
[    2.352167] usb 1-12: SerialNumber: 00e04c000001
[    2.413371] usb 1-2.2: new full-speed USB device number 6 using xhci_hcd
[    2.718857] usb 2-2.1: new SuperSpeed Gen 1 USB device number 4 using xhci_hcd
[    2.752396] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.793783] ata6.00: ATA-10: ST12000NE0007-2GT116, EN01, max UDMA/133
[    2.794498] ata6.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    2.797696] ata6.00: configured for UDMA/133
[    2.798723] scsi 5:0:0:0: Direct-Access     ATA      ST12000NE0007-2G EN01 PQ: 0 ANSI: 5
[    2.799677] sd 5:0:0:0: Attached scsi generic sg1 type 0
[    2.799712] sd 5:0:0:0: [sdb] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[    2.801038] sd 5:0:0:0: [sdb] 4096-byte physical blocks
[    2.801542] sd 5:0:0:0: [sdb] Write Protect is off
[    2.802034] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.802040] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.810677] usb 1-2.2: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.07
[    2.811395] usb 1-2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.812069] usb 1-2.2: Product: USB Receiver
[    2.812547] usb 1-2.2: Manufacturer: Logitech
[    2.819830] usb 2-2.1: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    2.820307] usb 2-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.820765] usb 2-2.1: Product: USB3.0 Hub
[    2.821219] usb 2-2.1: Manufacturer: VIA Labs, Inc.
[    2.822470] sd 5:0:0:0: [sdb] Attached SCSI disk
[    2.848119] hub 2-2.1:1.0: USB hub found
[    2.849337] hub 2-2.1:1.0: 4 ports detected
[    2.874903] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.0/0003:046D:C52B.0003/input/input2
[    2.928551] hid-generic 0003:046D:C52B.0003: input,hidraw2: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input0
[    2.951350] usb 1-2.1.2: new low-speed USB device number 7 using xhci_hcd
[    2.979679] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0004/input/input3
[    2.981153] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0004/input/input4
[    3.034111] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0004/input/input5
[    3.035859] hid-generic 0003:046D:C52B.0004: input,hiddev98,hidraw3: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input1
[    3.079690] hid-generic 0003:046D:C52B.0005: hiddev99,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input2
[    3.112116] ata7: SATA link down (SStatus 0 SControl 300)
[    3.271711] usb 1-2.1.2: New USB device found, idVendor=046d, idProduct=c326, bcdDevice=79.00
[    3.272397] usb 1-2.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.273054] usb 1-2.1.2: Product: USB Keyboard
[    3.273676] usb 1-2.1.2: Manufacturer: Logitech
[    3.327753] usb 2-2.3: new SuperSpeed Gen 1 USB device number 5 using xhci_hcd
[    3.375924] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.0/0003:046D:C326.0006/input/input7
[    3.426082] ata8: SATA link down (SStatus 0 SControl 300)
[    3.427922] Freeing unused decrypted memory: 2040K
[    3.428873] Freeing unused kernel image memory: 2272K
[    3.429109] hid-generic 0003:046D:C326.0006: input,hidraw5: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:02:00.0-2.1.2/input0
[    3.429549] Write protecting the kernel read-only data: 20480k
[    3.432102] Freeing unused kernel image memory: 2016K
[    3.433077] Freeing unused kernel image memory: 1856K
[    3.440621] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    3.441283] rodata_test: all tests were successful
[    3.441941] Run /init as init process
[    3.445879] usb 2-2.3: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    3.446550] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.447315] usb 2-2.3: Product: USB3.0 Hub
[    3.448275] usb 2-2.3: Manufacturer: VIA Labs, Inc.
[    3.457096] efivars: duplicate variable: DeploymentModeNv-97e8965f-c761-4f48-b6e4-9ffa9cb2a2d6
[    3.458294] systemd[1]: systemd v243~rc1-1.fc31 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=hybrid)
[    3.459894] hub 2-2.3:1.0: USB hub found
[    3.461379] hub 2-2.3:1.0: 4 ports detected
[    3.464545] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.1/0003:046D:C326.0007/input/input8
[    3.471045] systemd[1]: Detected architecture x86-64.
[    3.471792] systemd[1]: Running in initial RAM disk.
[    3.477533] systemd[1]: Set hostname to <localhost.localdomain>.
[    3.509120] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice.
[    3.510645] systemd[1]: Reached target Slices.
[    3.512085] systemd[1]: Reached target Swap.
[    3.513456] systemd[1]: Reached target Timers.
[    3.514832] systemd[1]: Listening on Journal Audit Socket.
[    3.516145] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.518065] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.1/0003:046D:C326.0007/input/input9
[    3.518117] hid-generic 0003:046D:C326.0007: input,hiddev100,hidraw6: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:02:00.0-2.1.2/input1
[    3.536015] usb 1-2.3: new high-speed USB device number 8 using xhci_hcd
[    3.669393] usb 1-2.3: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    3.669984] usb 1-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.670559] usb 1-2.3: Product: USB2.0 Hub
[    3.671114] usb 1-2.3: Manufacturer: VIA Labs, Inc.
[    3.683410] hub 1-2.3:1.0: USB hub found
[    3.686394] hub 1-2.3:1.0: 4 ports detected
[    3.725765] audit: type=1130 audit(1565215332.496:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.762978] usb 2-2.4: new SuperSpeed Gen 1 USB device number 6 using xhci_hcd
[    3.785101] audit: type=1130 audit(1565215332.556:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.847088] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    3.848503] audit: type=1130 audit(1565215332.619:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.855843] nvme nvme0: pci function 0000:01:00.0
[    3.862920] usb 2-2.4: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    3.863950] usb 2-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.865025] usb 2-2.4: Product: USB3.0 Hub
[    3.865027] usb 2-2.4: Manufacturer: VIA Labs, Inc.
[    3.866316] audit: type=1130 audit(1565215332.637:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.868553] dca service started, version 1.12.1
[    3.876704] hub 2-2.4:1.0: USB hub found
[    3.878419] hub 2-2.4:1.0: 4 ports detected
[    3.882497] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.6.0-k
[    3.883283] igb: Copyright (c) 2007-2014 Intel Corporation.
[    3.905248] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    3.911418] pps pps0: new PPS source ptp0
[    3.912057] igb 0000:04:00.0: added PHC on eth0
[    3.912679] igb 0000:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    3.913310] igb 0000:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 4c:ed:fb:75:5b:ab
[    3.914085] igb 0000:04:00.0: eth0: PBA No: FFFFFF-0FF
[    3.914705] igb 0000:04:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[    3.926157] igb 0000:04:00.0 enp4s0: renamed from eth0
[    3.942015] usb 1-2.4: new high-speed USB device number 9 using xhci_hcd
[    4.065432] usb 1-2.4: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    4.066064] usb 1-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.066700] usb 1-2.4: Product: USB2.0 Hub
[    4.067323] usb 1-2.4: Manufacturer: VIA Labs, Inc.
[    4.067905] nvme nvme0: 31/0/0 default/read/poll queues
[    4.070480]  nvme0n1: p1 p2 p3
[    4.080280] [drm] amdgpu kernel modesetting enabled.
[    4.080457] hub 1-2.4:1.0: USB hub found
[    4.080934] Parsing CRAT table with 1 nodes
[    4.082126] Ignoring ACPI CRAT on non-APU system
[    4.082737] Virtual CRAT table created for CPU
[    4.083294] PM: Image not found (code -22)
[    4.083348] Parsing CRAT table with 1 nodes
[    4.084432] hub 1-2.4:1.0: 4 ports detected
[    4.084550] Creating topology SYSFS entries
[    4.085679] Topology: Add CPU node
[    4.086229] Finished initializing topology
[    4.086302] amdgpu 0000:0b:00.0: remove_conflicting_pci_framebuffers: bar 0: 0xe0000000 -> 0xefffffff
[    4.086803] audit: type=1130 audit(1565215332.857:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-disk-by\x2duuid-9c126bde\x2dfad1\x2d467c\x2d8a1b\x2d472db1d9a6a8 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.087316] amdgpu 0000:0b:00.0: remove_conflicting_pci_framebuffers: bar 2: 0xf0000000 -> 0xf01fffff
[    4.088989] audit: type=1131 audit(1565215332.857:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-disk-by\x2duuid-9c126bde\x2dfad1\x2d467c\x2d8a1b\x2d472db1d9a6a8 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.089560] amdgpu 0000:0b:00.0: remove_conflicting_pci_framebuffers: bar 5: 0xfcc00000 -> 0xfcc7ffff
[    4.089562] checking generic (e0000000 300000) vs hw (e0000000 10000000)
[    4.092405] fb0: switching to amdgpudrmfb from EFI VGA
[    4.092997] Console: switching to colour dummy device 80x25
[    4.093027] amdgpu 0000:0b:00.0: vgaarb: deactivate vga console
[    4.093146] [drm] initializing kernel modesetting (VEGA20 0x1002:0x66AF 0x1002:0x081E 0xC1).
[    4.093156] [drm] register mmio base: 0xFCC00000
[    4.093157] [drm] register mmio size: 524288
[    4.093169] [drm] add ip block number 0 <soc15_common>
[    4.093171] [drm] add ip block number 1 <gmc_v9_0>
[    4.093172] [drm] add ip block number 2 <vega10_ih>
[    4.093173] [drm] add ip block number 3 <psp>
[    4.093176] [drm] add ip block number 4 <gfx_v9_0>
[    4.093177] [drm] add ip block number 5 <sdma_v4_0>
[    4.093178] [drm] add ip block number 6 <powerplay>
[    4.093179] [drm] add ip block number 7 <dm>
[    4.093181] [drm] add ip block number 8 <uvd_v7_0>
[    4.093182] [drm] add ip block number 9 <vce_v4_0>
[    4.093194] amdgpu 0000:0b:00.0: No more image in the PCI ROM
[    4.093211] ATOM BIOS: 113-D3600200-106
[    4.093249] [drm] UVD(0) is enabled in VM mode
[    4.093250] [drm] UVD(1) is enabled in VM mode
[    4.093251] [drm] UVD(0) ENC is enabled in VM mode
[    4.093252] [drm] UVD(1) ENC is enabled in VM mode
[    4.093253] [drm] VCE enabled in VM mode
[    4.093280] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    4.093289] amdgpu 0000:0b:00.0: VRAM: 16368M 0x0000008000000000 - 0x00000083FEFFFFFF (16368M used)
[    4.093291] amdgpu 0000:0b:00.0: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[    4.093293] amdgpu 0000:0b:00.0: AGP: 267894784M 0x0000008400000000 - 0x0000FFFFFFFFFFFF
[    4.093299] [drm] Detected VRAM RAM=16368M, BAR=256M
[    4.093300] [drm] RAM width 4096bits HBM
[    4.093340] [TTM] Zone  kernel: Available graphics memory: 16420456 KiB
[    4.093342] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    4.093344] [TTM] Initializing pool allocator
[    4.093346] [TTM] Initializing DMA pool allocator
[    4.093371] [drm] amdgpu: 16368M of VRAM memory ready
[    4.093373] [drm] amdgpu: 16368M of GTT memory ready.
[    4.093381] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    4.093497] [drm] PCIE GART of 512M enabled (table at 0x0000008000300000).
[    4.093637] amdgpu 0000:0b:00.0: Direct firmware load for amdgpu/vega20_ta.bin failed with error -2
[    4.093640] amdgpu 0000:0b:00.0: psp v11.0: Failed to load firmware "amdgpu/vega20_ta.bin"
[    4.094765] [drm] use_doorbell being set to: [true]
[    4.095446] [drm] use_doorbell being set to: [true]
[    4.095500] amdgpu: [powerplay] hwmgr_sw_init smu backed is vega20_smu
[    4.095603] [drm] Found UVD firmware ENC: 1.1 DEC: .23 Family ID: 19
[    4.095608] [drm] PSP loading UVD firmware
[    4.096376] [drm] Found VCE firmware Version: 55.5 Binary ID: 4
[    4.096381] [drm] PSP loading VCE firmware
[    4.098718] audit: type=1130 audit(1565215332.869:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.418024] usb 1-2.4.4: new full-speed USB device number 10 using xhci_hcd
[    4.643385] [drm] reserve 0x400000 from 0x8000c00000 for PSP TMR
[    4.738298] logitech-djreceiver 0003:046D:C52B.0005: hiddev98,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input2
[    4.745492] usb 1-2.4.4: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[    4.745497] usb 1-2.4.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.745499] usb 1-2.4.4: Product: Controller
[    4.745501] usb 1-2.4.4: Manufacturer: Microsoft
[    4.745502] usb 1-2.4.4: SerialNumber: 7EED8DBD807F
[    4.775048] [drm] Display Core initialized with v3.2.35!
[    4.854249] input: Logitech Unifying Device. Wireless PID:4026 Keyboard as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input10
[    4.854364] input: Logitech Unifying Device. Wireless PID:4026 Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input11
[    4.854431] input: Logitech Unifying Device. Wireless PID:4026 Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input12
[    4.854472] hid-generic 0003:046D:4026.0008: input,hidraw3: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:4026] on usb-0000:02:00.0-2.2/input2:1
[    4.870308] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.870310] [drm] Driver supports precise vblank timestamp query.
[    4.912527] [drm] UVD and UVD ENC initialized successfully.
[    5.012875] [drm] VCE initialized successfully.
[    5.013645] kfd kfd: Allocated 3969056 bytes on gart
[    5.014297] Virtual CRAT table created for GPU
[    5.014300] Parsing CRAT table with 1 nodes
[    5.014313] Creating topology SYSFS entries
[    5.014514] Topology: Add dGPU node [0x66af:0x1002]
[    5.014518] kfd kfd: added device 1002:66af
[    5.018538] [drm] fb mappable at 0xE1000000
[    5.018540] [drm] vram apper at 0xE0000000
[    5.018541] [drm] size 33177600
[    5.018542] [drm] fb depth is 24
[    5.018543] [drm]    pitch is 15360
[    5.018575] fbcon: amdgpudrmfb (fb0) is primary device
[    5.057419] Console: switching to colour frame buffer device 480x135
[    5.068804] amdgpu 0000:0b:00.0: fb0: amdgpudrmfb frame buffer device
[    5.074065] amdgpu 0000:0b:00.0: ring gfx uses VM inv eng 0 on hub 0
[    5.074066] amdgpu 0000:0b:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    5.074066] amdgpu 0000:0b:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    5.074067] amdgpu 0000:0b:00.0: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[    5.074068] amdgpu 0000:0b:00.0: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[    5.074069] amdgpu 0000:0b:00.0: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[    5.074069] amdgpu 0000:0b:00.0: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[    5.074070] amdgpu 0000:0b:00.0: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[    5.074070] amdgpu 0000:0b:00.0: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[    5.074071] amdgpu 0000:0b:00.0: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[    5.074072] amdgpu 0000:0b:00.0: ring sdma0 uses VM inv eng 0 on hub 1
[    5.074072] amdgpu 0000:0b:00.0: ring page0 uses VM inv eng 1 on hub 1
[    5.074073] amdgpu 0000:0b:00.0: ring sdma1 uses VM inv eng 4 on hub 1
[    5.074073] amdgpu 0000:0b:00.0: ring page1 uses VM inv eng 5 on hub 1
[    5.074074] amdgpu 0000:0b:00.0: ring uvd_0 uses VM inv eng 6 on hub 1
[    5.074075] amdgpu 0000:0b:00.0: ring uvd_enc_0.0 uses VM inv eng 7 on hub 1
[    5.074075] amdgpu 0000:0b:00.0: ring uvd_enc_0.1 uses VM inv eng 8 on hub 1
[    5.074076] amdgpu 0000:0b:00.0: ring uvd_1 uses VM inv eng 9 on hub 1
[    5.074076] amdgpu 0000:0b:00.0: ring uvd_enc_1.0 uses VM inv eng 10 on hub 1
[    5.074077] amdgpu 0000:0b:00.0: ring uvd_enc_1.1 uses VM inv eng 11 on hub 1
[    5.074077] amdgpu 0000:0b:00.0: ring vce0 uses VM inv eng 12 on hub 1
[    5.074078] amdgpu 0000:0b:00.0: ring vce1 uses VM inv eng 13 on hub 1
[    5.074079] amdgpu 0000:0b:00.0: ring vce2 uses VM inv eng 14 on hub 1
[    5.074079] [drm] ECC is not present.
[    5.074079] [drm] SRAM ECC is not present.
[    5.764011] Detected AMDGPU DF Counters. # of Counters = 4.
[    5.764049] [drm] Initialized amdgpu 3.33.0 20150101 for 0000:0b:00.0 on minor 0
[    5.829744] input: Logitech T400 as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input16
[    5.829926] logitech-hidpp-device 0003:046D:4026.0008: input,hidraw3: USB HID v1.11 Keyboard [Logitech T400] on usb-0000:02:00.0-2.2/input2:1
[    5.838351] audit: type=1130 audit(1565215334.609:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.848122] audit: type=1130 audit(1565215334.619:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.852088] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: (null)
[    5.930077] audit: type=1130 audit(1565215334.701:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.930126] audit: type=1131 audit(1565215334.701:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.952757] audit: type=1130 audit(1565215334.723:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.958727] audit: type=1131 audit(1565215334.729:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.959866] audit: type=1131 audit(1565215334.730:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.960963] audit: type=1131 audit(1565215334.731:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.961418] audit: type=1131 audit(1565215334.732:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.962030] audit: type=1131 audit(1565215334.733:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.272040] [drm] Fence fallback timer expired on ring gfx
[    6.776342] [drm] Fence fallback timer expired on ring comp_1.0.0
[    7.280015] [drm] Fence fallback timer expired on ring comp_1.1.0
[    7.784326] [drm] Fence fallback timer expired on ring comp_1.2.0
[    8.288339] [drm] Fence fallback timer expired on ring comp_1.3.0
[    8.859837] systemd-journald[380]: Received SIGTERM from PID 1 (systemd).
[    8.869850] printk: systemd: 22 output lines suppressed due to ratelimiting
[    9.114417] SELinux:  policy capability network_peer_controls=1
[    9.114420] SELinux:  policy capability open_perms=1
[    9.114421] SELinux:  policy capability extended_socket_class=1
[    9.114421] SELinux:  policy capability always_check_network=0
[    9.114422] SELinux:  policy capability cgroup_seclabel=1
[    9.114422] SELinux:  policy capability nnp_nosuid_transition=1
[    9.130559] systemd[1]: Successfully loaded SELinux policy in 247.581ms.
[    9.132793] systemd[1]: RTC configured in localtime, applying delta of 300 minutes to system time.
[    9.161684] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 20.947ms.
[    9.162511] systemd[1]: systemd v243~rc1-1.fc31 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=hybrid)
[    9.174046] systemd[1]: Detected architecture x86-64.
[    9.174732] systemd[1]: Set hostname to <localhost.localdomain>.
[    9.215867] systemd[1]: unit_file_find_fragment: getty@tty1.service has alias autovt@tty1.service
[    9.218934] systemd[1]: /usr/lib/systemd/system/sssd.service:12: PIDFile= references a path below legacy directory /var/run/, updating /var/run/sssd.pid → /run/sssd.pid; please update the unit file accordingly.
[    9.220194] systemd[1]: /usr/lib/systemd/system/iscsid.service:11: PIDFile= references a path below legacy directory /var/run/, updating /var/run/iscsid.pid → /run/iscsid.pid; please update the unit file accordingly.
[    9.220278] systemd[1]: /usr/lib/systemd/system/iscsiuio.service:13: PIDFile= references a path below legacy directory /var/run/, updating /var/run/iscsiuio.pid → /run/iscsiuio.pid; please update the unit file accordingly.
[    9.221102] systemd[1]: /usr/lib/systemd/system/libvirtd-admin.socket:8: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/libvirt-admin-sock → /run/libvirt/libvirt-admin-sock; please update the unit file accordingly.
[    9.221246] systemd[1]: /usr/lib/systemd/system/libvirtd-ro.socket:8: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/libvirt-sock-ro → /run/libvirt/libvirt-sock-ro; please update the unit file accordingly.
[    9.221364] systemd[1]: /usr/lib/systemd/system/libvirtd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/libvirt-sock → /run/libvirt/libvirt-sock; please update the unit file accordingly.
[    9.279866] EXT4-fs (nvme0n1p2): re-mounted. Opts: (null)
[    9.292018] Adding 67108860k swap on /dev/nvme0n1p3.  Priority:-2 extents:1 across:67108860k SSFS
[    9.439225] systemd-journald[658]: File /run/log/journal/d9a0b11169ff4ad6a0198ce0a8a8b565/system.journal corrupted or uncleanly shut down, renaming and replacing.
[    9.446680] systemd-journald[658]: Received client request to flush runtime journal.
[    9.538131] acpi_cpufreq: overriding BIOS provided _PSD data
[    9.583815] ccp 0000:0c:00.2: enabling device (0000 -> 0002)
[    9.585592] mc: Linux media interface: v0.10
[    9.585673] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    9.585676] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    9.588202] ccp 0000:0c:00.2: ccp enabled
[    9.625371] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    9.625455] sp5100-tco sp5100-tco: Using 0xfed80b00 for watchdog MMIO address
[    9.625465] sp5100-tco sp5100-tco: Watchdog hardware is disabled
[    9.628063] videodev: Linux video capture interface: v2.00
[    9.630826] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.4/1-2.4.4/1-2.4.4:1.0/input/input17
[    9.630957] usbcore: registered new interface driver xpad
[    9.631018] Bluetooth: Core ver 2.22
[    9.631034] NET: Registered protocol family 31
[    9.631035] Bluetooth: HCI device and connection manager initialized
[    9.631041] Bluetooth: HCI socket layer initialized
[    9.631044] Bluetooth: L2CAP socket layer initialized
[    9.631048] Bluetooth: SCO socket layer initialized
[    9.635488] asus_wmi: ASUS WMI generic driver loaded
[    9.637928] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    9.638379] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    9.648002] asus_wmi: Initialization: 0x0
[    9.648059] asus_wmi: BIOS WMI version: 0.9
[    9.648111] asus_wmi: SFUN value: 0x0
[    9.648114] eeepc-wmi eeepc-wmi: Detected ASUSWMI, use DCTS
[    9.648581] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input18
[    9.648702] asus_wmi: Number of fans: 1
[    9.679293] usbcore: registered new interface driver btusb
[    9.682494] Bluetooth: hci0: RTL: rtl: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8822

[    9.684977] uvcvideo: Unknown video format 30313050-0000-0010-8000-00aa00389b71
[    9.684980] uvcvideo: Found UVC 1.00 device Live Gamer Ultra-Video (07ca:0553)
[    9.685487] Bluetooth: hci0: RTL: rom_version status=0 version=2

[    9.685491] Bluetooth: hci0: RTL: rtl: loading rtl_bt/rtl8822b_fw.bin

[    9.685685] Bluetooth: hci0: RTL: rtl: loading rtl_bt/rtl8822b_config.bin

[    9.685745] Bluetooth: hci0: RTL: cfg_sz 14, total sz 20270

[    9.739517] snd_hda_intel 0000:0b:00.1: Handle vga_switcheroo audio client
[    9.739650] snd_hda_intel 0000:0d:00.3: enabling device (0000 -> 0002)
[    9.760538] rtw_pci 0000:05:00.0: enabling device (0000 -> 0003)
[    9.769169] uvcvideo 2-1:1.0: Entity type for entity Extension 3 was not initialized!
[    9.769173] uvcvideo 2-1:1.0: Entity type for entity Processing 2 was not initialized!
[    9.769174] uvcvideo 2-1:1.0: Entity type for entity Camera 1 was not initialized!
[    9.769236] input: Live Gamer Ultra-Video: Live Ga as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb2/2-1/2-1:1.0/input/input19
[    9.769308] usbcore: registered new interface driver uvcvideo
[    9.769309] USB Video Class driver (1.1.1)
[    9.779915] usbcore: registered new interface driver snd-usb-audio
[    9.780971] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    9.806089] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input20
[    9.806158] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input21
[    9.806217] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input22
[    9.806271] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input23
[    9.806318] input: HD-Audio Generic HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input24
[    9.806358] input: HD-Audio Generic HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input25
[    9.810678] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC1220: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    9.810682] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    9.810683] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    9.810685] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    9.810686] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    9.810688] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[    9.810689] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[    9.810690] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[    9.811892] kvm: Nested Virtualization enabled
[    9.811899] kvm: Nested Paging enabled
[    9.811900] SVM: Virtual VMLOAD VMSAVE supported
[    9.811901] SVM: Virtual GIF supported
[    9.823358] MCE: In-kernel MCE decoding enabled.
[    9.826465] EDAC amd64: Node 0: DRAM ECC disabled.
[    9.826468] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    9.828691] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input26
[    9.828747] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input27
[    9.828787] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input28
[    9.828829] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input29
[    9.828867] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input30
[    9.834443] rtw_pci 0000:05:00.0 wlp5s0: renamed from wlan0
[    9.873045] EDAC amd64: Node 0: DRAM ECC disabled.
[    9.873049] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    9.919964] EDAC amd64: Node 0: DRAM ECC disabled.
[    9.919968] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    9.951756] EDAC amd64: Node 0: DRAM ECC disabled.
[    9.951759] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    9.988817] EDAC amd64: Node 0: DRAM ECC disabled.
[    9.988821] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.026739] EDAC amd64: Node 0: DRAM ECC disabled.
[   10.026742] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.061711] EDAC amd64: Node 0: DRAM ECC disabled.
[   10.061714] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.100789] EDAC amd64: Node 0: DRAM ECC disabled.
[   10.100793] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.139524] EDAC amd64: Node 0: DRAM ECC disabled.
[   10.139526] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.175613] EDAC amd64: Node 0: DRAM ECC disabled.
[   10.175615] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.202448] EDAC amd64: Node 0: DRAM ECC disabled.
[   10.202450] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.230592] EDAC amd64: Node 0: DRAM ECC disabled.
[   10.230595] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.270737] EDAC amd64: Node 0: DRAM ECC disabled.
[   10.270741] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.304612] EDAC amd64: Node 0: DRAM ECC disabled.
[   10.304616] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.331630] EDAC amd64: Node 0: DRAM ECC disabled.
[   10.331633] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.364552] EDAC amd64: Node 0: DRAM ECC disabled.
[   10.364555] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   10.697508] EXT4-fs (sdb): mounted filesystem with ordered data mode. Opts: (null)
[   10.783434] RPC: Registered named UNIX socket transport module.
[   10.783436] RPC: Registered udp transport module.
[   10.783437] RPC: Registered tcp transport module.
[   10.783437] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   10.978685] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   10.978687] Bluetooth: BNEP filters: protocol multicast
[   10.978690] Bluetooth: BNEP socket layer initialized
[   11.906317] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   11.910854] tun: Universal TUN/TAP device driver, 1.6
[   11.911611] virbr0: port 1(virbr0-nic) entered blocking state
[   11.911614] virbr0: port 1(virbr0-nic) entered disabled state
[   11.911660] device virbr0-nic entered promiscuous mode
[   12.148184] virbr0: port 1(virbr0-nic) entered blocking state
[   12.148189] virbr0: port 1(virbr0-nic) entered listening state
[   12.171246] virbr0: port 1(virbr0-nic) entered disabled state
[   12.454594] logitech-hidpp-device 0003:046D:4026.0008: HID++ 2.0 device connected.
[   14.207519] igb 0000:04:00.0 enp4s0: igb: enp4s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   14.312195] IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0: link becomes ready
[   27.342315] rfkill: input handler disabled
[   28.079017] Bluetooth: RFCOMM TTY layer initialized
[   28.079027] Bluetooth: RFCOMM socket layer initialized
[   28.079066] Bluetooth: RFCOMM ver 1.11
[ 1894.578373] xhci_hcd 0000:02:00.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
[ 1916.345196] usb 1-2.4.4: USB disconnect, device number 10
[ 1921.950942] usb 1-2.4.4: new full-speed USB device number 11 using xhci_hcd
[ 1922.277684] usb 1-2.4.4: New USB device found, idVendor=054c, idProduct=09cc, bcdDevice= 1.00
[ 1922.277689] usb 1-2.4.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1922.277691] usb 1-2.4.4: Product: Wireless Controller
[ 1922.277693] usb 1-2.4.4: Manufacturer: Sony Interactive Entertainment
[ 1922.666802] input: Sony Interactive Entertainment Wireless Controller Touchpad as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.4/1-2.4.4/1-2.4.4:1.3/0003:054C:09CC.0009/input/input32
[ 1922.667093] input: Sony Interactive Entertainment Wireless Controller Motion Sensors as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.4/1-2.4.4/1-2.4.4:1.3/0003:054C:09CC.0009/input/input33
[ 1922.719008] input: Sony Interactive Entertainment Wireless Controller as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.4/1-2.4.4/1-2.4.4:1.3/0003:054C:09CC.0009/input/input31
[ 1922.719215] sony 0003:054C:09CC.0009: input,hidraw4: USB HID v81.11 Gamepad [Sony Interactive Entertainment Wireless Controller] on usb-0000:02:00.0-2.4.4/input3
[ 3544.284251] show_signal_msg: 48 callbacks suppressed
[ 3544.284254] gsd-media-keys[2089]: segfault at 1 ip 00007fc6e888e4cd sp 00007fffe3ee6d40 error 4 in libglib-2.0.so.0.6101.0[7fc6e883b000+82000]
[ 3544.284264] Code: 04 4c 8b 3b 8d 48 ff 48 89 c5 49 89 ce 49 c1 e6 04 4d 01 f7 4d 8b 27 4d 85 e4 0f 84 cd 00 00 00 49 8b 44 24 08 48 85 c0 74 43 <48> 8b 10 49 89 54 24 08 49 89 c4 49 8b 47 08 48 85 c0 74 08 48 83
[ 3545.446152] gsd-media-keys[17062]: segfault at 10 ip 00007fb4859956fe sp 00007ffd185e1450 error 4 in libglib-2.0.so.0.6101.0[7fb485943000+82000]
[ 3545.446161] Code: 24 08 31 c0 48 89 f8 48 c1 e8 04 44 8d 68 ff 4e 8d 24 ed 00 00 00 00 4d 01 e6 49 8b 06 48 85 c0 74 5a 4c 8b 00 4d 85 c0 74 52 <49> 8b 10 48 89 10 48 8b 05 fd 66 0b 00 4a 8b 04 e8 83 40 08 01 4c
[ 3643.083034] rfkill: input handler enabled
[ 3643.258971] uvcvideo: Failed to resubmit video URB (-1).
[ 3643.259009] uvcvideo: Failed to resubmit video URB (-1).
[ 3643.259037] uvcvideo: Failed to resubmit video URB (-1).
[ 3643.259063] uvcvideo: Failed to resubmit video URB (-1).
[ 3643.259091] uvcvideo: Failed to resubmit video URB (-1).
[ 3656.134516] rfkill: input handler disabled
[ 3657.561674] usb 1-2.4.4: USB disconnect, device number 11
[ 4100.965778] usb 1-2.4.4: new full-speed USB device number 12 using xhci_hcd
[ 4101.292579] usb 1-2.4.4: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[ 4101.292585] usb 1-2.4.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4101.292587] usb 1-2.4.4: Product: Controller
[ 4101.292589] usb 1-2.4.4: Manufacturer: Microsoft
[ 4101.292591] usb 1-2.4.4: SerialNumber: 7EED8DBD807F
[ 4101.321705] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.4/1-2.4.4/1-2.4.4:1.0/input/input34
[ 4134.789656] usb 1-2.4.4: USB disconnect, device number 12
[ 4145.517089] usb 1-2.3.1: new full-speed USB device number 13 using xhci_hcd
[ 4145.851689] usb 1-2.3.1: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[ 4145.851694] usb 1-2.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4145.851696] usb 1-2.3.1: Product: Controller
[ 4145.851698] usb 1-2.3.1: Manufacturer: Microsoft
[ 4145.851699] usb 1-2.3.1: SerialNumber: 7EED8DBD807F
[ 4145.875770] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.3/1-2.3.1/1-2.3.1:1.0/input/input35
[ 8913.033933] perf: interrupt took too long (2548 > 2500), lowering kernel.perf_event_max_sample_rate to 78000
[36839.065793] xhci_hcd 0000:02:00.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
[36999.470051] gnome-shell: page allocation failure: order:4, mode:0x40cc0(GFP_KERNEL|__GFP_COMP), nodemask=(null),cpuset=/,mems_allowed=0
[36999.470057] CPU: 2 PID: 18083 Comm: gnome-shell Not tainted 5.3.0-0.rc3.git0.2.fc31.x86_64 #1
[36999.470059] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[36999.470060] Call Trace:
[36999.470066]  dump_stack+0x5c/0x80
[36999.470070]  warn_alloc.cold+0x7b/0xfb
[36999.470072]  ? _cond_resched+0x15/0x30
[36999.470074]  ? __alloc_pages_direct_compact+0x168/0x170
[36999.470076]  __alloc_pages_slowpath+0xdc4/0xe00
[36999.470080]  ? autoremove_wake_function+0x2c/0x50
[36999.470082]  __alloc_pages_nodemask+0x2ee/0x340
[36999.470084]  kmalloc_order+0x14/0x30
[36999.470086]  kmalloc_order_trace+0x1d/0xa0
[36999.470088]  kmemdup+0x18/0x40
[36999.470155]  dc_copy_state+0x1d/0x130 [amdgpu]
[36999.470220]  dm_atomic_duplicate_state+0x4f/0x80 [amdgpu]
[36999.470234]  drm_atomic_get_private_obj_state+0xcc/0x140 [drm]
[36999.470297]  dm_determine_update_type_for_commit+0x3a8/0x420 [amdgpu]
[36999.470362]  amdgpu_dm_atomic_check+0x3d9/0x6d0 [amdgpu]
[36999.470374]  drm_atomic_check_only+0x54d/0x780 [drm]
[36999.470385]  ? drm_mode_object_put.part.0+0x1f/0x40 [drm]
[36999.470396]  ? drm_atomic_set_fb_for_plane+0x55/0x80 [drm]
[36999.470407]  drm_atomic_nonblocking_commit+0x13/0x50 [drm]
[36999.470414]  drm_atomic_helper_page_flip+0x5d/0x90 [drm_kms_helper]
[36999.470423]  ? drm_event_reserve_init+0x4c/0x60 [drm]
[36999.470433]  drm_mode_page_flip_ioctl+0x54b/0x5d0 [drm]
[36999.470445]  ? drm_mode_cursor2_ioctl+0x10/0x10 [drm]
[36999.470454]  drm_ioctl_kernel+0xaa/0xf0 [drm]
[36999.470463]  drm_ioctl+0x208/0x390 [drm]
[36999.470474]  ? drm_mode_cursor2_ioctl+0x10/0x10 [drm]
[36999.470516]  amdgpu_drm_ioctl+0x49/0x80 [amdgpu]
[36999.470520]  do_vfs_ioctl+0x405/0x660
[36999.470522]  ksys_ioctl+0x5e/0x90
[36999.470523]  __x64_sys_ioctl+0x16/0x20
[36999.470525]  do_syscall_64+0x5f/0x1a0
[36999.470528]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[36999.470530] RIP: 0033:0x7f28607c907b
[36999.470532] Code: 0f 1e fa 48 8b 05 0d 9e 0c 00 64 c7 00 26 00 00 00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d dd 9d 0c 00 f7 d8 64 89 01 48
[36999.470533] RSP: 002b:00007ffead989358 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[36999.470535] RAX: ffffffffffffffda RBX: 00007ffead989390 RCX: 00007f28607c907b
[36999.470536] RDX: 00007ffead989390 RSI: 00000000c01864b0 RDI: 0000000000000009
[36999.470537] RBP: 00000000c01864b0 R08: 000055a270cf5310 R09: 000000000000004c
[36999.470538] R10: 00007f28608939e0 R11: 0000000000000246 R12: 000055a270cf5310
[36999.470538] R13: 0000000000000009 R14: 000055a269a7f650 R15: 000055a269a78160
[36999.470540] Mem-Info:
[36999.470544] active_anon:6965649 inactive_anon:541256 isolated_anon:0
                active_file:101224 inactive_file:97158 isolated_file:0
                unevictable:28 dirty:327 writeback:3 unstable:0
                slab_reclaimable:77196 slab_unreclaimable:99977
                mapped:396722 shmem:273395 pagetables:64734 bounce:0
                free:94645 free_pcp:797 free_cma:0
[36999.470547] Node 0 active_anon:27862596kB inactive_anon:2165024kB active_file:404896kB inactive_file:388632kB unevictable:112kB isolated(anon):0kB isolated(file):0kB mapped:1586888kB dirty:1308kB writeback:12kB shmem:1093580kB shmem_thp: 0kB shmem_pmdmapped: 0kB anon_thp: 2131968kB writeback_tmp:0kB unstable:0kB all_unreclaimable? no
[36999.470549] Node 0 DMA free:15892kB min:32kB low:44kB high:56kB active_anon:0kB inactive_anon:0kB active_file:0kB inactive_file:0kB unevictable:0kB writepending:0kB present:15996kB managed:15896kB mlocked:0kB kernel_stack:0kB pagetables:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB
[36999.470552] lowmem_reserve[]: 0 3393 31948 31948 31948
[36999.470554] Node 0 DMA32 free:121356kB min:7172kB low:10644kB high:14116kB active_anon:2928436kB inactive_anon:289196kB active_file:36648kB inactive_file:36500kB unevictable:0kB writepending:584kB present:3575768kB managed:3575580kB mlocked:0kB kernel_stack:560kB pagetables:13140kB bounce:0kB free_pcp:756kB local_pcp:0kB free_cma:0kB
[36999.470557] lowmem_reserve[]: 0 0 28555 28555 28555
[36999.470558] Node 0 Normal free:241332kB min:238660kB low:267900kB high:297140kB active_anon:24935232kB inactive_anon:1874380kB active_file:368312kB inactive_file:352516kB unevictable:112kB writepending:712kB present:29871616kB managed:29249436kB mlocked:112kB kernel_stack:39056kB pagetables:245796kB bounce:0kB free_pcp:2432kB local_pcp:0kB free_cma:0kB
[36999.470561] lowmem_reserve[]: 0 0 0 0 0
[36999.470563] Node 0 DMA: 1*4kB (U) 0*8kB 1*16kB (U) 0*32kB 2*64kB (U) 1*128kB (U) 1*256kB (U) 0*512kB 1*1024kB (U) 1*2048kB (M) 3*4096kB (M) = 15892kB
[36999.470568] Node 0 DMA32: 12113*4kB (ME) 834*8kB (UME) 360*16kB (ME) 233*32kB (UME) 115*64kB (UME) 29*128kB (ME) 92*256kB (UME) 31*512kB (UM) 3*1024kB (UM) 0*2048kB 0*4096kB = 121908kB
[36999.470574] Node 0 Normal: 51020*4kB (UMEH) 3742*8kB (UMEH) 460*16kB (UMEH) 26*32kB (UMH) 5*64kB (H) 6*128kB (H) 2*256kB (H) 0*512kB 0*1024kB 0*2048kB 0*4096kB = 243808kB
[36999.470580] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=1048576kB
[36999.470581] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
[36999.470582] 736407 total pagecache pages
[36999.470584] 264847 pages in swap cache
[36999.470585] Swap cache stats: add 6225539, delete 5961845, find 1110872/1983986
[36999.470586] Free swap  = 55367420kB
[36999.470587] Total swap = 67108860kB
[36999.470587] 8365845 pages RAM
[36999.470588] 0 pages HighMem/MovableOnly
[36999.470588] 155617 pages reserved
[36999.470589] 0 pages cma reserved
[36999.470590] 0 pages hwpoisoned
[37460.656330] gnome-shell: page allocation failure: order:4, mode:0x40cc0(GFP_KERNEL|__GFP_COMP), nodemask=(null),cpuset=/,mems_allowed=0
[37460.656336] CPU: 7 PID: 18083 Comm: gnome-shell Not tainted 5.3.0-0.rc3.git0.2.fc31.x86_64 #1
[37460.656337] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[37460.656338] Call Trace:
[37460.656344]  dump_stack+0x5c/0x80
[37460.656346]  warn_alloc.cold+0x7b/0xfb
[37460.656348]  ? _cond_resched+0x15/0x30
[37460.656350]  ? __alloc_pages_direct_compact+0x168/0x170
[37460.656351]  __alloc_pages_slowpath+0xdc4/0xe00
[37460.656354]  ? css_next_descendant_pre+0x4d/0x60
[37460.656356]  __alloc_pages_nodemask+0x2ee/0x340
[37460.656358]  kmalloc_order+0x14/0x30
[37460.656359]  kmalloc_order_trace+0x1d/0xa0
[37460.656361]  kmemdup+0x18/0x40
[37460.656414]  dc_copy_state+0x1d/0x130 [amdgpu]
[37460.656470]  dm_atomic_duplicate_state+0x4f/0x80 [amdgpu]
[37460.656484]  drm_atomic_get_private_obj_state+0xcc/0x140 [drm]
[37460.656547]  dm_determine_update_type_for_commit+0x3a8/0x420 [amdgpu]
[37460.656609]  amdgpu_dm_atomic_check+0x3d9/0x6d0 [amdgpu]
[37460.656618]  drm_atomic_check_only+0x54d/0x780 [drm]
[37460.656627]  ? drm_mode_object_put.part.0+0x1f/0x40 [drm]
[37460.656634]  ? drm_atomic_set_fb_for_plane+0x55/0x80 [drm]
[37460.656643]  drm_atomic_nonblocking_commit+0x13/0x50 [drm]
[37460.656649]  drm_atomic_helper_page_flip+0x5d/0x90 [drm_kms_helper]
[37460.656656]  ? drm_event_reserve_init+0x4c/0x60 [drm]
[37460.656664]  drm_mode_page_flip_ioctl+0x54b/0x5d0 [drm]
[37460.656673]  ? drm_mode_cursor2_ioctl+0x10/0x10 [drm]
[37460.656680]  drm_ioctl_kernel+0xaa/0xf0 [drm]
[37460.656688]  drm_ioctl+0x208/0x390 [drm]
[37460.656697]  ? drm_mode_cursor2_ioctl+0x10/0x10 [drm]
[37460.656731]  amdgpu_drm_ioctl+0x49/0x80 [amdgpu]
[37460.656734]  do_vfs_ioctl+0x405/0x660
[37460.656735]  ksys_ioctl+0x5e/0x90
[37460.656736]  __x64_sys_ioctl+0x16/0x20
[37460.656738]  do_syscall_64+0x5f/0x1a0
[37460.656740]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[37460.656742] RIP: 0033:0x7f28607c907b
[37460.656743] Code: 0f 1e fa 48 8b 05 0d 9e 0c 00 64 c7 00 26 00 00 00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d dd 9d 0c 00 f7 d8 64 89 01 48
[37460.656744] RSP: 002b:00007ffead989358 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[37460.656746] RAX: ffffffffffffffda RBX: 00007ffead989390 RCX: 00007f28607c907b
[37460.656747] RDX: 00007ffead989390 RSI: 00000000c01864b0 RDI: 0000000000000009
[37460.656747] RBP: 00000000c01864b0 R08: 000055a270746d60 R09: 000000000000004c
[37460.656748] R10: 000055a26a1e2890 R11: 0000000000000246 R12: 000055a270746d60
[37460.656748] R13: 0000000000000009 R14: 000055a269a7f650 R15: 000055a269a78160
[37460.656750] Mem-Info:
[37460.656753] active_anon:6893896 inactive_anon:547880 isolated_anon:0
                active_file:98270 inactive_file:63113 isolated_file:0
                unevictable:28 dirty:1617 writeback:0 unstable:0
                slab_reclaimable:78583 slab_unreclaimable:101725
                mapped:373323 shmem:265491 pagetables:65415 bounce:0
                free:73276 free_pcp:1091 free_cma:0
[37460.656755] Node 0 active_anon:27575584kB inactive_anon:2191520kB active_file:393080kB inactive_file:252452kB unevictable:112kB isolated(anon):0kB isolated(file):0kB mapped:1493292kB dirty:6468kB writeback:0kB shmem:1061964kB shmem_thp: 0kB shmem_pmdmapped: 0kB anon_thp: 2093056kB writeback_tmp:0kB unstable:0kB all_unreclaimable? no
[37460.656756] Node 0 DMA free:15892kB min:32kB low:44kB high:56kB active_anon:0kB inactive_anon:0kB active_file:0kB inactive_file:0kB unevictable:0kB writepending:0kB present:15996kB managed:15896kB mlocked:0kB kernel_stack:0kB pagetables:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB
[37460.656758] lowmem_reserve[]: 0 3393 31948 31948 31948
[37460.656760] Node 0 DMA32 free:122920kB min:9220kB low:12692kB high:16164kB active_anon:2963988kB inactive_anon:170984kB active_file:29432kB inactive_file:23584kB unevictable:0kB writepending:1484kB present:3575768kB managed:3575580kB mlocked:0kB kernel_stack:656kB pagetables:13628kB bounce:0kB free_pcp:1712kB local_pcp:252kB free_cma:0kB
[37460.656762] lowmem_reserve[]: 0 0 28555 28555 28555
[37460.656763] Node 0 Normal free:154292kB min:154584kB low:183824kB high:213064kB active_anon:24610804kB inactive_anon:2021548kB active_file:365052kB inactive_file:231648kB unevictable:112kB writepending:4984kB present:29871616kB managed:29249436kB mlocked:112kB kernel_stack:40000kB pagetables:248032kB bounce:0kB free_pcp:2652kB local_pcp:176kB free_cma:0kB
[37460.656765] lowmem_reserve[]: 0 0 0 0 0
[37460.656767] Node 0 DMA: 1*4kB (U) 0*8kB 1*16kB (U) 0*32kB 2*64kB (U) 1*128kB (U) 1*256kB (U) 0*512kB 1*1024kB (U) 1*2048kB (M) 3*4096kB (M) = 15892kB
[37460.656771] Node 0 DMA32: 4964*4kB (ME) 4534*8kB (ME) 729*16kB (UME) 271*32kB (ME) 147*64kB (ME) 72*128kB (UME) 31*256kB (UME) 14*512kB (M) 13*1024kB (UM) 0*2048kB 0*4096kB = 123504kB
[37460.656775] Node 0 Normal: 27959*4kB (UMEH) 3541*8kB (UMEH) 630*16kB (UMEH) 151*32kB (UMEH) 6*64kB (UH) 6*128kB (H) 2*256kB (H) 0*512kB 0*1024kB 0*2048kB 0*4096kB = 156740kB
[37460.656779] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=1048576kB
[37460.656780] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
[37460.656781] 794919 total pagecache pages
[37460.656787] 367727 pages in swap cache
[37460.656788] Swap cache stats: add 6849856, delete 6483352, find 1207152/2221254
[37460.656788] Free swap  = 54104060kB
[37460.656789] Total swap = 67108860kB
[37460.656789] 8365845 pages RAM
[37460.656790] 0 pages HighMem/MovableOnly
[37460.656790] 155617 pages reserved
[37460.656790] 0 pages cma reserved
[37460.656791] 0 pages hwpoisoned
[37460.680097] gnome-shell: page allocation failure: order:4, mode:0x40cc0(GFP_KERNEL|__GFP_COMP), nodemask=(null),cpuset=/,mems_allowed=0
[37460.680105] CPU: 14 PID: 18083 Comm: gnome-shell Not tainted 5.3.0-0.rc3.git0.2.fc31.x86_64 #1
[37460.680107] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[37460.680108] Call Trace:
[37460.680115]  dump_stack+0x5c/0x80
[37460.680119]  warn_alloc.cold+0x7b/0xfb
[37460.680122]  ? _cond_resched+0x15/0x30
[37460.680124]  ? __alloc_pages_direct_compact+0x168/0x170
[37460.680126]  __alloc_pages_slowpath+0xdc4/0xe00
[37460.680129]  ? css_next_descendant_pre+0x4d/0x60
[37460.680131]  __alloc_pages_nodemask+0x2ee/0x340
[37460.680134]  kmalloc_order+0x14/0x30
[37460.680135]  kmalloc_order_trace+0x1d/0xa0
[37460.680138]  kmemdup+0x18/0x40
[37460.680218]  dc_copy_state+0x1d/0x130 [amdgpu]
[37460.680280]  dm_atomic_duplicate_state+0x4f/0x80 [amdgpu]
[37460.680295]  drm_atomic_get_private_obj_state+0xcc/0x140 [drm]
[37460.680356]  dm_determine_update_type_for_commit+0x3a8/0x420 [amdgpu]
[37460.680418]  amdgpu_dm_atomic_check+0x3d9/0x6d0 [amdgpu]
[37460.680432]  drm_atomic_check_only+0x54d/0x780 [drm]
[37460.680444]  ? drm_mode_object_put.part.0+0x1f/0x40 [drm]
[37460.680455]  ? drm_atomic_set_fb_for_plane+0x55/0x80 [drm]
[37460.680467]  drm_atomic_nonblocking_commit+0x13/0x50 [drm]
[37460.680477]  drm_atomic_helper_page_flip+0x5d/0x90 [drm_kms_helper]
[37460.680487]  ? drm_event_reserve_init+0x4c/0x60 [drm]
[37460.680498]  drm_mode_page_flip_ioctl+0x54b/0x5d0 [drm]
[37460.680507]  ? drm_mode_cursor2_ioctl+0x10/0x10 [drm]
[37460.680515]  drm_ioctl_kernel+0xaa/0xf0 [drm]
[37460.680525]  drm_ioctl+0x208/0x390 [drm]
[37460.680535]  ? drm_mode_cursor2_ioctl+0x10/0x10 [drm]
[37460.680587]  amdgpu_drm_ioctl+0x49/0x80 [amdgpu]
[37460.680592]  do_vfs_ioctl+0x405/0x660
[37460.680594]  ksys_ioctl+0x5e/0x90
[37460.680595]  __x64_sys_ioctl+0x16/0x20
[37460.680598]  do_syscall_64+0x5f/0x1a0
[37460.680601]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[37460.680603] RIP: 0033:0x7f28607c907b
[37460.680605] Code: 0f 1e fa 48 8b 05 0d 9e 0c 00 64 c7 00 26 00 00 00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d dd 9d 0c 00 f7 d8 64 89 01 48
[37460.680607] RSP: 002b:00007ffead989358 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[37460.680609] RAX: ffffffffffffffda RBX: 00007ffead989390 RCX: 00007f28607c907b
[37460.680610] RDX: 00007ffead989390 RSI: 00000000c01864b0 RDI: 0000000000000009
[37460.680611] RBP: 00000000c01864b0 R08: 000055a27131a430 R09: 000000000000004d
[37460.680612] R10: 000055a26a1e2890 R11: 0000000000000246 R12: 000055a27131a430
[37460.680613] R13: 0000000000000009 R14: 000055a269a7f650 R15: 000055a269a78160
[37766.143110] gnome-shell: page allocation failure: order:4, mode:0x40cc0(GFP_KERNEL|__GFP_COMP), nodemask=(null),cpuset=/,mems_allowed=0
[37766.143116] CPU: 12 PID: 18083 Comm: gnome-shell Not tainted 5.3.0-0.rc3.git0.2.fc31.x86_64 #1
[37766.143118] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[37766.143118] Call Trace:
[37766.143124]  dump_stack+0x5c/0x80
[37766.143127]  warn_alloc.cold+0x7b/0xfb
[37766.143130]  ? _cond_resched+0x15/0x30
[37766.143132]  ? __alloc_pages_direct_compact+0x168/0x170
[37766.143133]  __alloc_pages_slowpath+0xdc4/0xe00
[37766.143136]  __alloc_pages_nodemask+0x2ee/0x340
[37766.143139]  kmalloc_order+0x14/0x30
[37766.143140]  kmalloc_order_trace+0x1d/0xa0
[37766.143142]  kmemdup+0x18/0x40
[37766.143202]  dc_copy_state+0x1d/0x130 [amdgpu]
[37766.143257]  dm_atomic_duplicate_state+0x4f/0x80 [amdgpu]
[37766.143271]  drm_atomic_get_private_obj_state+0xcc/0x140 [drm]
[37766.143333]  dm_determine_update_type_for_commit+0x3a8/0x420 [amdgpu]
[37766.143399]  amdgpu_dm_atomic_check+0x3d9/0x6d0 [amdgpu]
[37766.143411]  drm_atomic_check_only+0x54d/0x780 [drm]
[37766.143423]  ? drm_mode_object_put.part.0+0x1f/0x40 [drm]
[37766.143434]  ? drm_atomic_set_fb_for_plane+0x55/0x80 [drm]
[37766.143448]  drm_atomic_nonblocking_commit+0x13/0x50 [drm]
[37766.143457]  drm_atomic_helper_page_flip+0x5d/0x90 [drm_kms_helper]
[37766.143467]  ? drm_event_reserve_init+0x4c/0x60 [drm]
[37766.143478]  drm_mode_page_flip_ioctl+0x54b/0x5d0 [drm]
[37766.143490]  ? drm_mode_cursor2_ioctl+0x10/0x10 [drm]
[37766.143499]  drm_ioctl_kernel+0xaa/0xf0 [drm]
[37766.143509]  drm_ioctl+0x208/0x390 [drm]
[37766.143520]  ? drm_mode_cursor2_ioctl+0x10/0x10 [drm]
[37766.143564]  amdgpu_drm_ioctl+0x49/0x80 [amdgpu]
[37766.143568]  do_vfs_ioctl+0x405/0x660
[37766.143570]  ksys_ioctl+0x5e/0x90
[37766.143571]  __x64_sys_ioctl+0x16/0x20
[37766.143573]  do_syscall_64+0x5f/0x1a0
[37766.143575]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[37766.143577] RIP: 0033:0x7f28607c907b
[37766.143579] Code: 0f 1e fa 48 8b 05 0d 9e 0c 00 64 c7 00 26 00 00 00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d dd 9d 0c 00 f7 d8 64 89 01 48
[37766.143581] RSP: 002b:00007ffead989358 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[37766.143582] RAX: ffffffffffffffda RBX: 00007ffead989390 RCX: 00007f28607c907b
[37766.143583] RDX: 00007ffead989390 RSI: 00000000c01864b0 RDI: 0000000000000009
[37766.143585] RBP: 00000000c01864b0 R08: 000055a270b2f3a0 R09: 000000000000004d
[37766.143585] R10: 000055a26a1e2890 R11: 0000000000000246 R12: 000055a270b2f3a0
[37766.143586] R13: 0000000000000009 R14: 000055a269a7f650 R15: 000055a269a78160
[37766.143589] warn_alloc_show_mem: 1 callbacks suppressed
[37766.143589] Mem-Info:
[37766.143593] active_anon:6886336 inactive_anon:561394 isolated_anon:44
                active_file:81738 inactive_file:60583 isolated_file:0
                unevictable:28 dirty:682 writeback:0 unstable:0
                slab_reclaimable:79497 slab_unreclaimable:102148
                mapped:389586 shmem:291392 pagetables:66772 bounce:0
                free:55402 free_pcp:1694 free_cma:0
[37766.143596] Node 0 active_anon:27545344kB inactive_anon:2245576kB active_file:326952kB inactive_file:242332kB unevictable:112kB isolated(anon):176kB isolated(file):0kB mapped:1558344kB dirty:2728kB writeback:0kB shmem:1165568kB shmem_thp: 0kB shmem_pmdmapped: 0kB anon_thp: 1906688kB writeback_tmp:0kB unstable:0kB all_unreclaimable? no
[37766.143598] Node 0 DMA free:15892kB min:32kB low:44kB high:56kB active_anon:0kB inactive_anon:0kB active_file:0kB inactive_file:0kB unevictable:0kB writepending:0kB present:15996kB managed:15896kB mlocked:0kB kernel_stack:0kB pagetables:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB
[37766.143601] lowmem_reserve[]: 0 3393 31948 31948 31948
[37766.143603] Node 0 DMA32 free:121388kB min:7172kB low:10644kB high:14116kB active_anon:3018208kB inactive_anon:88540kB active_file:20172kB inactive_file:29180kB unevictable:0kB writepending:40kB present:3575768kB managed:3575580kB mlocked:0kB kernel_stack:692kB pagetables:14192kB bounce:0kB free_pcp:964kB local_pcp:76kB free_cma:0kB
[37766.143606] lowmem_reserve[]: 0 0 28555 28555 28555
[37766.143608] Node 0 Normal free:84328kB min:87000kB low:116240kB high:145480kB active_anon:24527540kB inactive_anon:2156568kB active_file:307240kB inactive_file:213012kB unevictable:112kB writepending:2688kB present:29871616kB managed:29249436kB mlocked:112kB kernel_stack:40540kB pagetables:252896kB bounce:0kB free_pcp:5812kB local_pcp:712kB free_cma:0kB
[37766.143612] lowmem_reserve[]: 0 0 0 0 0
[37766.143613] Node 0 DMA: 1*4kB (U) 0*8kB 1*16kB (U) 0*32kB 2*64kB (U) 1*128kB (U) 1*256kB (U) 0*512kB 1*1024kB (U) 1*2048kB (M) 3*4096kB (M) = 15892kB
[37766.143619] Node 0 DMA32: 5513*4kB (UME) 598*8kB (UME) 257*16kB (UME) 222*32kB (UME) 221*64kB (UME) 83*128kB (UME) 62*256kB (UME) 28*512kB (UME) 19*1024kB (UME) 3*2048kB (UM) 1*4096kB (U) = 122724kB
[37766.143626] Node 0 Normal: 17625*4kB (MEH) 968*8kB (UMEH) 13*16kB (UMEH) 94*32kB (MEH) 30*64kB (MEH) 18*128kB (MH) 2*256kB (H) 0*512kB 0*1024kB 0*2048kB 0*4096kB = 86196kB
[37766.143632] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=1048576kB
[37766.143633] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
[37766.143634] 893952 total pagecache pages
[37766.143641] 459880 pages in swap cache
[37766.143642] Swap cache stats: add 7612631, delete 7154533, find 1322517/2509132
[37766.143642] Free swap  = 52588284kB
[37766.143643] Total swap = 67108860kB
[37766.143643] 8365845 pages RAM
[37766.143644] 0 pages HighMem/MovableOnly
[37766.143644] 155617 pages reserved
[37766.143645] 0 pages cma reserved
[37766.143645] 0 pages hwpoisoned

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

* Re: The issue with page allocation 5.3 rc1-rc2 (seems drm culprit here)
  2019-08-08  3:48 ` The issue with page allocation 5.3 rc1-rc2 (seems drm culprit here) Mikhail Gavrilov
@ 2019-08-08  5:31   ` Alex Deucher
  2019-08-08  8:12     ` Michel Dänzer
  0 siblings, 1 reply; 9+ messages in thread
From: Alex Deucher @ 2019-08-08  5:31 UTC (permalink / raw)
  To: Mikhail Gavrilov
  Cc: Hillf Danton, Dave Airlie, Linux List Kernel Mailing,
	amd-gfx list, Linux Memory Management List, dri-devel, Deucher,
	Alexander, Harry Wentland, Koenig, Christian

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

On Wed, Aug 7, 2019 at 11:49 PM Mikhail Gavrilov
<mikhail.v.gavrilov@gmail.com> wrote:
>
> On Tue, 6 Aug 2019 at 06:48, Hillf Danton <hdanton@sina.com> wrote:
> >
> > My bad, respin with one header file added.
> >
> > Hillf
> > -----8<---
> >
> > --- a/drivers/gpu/drm/amd/display/dc/core/dc.c
> > +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
> > @@ -23,6 +23,7 @@
> >   */
> >
> >  #include <linux/slab.h>
> > +#include <linux/mm.h>
> >
> >  #include "dm_services.h"
> >
> > @@ -1174,8 +1175,12 @@ struct dc_state *dc_create_state(struct
> >         struct dc_state *context = kzalloc(sizeof(struct dc_state),
> >                                            GFP_KERNEL);
> >
> > -       if (!context)
> > -               return NULL;
> > +       if (!context) {
> > +               context = kvzalloc(sizeof(struct dc_state),
> > +                                          GFP_KERNEL);
> > +               if (!context)
> > +                       return NULL;
> > +       }
> >         /* Each context must have their own instance of VBA and in order to
> >          * initialize and obtain IP and SOC the base DML instance from DC is
> >          * initially copied into every context
> > @@ -1195,8 +1200,13 @@ struct dc_state *dc_copy_state(struct dc
> >         struct dc_state *new_ctx = kmemdup(src_ctx,
> >                         sizeof(struct dc_state), GFP_KERNEL);
> >
> > -       if (!new_ctx)
> > -               return NULL;
> > +       if (!new_ctx) {
> > +               new_ctx = kvmalloc(sizeof(*new_ctx), GFP_KERNEL);
> > +               if (new_ctx)
> > +                       *new_ctx = *src_ctx;
> > +               else
> > +                       return NULL;
> > +       }
> >
> >         for (i = 0; i < MAX_PIPES; i++) {
> >                         struct pipe_ctx *cur_pipe = &new_ctx->res_ctx.pipe_ctx[i];
> > @@ -1230,7 +1240,7 @@ static void dc_state_free(struct kref *k
> >  {
> >         struct dc_state *context = container_of(kref, struct dc_state, refcount);
> >         dc_resource_state_destruct(context);
> > -       kfree(context);
> > +       kvfree(context);
> >  }
> >
> >  void dc_release_state(struct dc_state *context)
> > --
> >
>
> Unfortunately error "gnome-shell: page allocation failure: order:4,
> mode:0x40cc0(GFP_KERNEL|__GFP_COMP),
> nodemask=(null),cpuset=/,mems_allowed=0" still happens even with
> applying this patch.

I think we can just drop the kmalloc altogether.  How about this patch?

Alex

>
> Thanks.
>
>
> --
> Best Regards,
> Mike Gavrilov.
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx

[-- Attachment #2: 0001-drm-amd-display-use-kvmalloc-for-dc_state.patch --]
[-- Type: text/x-patch, Size: 1607 bytes --]

From c3ba6f05ca3e0371254fbfb1a8c06274e3cdb96e Mon Sep 17 00:00:00 2001
From: Alex Deucher <alexander.deucher@amd.com>
Date: Thu, 8 Aug 2019 00:29:23 -0500
Subject: [PATCH] drm/amd/display: use kvmalloc for dc_state

It's large and doesn't need contiguous memory.

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
---
 drivers/gpu/drm/amd/display/dc/core/dc.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c
index 252b621d93a9..ef780a4e484a 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
@@ -23,6 +23,7 @@
  */
 
 #include <linux/slab.h>
+#include <linux/mm.h>
 
 #include "dm_services.h"
 
@@ -1183,8 +1184,8 @@ bool dc_post_update_surfaces_to_stream(struct dc *dc)
 
 struct dc_state *dc_create_state(struct dc *dc)
 {
-	struct dc_state *context = kzalloc(sizeof(struct dc_state),
-					   GFP_KERNEL);
+	struct dc_state *context = kvzalloc(sizeof(struct dc_state),
+					    GFP_KERNEL);
 
 	if (!context)
 		return NULL;
@@ -1204,11 +1205,11 @@ struct dc_state *dc_create_state(struct dc *dc)
 struct dc_state *dc_copy_state(struct dc_state *src_ctx)
 {
 	int i, j;
-	struct dc_state *new_ctx = kmemdup(src_ctx,
-			sizeof(struct dc_state), GFP_KERNEL);
+	struct dc_state *new_ctx = kvmalloc(sizeof(struct dc_state), GFP_KERNEL);
 
 	if (!new_ctx)
 		return NULL;
+	memcpy(new_ctx, src_ctx, sizeof(struct dc_state));
 
 	for (i = 0; i < MAX_PIPES; i++) {
 			struct pipe_ctx *cur_pipe = &new_ctx->res_ctx.pipe_ctx[i];
-- 
2.20.1


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

* Re: The issue with page allocation 5.3 rc1-rc2 (seems drm culprit here)
  2019-08-08  5:31   ` Alex Deucher
@ 2019-08-08  8:12     ` Michel Dänzer
  2019-08-08 14:26       ` Alex Deucher
  0 siblings, 1 reply; 9+ messages in thread
From: Michel Dänzer @ 2019-08-08  8:12 UTC (permalink / raw)
  To: Alex Deucher, Mikhail Gavrilov
  Cc: Hillf Danton, Harry Wentland, Linux List Kernel Mailing,
	dri-devel, Linux Memory Management List, amd-gfx list, Deucher,
	Alexander, Dave Airlie, Koenig, Christian

On 2019-08-08 7:31 a.m., Alex Deucher wrote:
> On Wed, Aug 7, 2019 at 11:49 PM Mikhail Gavrilov
> <mikhail.v.gavrilov@gmail.com> wrote:
>>
>> Unfortunately error "gnome-shell: page allocation failure: order:4,
>> mode:0x40cc0(GFP_KERNEL|__GFP_COMP),
>> nodemask=(null),cpuset=/,mems_allowed=0" still happens even with
>> applying this patch.
> 
> I think we can just drop the kmalloc altogether.  How about this patch?

Memory allocated by kvz/malloc needs to be freed with kvfree.


-- 
Earthling Michel Dänzer               |              https://www.amd.com
Libre software enthusiast             |             Mesa and X developer

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

* Re: The issue with page allocation 5.3 rc1-rc2 (seems drm culprit here)
  2019-08-08  8:12     ` Michel Dänzer
@ 2019-08-08 14:26       ` Alex Deucher
  2019-08-09 18:55         ` Mikhail Gavrilov
  0 siblings, 1 reply; 9+ messages in thread
From: Alex Deucher @ 2019-08-08 14:26 UTC (permalink / raw)
  To: Michel Dänzer
  Cc: Mikhail Gavrilov, Hillf Danton, Dave Airlie,
	Linux List Kernel Mailing, amd-gfx list,
	Linux Memory Management List, dri-devel, Deucher, Alexander,
	Harry Wentland, Koenig, Christian

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

On Thu, Aug 8, 2019 at 4:13 AM Michel Dänzer <michel@daenzer.net> wrote:
>
> On 2019-08-08 7:31 a.m., Alex Deucher wrote:
> > On Wed, Aug 7, 2019 at 11:49 PM Mikhail Gavrilov
> > <mikhail.v.gavrilov@gmail.com> wrote:
> >>
> >> Unfortunately error "gnome-shell: page allocation failure: order:4,
> >> mode:0x40cc0(GFP_KERNEL|__GFP_COMP),
> >> nodemask=(null),cpuset=/,mems_allowed=0" still happens even with
> >> applying this patch.
> >
> > I think we can just drop the kmalloc altogether.  How about this patch?
>
> Memory allocated by kvz/malloc needs to be freed with kvfree.
>

Yup, good catch.  Updated patch attached.

Alex

[-- Attachment #2: 0001-drm-amd-display-use-kvmalloc-for-dc_state-v2.patch --]
[-- Type: text/x-patch, Size: 1915 bytes --]

From 5c27c25ce79ac2b18a37bcd7dc6fa0bd3d8733d3 Mon Sep 17 00:00:00 2001
From: Alex Deucher <alexander.deucher@amd.com>
Date: Thu, 8 Aug 2019 00:29:23 -0500
Subject: [PATCH] drm/amd/display: use kvmalloc for dc_state (v2)

It's large and doesn't need contiguous memory.

v2: kvfree the memory.

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
---
 drivers/gpu/drm/amd/display/dc/core/dc.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c
index 252b621d93a9..21fb7ee17c9c 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
@@ -23,6 +23,7 @@
  */
 
 #include <linux/slab.h>
+#include <linux/mm.h>
 
 #include "dm_services.h"
 
@@ -1183,8 +1184,8 @@ bool dc_post_update_surfaces_to_stream(struct dc *dc)
 
 struct dc_state *dc_create_state(struct dc *dc)
 {
-	struct dc_state *context = kzalloc(sizeof(struct dc_state),
-					   GFP_KERNEL);
+	struct dc_state *context = kvzalloc(sizeof(struct dc_state),
+					    GFP_KERNEL);
 
 	if (!context)
 		return NULL;
@@ -1204,11 +1205,11 @@ struct dc_state *dc_create_state(struct dc *dc)
 struct dc_state *dc_copy_state(struct dc_state *src_ctx)
 {
 	int i, j;
-	struct dc_state *new_ctx = kmemdup(src_ctx,
-			sizeof(struct dc_state), GFP_KERNEL);
+	struct dc_state *new_ctx = kvmalloc(sizeof(struct dc_state), GFP_KERNEL);
 
 	if (!new_ctx)
 		return NULL;
+	memcpy(new_ctx, src_ctx, sizeof(struct dc_state));
 
 	for (i = 0; i < MAX_PIPES; i++) {
 			struct pipe_ctx *cur_pipe = &new_ctx->res_ctx.pipe_ctx[i];
@@ -1242,7 +1243,7 @@ static void dc_state_free(struct kref *kref)
 {
 	struct dc_state *context = container_of(kref, struct dc_state, refcount);
 	dc_resource_state_destruct(context);
-	kfree(context);
+	kvfree(context);
 }
 
 void dc_release_state(struct dc_state *context)
-- 
2.20.1


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

* Re: The issue with page allocation 5.3 rc1-rc2 (seems drm culprit here)
  2019-08-08 14:26       ` Alex Deucher
@ 2019-08-09 18:55         ` Mikhail Gavrilov
  2019-08-10 16:08           ` Mikhail Gavrilov
  0 siblings, 1 reply; 9+ messages in thread
From: Mikhail Gavrilov @ 2019-08-09 18:55 UTC (permalink / raw)
  To: Alex Deucher
  Cc: Michel Dänzer, Hillf Danton, Dave Airlie,
	Linux List Kernel Mailing, amd-gfx list,
	Linux Memory Management List, dri-devel, Deucher, Alexander,
	Harry Wentland, Koenig, Christian

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

On Thu, 8 Aug 2019 at 19:26, Alex Deucher <alexdeucher@gmail.com> wrote:
>
>
> Yup, good catch.  Updated patch attached.
>
> Alex

Finally initial problem "gnome-shell: page allocation failure:
order:4, mode:0x40cc0(GFP_KERNEL|__GFP_COMP),
nodemask=(null),cpuset=/,mems_allowed=0" did not happens anymore with
latest version of the patch (I tested more than 23 hours)

But I hit a new problem:

[73808.088801] ------------[ cut here ]------------
[73808.088806] DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock)
[73808.088813] WARNING: CPU: 8 PID: 1348877 at
kernel/locking/mutex.c:757 __ww_mutex_lock.constprop.0+0xb0f/0x10c0
[73808.088815] Modules linked in: crypto_user sha512_ssse3
sha512_generic macvtap macvlan tap rfcomm xt_CHECKSUM xt_MASQUERADE
nf_nat_tftp nf_conntrack_tftp tun bridge stp llc
nf_conntrack_netbios_ns nf_conntrack_broadcast xt_CT ip6t_REJECT
nf_reject_ipv6 ip6t_rpfilter ipt_REJECT nf_reject_ipv4 xt_conntrack
ebtable_nat ip6table_nat ip6table_mangle ip6table_raw
ip6table_security iptable_nat nf_nat iptable_mangle iptable_raw
iptable_security nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c
ip_set nfnetlink ebtable_filter ebtables ip6table_filter ip6_tables
iptable_filter cmac bnep sunrpc vfat fat snd_hda_codec_realtek
snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi edac_mce_amd
kvm_amd snd_hda_intel snd_usb_audio snd_hda_codec rtwpci
snd_usbmidi_lib rtw88 kvm snd_rawmidi uvcvideo snd_hda_core xpad
snd_hwdep videobuf2_vmalloc mac80211 ff_memless irqbypass
videobuf2_memops snd_seq videobuf2_v4l2 snd_seq_device
videobuf2_common crct10dif_pclmul btusb crc32_pclmul snd_pcm btrtl
videodev
[73808.088845]  cfg80211 btbcm btintel eeepc_wmi asus_wmi bluetooth
ghash_clmulni_intel joydev sparse_keymap mc wmi_bmof video k10temp
sp5100_tco snd_timer snd ecdh_generic soundcore i2c_piix4 ccp rfkill
libarc4 ecc gpio_amdpt gpio_generic acpi_cpufreq binfmt_misc ip_tables
hid_logitech_hidpp amdgpu amd_iommu_v2 gpu_sched ttm drm_kms_helper
drm igb crc32c_intel nvme dca i2c_algo_bit hid_logitech_dj nvme_core
wmi pinctrl_amd
[73808.088866] CPU: 8 PID: 1348877 Comm: Youngblood_x64v Not tainted
5.3.0-0.rc3.git1.2.fc31.x86_64 #1
[73808.088868] Hardware name: System manufacturer System Product
Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[73808.088871] RIP: 0010:__ww_mutex_lock.constprop.0+0xb0f/0x10c0
[73808.088873] Code: 28 00 74 28 e8 42 29 a6 ff 85 c0 74 1f 8b 05 f8
6a e0 00 85 c0 75 15 48 c7 c6 70 35 32 a5 48 c7 c7 f0 67 30 a5 e8 e9
84 5c ff <0f> 0b 4d 89 74 24 28 b8 dd ff ff ff 65 48 8b 14 25 40 8e 01
00 48
[73808.088876] RSP: 0018:ffffbe618c84b760 EFLAGS: 00010286
[73808.088878] RAX: 0000000000000000 RBX: ffff96f007450000 RCX: 0000000000000000
[73808.088880] RDX: 0000000000000002 RSI: 0000000000000001 RDI: 0000000000000246
[73808.088881] RBP: ffffbe618c84b820 R08: 0000000000000000 R09: 0000000000000000
[73808.088883] R10: ffffffffa6d3f740 R11: 00000000a6d3f373 R12: ffffbe618c84bb90
[73808.088884] R13: ffffbe618c84b7c0 R14: ffff96f6967d4258 R15: ffff96f6967d4260
[73808.088886] FS:  00000000078c3700(0000) GS:ffff96f6fb000000(0000)
knlGS:00007fffffe6c000
[73808.088888] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[73808.088890] CR2: 00007fc785db1000 CR3: 00000007a5f56000 CR4: 00000000003406e0
[73808.088892] Call Trace:
[73808.088896]  ? _raw_spin_unlock_irq+0x29/0x40
[73808.088904]  ? ttm_mem_evict_first+0x1ed/0x4f0 [ttm]
[73808.088908]  ? ww_mutex_lock_interruptible+0x43/0xb0
[73808.088910]  ww_mutex_lock_interruptible+0x43/0xb0
[73808.088916]  ttm_mem_evict_first+0x1ed/0x4f0 [ttm]
[73808.088922]  ttm_bo_mem_space+0x229/0x2c0 [ttm]
[73808.088928]  ttm_bo_validate+0xe5/0x190 [ttm]
[73808.088933]  ? lockdep_hardirqs_on+0xf0/0x180
[73808.088983]  amdgpu_cs_bo_validate+0xaa/0x1b0 [amdgpu]
[73808.089033]  amdgpu_cs_validate+0x3b/0x260 [amdgpu]
[73808.089081]  amdgpu_cs_list_validate+0x110/0x180 [amdgpu]
[73808.089130]  amdgpu_cs_ioctl+0x5a9/0x1d10 [amdgpu]
[73808.089188]  ? amdgpu_cs_find_mapping+0x120/0x120 [amdgpu]
[73808.089200]  drm_ioctl_kernel+0xaa/0xf0 [drm]
[73808.089212]  drm_ioctl+0x208/0x390 [drm]
[73808.089258]  ? amdgpu_cs_find_mapping+0x120/0x120 [amdgpu]
[73808.089262]  ? sched_clock_cpu+0xc/0xc0
[73808.089265]  ? lockdep_hardirqs_on+0xf0/0x180
[73808.089308]  amdgpu_drm_ioctl+0x49/0x80 [amdgpu]
[73808.089313]  do_vfs_ioctl+0x411/0x750
[73808.089318]  ksys_ioctl+0x5e/0x90
[73808.089320]  __x64_sys_ioctl+0x16/0x20
[73808.089323]  do_syscall_64+0x5c/0xb0
[73808.089325]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[73808.089328] RIP: 0033:0x7f6b3167b07b
[73808.089330] Code: 0f 1e fa 48 8b 05 0d 9e 0c 00 64 c7 00 26 00 00
00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00
00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d dd 9d 0c 00 f7 d8 64 89
01 48
[73808.089331] RSP: 002b:00000000078bbce8 EFLAGS: 00000246 ORIG_RAX:
0000000000000010
[73808.089333] RAX: ffffffffffffffda RBX: 00000000078bbd60 RCX: 00007f6b3167b07b
[73808.089335] RDX: 00000000078bbd60 RSI: 00000000c0186444 RDI: 0000000000000103
[73808.089336] RBP: 00000000c0186444 R08: 00000000078bbe70 R09: 0000000000000030
[73808.089337] R10: 00000000078bbe70 R11: 0000000000000246 R12: 0000000000000004
[73808.089338] R13: 0000000000000103 R14: 0000000000000000 R15: 0000000000000000
[73808.089343] irq event stamp: 85143093
[73808.089346] hardirqs last  enabled at (85143093):
[<ffffffffa4b24d19>] _raw_spin_unlock_irq+0x29/0x40
[73808.089348] hardirqs last disabled at (85143092):
[<ffffffffa4b1d188>] __schedule+0xc8/0x900
[73808.089350] softirqs last  enabled at (85140666):
[<ffffffffa4e0035d>] __do_softirq+0x35d/0x45d
[73808.089353] softirqs last disabled at (85140569):
[<ffffffffa40f1e37>] irq_exit+0xf7/0x100
[73808.089355] ---[ end trace 14afc4859d6718ca ]---

So I needed to report it separately (in another thread) or we continue here?

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: dmesg.txt --]
[-- Type: text/plain; charset="US-ASCII"; name="dmesg.txt", Size: 245305 bytes --]

[    0.000000] Linux version 5.3.0-0.rc3.git1.2.fc31.x86_64 (mockbuild@1feaf1d34efe4a7e85267f02a7a42eb4) (gcc version 9.1.1 20190605 (Red Hat 9.1.1-2) (GCC)) #1 SMP Thu Aug 8 22:50:33 +05 2019
[    0.000000] Command line: BOOT_IMAGE=(hd2,gpt2)/boot/vmlinuz-5.3.0-0.rc3.git1.2.fc31.x86_64 root=UUID=cb6dee31-3eff-4a36-aa1b-890117330f8c ro resume=UUID=9c126bde-fad1-467c-8a1b-472db1d9a6a8 rhgb log_buf_len=16M sysrq_always_enabled=1 nmi_watchdog=1 pci=noaer memblock=debug amdgpu.lockup_timeout=-1
[    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: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20b000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b020000-0x00000000d8ae7fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000d8ae8000-0x00000000db3e6fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000db3e7000-0x00000000db40ffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000db410000-0x00000000db8c5fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000db8c6000-0x00000000dc3c6fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dc3c7000-0x00000000deffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd100000-0x00000000fd1fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000081f37ffff] usable
[    0.000000] memblock_reserve: [0x00000000cf6d2018-0x00000000cf6d2977] efi_memblock_x86_reserve_range+0x173/0x194
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] memblock_reserve: [0x00000000cf6ee018-0x00000000cf6ff057] setup_arch+0x3c5/0xcb2
[    0.000000] memblock_reserve: [0x00000000cf6d4018-0x00000000cf6ed057] setup_arch+0x3c5/0xcb2
[    0.000000] e820: update [mem 0xcf6ee018-0xcf6ff057] usable ==> usable
[    0.000000] e820: update [mem 0xcf6ee018-0xcf6ff057] usable ==> usable
[    0.000000] e820: update [mem 0xcf6d4018-0xcf6ed057] usable ==> usable
[    0.000000] e820: update [mem 0xcf6d4018-0xcf6ed057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000a20b000-0x000000000affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000b020000-0x00000000cf6d4017] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf6d4018-0x00000000cf6ed057] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf6ed058-0x00000000cf6ee017] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf6ee018-0x00000000cf6ff057] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf6ff058-0x00000000d8ae7fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000d8ae8000-0x00000000db3e6fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000db3e7000-0x00000000db40ffff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000db410000-0x00000000db8c5fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000db8c6000-0x00000000dc3c6fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000dc3c7000-0x00000000deffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000df000000-0x00000000dfffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd100000-0x00000000fd1fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000081f37ffff] usable
[    0.000000] efi: EFI v2.60 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0xdb3ef000  ACPI=0xdb3ef000  SMBIOS=0xdc289000  SMBIOS 3.0=0xdc288000  ESRT=0xd62fcc18  MEMATTR=0xd6355018 
[    0.000000] memblock_reserve: [0x00000000d6355018-0x00000000d6355687] efi_memattr_init+0x75/0x8f
[    0.000000] secureboot: Secure boot disabled
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] last_pfn = 0x81f380 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF write-through
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFE0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000820000000 aka 33280M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[    0.000000] last_pfn = 0xdf000 max_arch_pfn = 0x400000000
[    0.000000] memblock_reserve: [0x00000001d7400000-0x00000001d740cfff] setup_arch+0x5e9/0xcb2
[    0.000000] memblock_add: [0x0000000000001000-0x000000000009ffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x0000000000100000-0x0000000009cfffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x000000000a000000-0x000000000a1fffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x000000000a20b000-0x000000000affffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x000000000b020000-0x00000000cf6d4017] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf6d4018-0x00000000cf6ed057] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf6ed058-0x00000000cf6ee017] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf6ee018-0x00000000cf6ff057] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf6ff058-0x00000000d8ae7fff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000dc3c7000-0x00000000deffffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x0000000100000000-0x000000081f37ffff] e820__memblock_setup+0x44/0x63
[    0.000000] MEMBLOCK configuration:
[    0.000000]  memory size = 0x00000007fa715000 reserved size = 0x00000000056a1050
[    0.000000]  memory.cnt  = 0x7
[    0.000000]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes flags: 0x0
[    0.000000]  memory[0x1]	[0x0000000000100000-0x0000000009cfffff], 0x0000000009c00000 bytes flags: 0x0
[    0.000000]  memory[0x2]	[0x000000000a000000-0x000000000a1fffff], 0x0000000000200000 bytes flags: 0x0
[    0.000000]  memory[0x3]	[0x000000000a20b000-0x000000000affffff], 0x0000000000df5000 bytes flags: 0x0
[    0.000000]  memory[0x4]	[0x000000000b020000-0x00000000d8ae7fff], 0x00000000cdac8000 bytes flags: 0x0
[    0.000000]  memory[0x5]	[0x00000000dc3c7000-0x00000000deffffff], 0x0000000002c39000 bytes flags: 0x0
[    0.000000]  memory[0x6]	[0x0000000100000000-0x000000081f37ffff], 0x000000071f380000 bytes flags: 0x0
[    0.000000]  reserved.cnt  = 0x7
[    0.000000]  reserved[0x0]	[0x0000000000000000-0x0000000000000fff], 0x0000000000001000 bytes flags: 0x0
[    0.000000]  reserved[0x1]	[0x0000000059f0f000-0x000000005c176fff], 0x0000000002268000 bytes flags: 0x0
[    0.000000]  reserved[0x2]	[0x00000000cf6d2018-0x00000000cf6d2977], 0x0000000000000960 bytes flags: 0x0
[    0.000000]  reserved[0x3]	[0x00000000cf6d4018-0x00000000cf6ed057], 0x0000000000019040 bytes flags: 0x0
[    0.000000]  reserved[0x4]	[0x00000000cf6ee018-0x00000000cf6ff057], 0x0000000000011040 bytes flags: 0x0
[    0.000000]  reserved[0x5]	[0x00000000d6355018-0x00000000d6355687], 0x0000000000000670 bytes flags: 0x0
[    0.000000]  reserved[0x6]	[0x00000001d4000000-0x00000001d740cfff], 0x000000000340d000 bytes flags: 0x0
[    0.000000] memblock_reserve: [0x000000000009d400-0x00000000000fffff] setup_arch+0x60d/0xcb2
[    0.000000] esrt: Reserving ESRT space from 0x00000000d62fcc18 to 0x00000000d62fcc50.
[    0.000000] memblock_reserve: [0x00000000d62fcc18-0x00000000d62fcc4f] efi_mem_reserve+0x22/0x30
[    0.000000] memblock_reserve: [0x000000000009ca40-0x000000000009d3ff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_reserve: [0x000000000003f000-0x000000000003ffff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x0000000001000000-0x000000000101ffff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x00000000cfc68000-0x00000000d62fbfff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x00000000d7f03000-0x00000000d8ae7fff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x00000000dc3c7000-0x00000000deffffff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x0000000000001000-0x000000000000ffff] setup_bios_corruption_check+0x133/0x1ab
[    0.000000] check: Scanning 1 areas for low memory corruption
[    0.000000] memblock_reserve: [0x0000000000096000-0x000000000009bfff] reserve_real_mode+0x7b/0x8d
[    0.000000] memblock_reserve: [0x0000000000000000-0x000000000000ffff] setup_arch+0x658/0xcb2
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x1d7401000, 0x1d7401fff] PGTABLE
[    0.000000] BRK [0x1d7402000, 0x1d7402fff] PGTABLE
[    0.000000] BRK [0x1d7403000, 0x1d7403fff] PGTABLE
[    0.000000] BRK [0x1d7404000, 0x1d7404fff] PGTABLE
[    0.000000] BRK [0x1d7405000, 0x1d7405fff] PGTABLE
[    0.000000] BRK [0x1d7406000, 0x1d7406fff] PGTABLE
[    0.000000] BRK [0x1d7407000, 0x1d7407fff] PGTABLE
[    0.000000] BRK [0x1d7408000, 0x1d7408fff] PGTABLE
[    0.000000] BRK [0x1d7409000, 0x1d7409fff] PGTABLE
[    0.000000] BRK [0x1d740a000, 0x1d740afff] PGTABLE
[    0.000000] BRK [0x1d740b000, 0x1d740bfff] PGTABLE
[    0.000000] BRK [0x1d740c000, 0x1d740cfff] PGTABLE
[    0.000000] memblock_alloc_try_nid: 16777216 bytes align=0x4 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 setup_log_buf+0xa4/0x187
[    0.000000] memblock_reserve: [0x000000081e380000-0x000000081f37ffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] printk: log_buf_len: 16777216 bytes
[    0.000000] printk: early log buf free: 248384(94%)
[    0.000000] RAMDISK: [mem 0x59f0f000-0x5c176fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000DB3EF000 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000DB3EF098 0000AC (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000DB3FDB78 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000DB3EF1E0 00E998 (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.000000] ACPI: FACS 0x00000000DB8ADD80 000040
[    0.000000] ACPI: APIC 0x00000000DB3FDC90 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000DB3FDDF0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x00000000DB3FDE38 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DB3FDED8 0000FC (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
[    0.000000] ACPI: SSDT 0x00000000DB3FDFD8 008C98 (v02 AMD    AMD ALIB 00000002 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x00000000DB406C70 00322C (v01 AMD    AMD AOD  00000001 INTL 20120913)
[    0.000000] ACPI: MCFG 0x00000000DB409EA0 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.000000] ACPI: SSDT 0x00000000DB40F098 0000BF (v01 AMD    AMD PT   00001000 INTL 20120913)
[    0.000000] ACPI: HPET 0x00000000DB409F38 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.000000] ACPI: SSDT 0x00000000DB409F70 000024 (v01 AMDFCH FCHZP    00001000 INTL 20120913)
[    0.000000] ACPI: UEFI 0x00000000DB409F98 000042 (v01 ALASKA A M I    00000002      01000013)
[    0.000000] ACPI: IVRS 0x00000000DB409FE0 0000D0 (v02 AMD    AMD IVRS 00000001 AMD  00000000)
[    0.000000] ACPI: SSDT 0x00000000DB40A0B0 002314 (v01 AMD    AMD CPU  00000001 AMD  00000001)
[    0.000000] ACPI: CRAT 0x00000000DB40C3C8 000F50 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
[    0.000000] ACPI: CDIT 0x00000000DB40D318 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x00000000DB40D348 001D4A (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000081f37ffff]
[    0.000000] memblock_reserve: [0x000000081e355000-0x000000081e37ffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] NODE_DATA(0) allocated [mem 0x81e355000-0x81e37ffff]
[    0.000000] MEMBLOCK configuration:
[    0.000000]  memory size = 0x00000007fa715000 reserved size = 0x0000000010617648
[    0.000000]  memory.cnt  = 0x7
[    0.000000]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x1]	[0x0000000000100000-0x0000000009cfffff], 0x0000000009c00000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x2]	[0x000000000a000000-0x000000000a1fffff], 0x0000000000200000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x3]	[0x000000000a20b000-0x000000000affffff], 0x0000000000df5000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x4]	[0x000000000b020000-0x00000000d8ae7fff], 0x00000000cdac8000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x5]	[0x00000000dc3c7000-0x00000000deffffff], 0x0000000002c39000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x6]	[0x0000000100000000-0x000000081f37ffff], 0x000000071f380000 bytes on node 0 flags: 0x0
[    0.000000]  reserved.cnt  = 0x11
[    0.000000]  reserved[0x0]	[0x0000000000000000-0x000000000000ffff], 0x0000000000010000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x1]	[0x000000000003f000-0x000000000003ffff], 0x0000000000001000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x2]	[0x0000000000096000-0x000000000009bfff], 0x0000000000006000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x3]	[0x000000000009ca40-0x00000000000fffff], 0x00000000000635c0 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x4]	[0x0000000001000000-0x000000000101ffff], 0x0000000000020000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x5]	[0x0000000059f0f000-0x000000005c176fff], 0x0000000002268000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x6]	[0x00000000cf6d2018-0x00000000cf6d2977], 0x0000000000000960 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x7]	[0x00000000cf6d4018-0x00000000cf6ed057], 0x0000000000019040 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x8]	[0x00000000cf6ee018-0x00000000cf6ff057], 0x0000000000011040 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x9]	[0x00000000cfc68000-0x00000000d62fbfff], 0x0000000006694000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xa]	[0x00000000d62fcc18-0x00000000d62fcc4f], 0x0000000000000038 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xb]	[0x00000000d6355018-0x00000000d6355687], 0x0000000000000670 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xc]	[0x00000000d7f03000-0x00000000d8ae7fff], 0x0000000000be5000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xd]	[0x00000000dc3c7000-0x00000000deffffff], 0x0000000002c39000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xe]	[0x00000001d4000000-0x00000001d740cfff], 0x000000000340d000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xf]	[0x000000081e355000-0x000000081e37ffff], 0x000000000002b000 bytes flags: 0x0
[    0.000000]  reserved[0x10]	[0x000000081e380000-0x000000081f37ffff], 0x0000000001000000 bytes on node 0 flags: 0x0
[    0.000000] memblock_alloc_try_nid: 16384 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 memory_present+0x3e/0x107
[    0.000000] memblock_reserve: [0x000000081e351000-0x000000081e354fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x44/0x67
[    0.000000] memblock_reserve: [0x000000081e350000-0x000000081e350fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x44/0x67
[    0.000000] memblock_reserve: [0x000000081e34f000-0x000000081e34ffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 10240 bytes align=0x40 nid=0 from=0x0000000818000000 max_addr=0x0000000820000000 sparse_init_nid+0x8a/0x42e
[    0.000000] memblock_reserve: [0x000000081e34c800-0x000000081e34efff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid_raw: 536870912 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x13a/0x42e
[    0.000000] memblock_reserve: [0x00000007fe34c000-0x000000081e34bfff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.0+0xc/0x24
[    0.000000] memblock_reserve: [0x00000007fe34b000-0x00000007fe34bfff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.0+0xc/0x24
[    0.000000] memblock_reserve: [0x00000007fe34a000-0x00000007fe34afff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid_raw: 2097152 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_populate+0x12a/0x2d1
[    0.000000] memblock_reserve: [0x00000007fe000000-0x00000007fe1fffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000]    memblock_free: [0x000000081e200000-0x000000081e34bfff] sparse_init_nid+0x38e/0x42e
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000081f37ffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000009cfffff]
[    0.000000]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.000000]   node   0: [mem 0x000000000a20b000-0x000000000affffff]
[    0.000000]   node   0: [mem 0x000000000b020000-0x00000000d8ae7fff]
[    0.000000]   node   0: [mem 0x00000000dc3c7000-0x00000000deffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000081f37ffff]
[    0.000000] Zeroed struct page in unavailable ranges: 19563 pages
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000081f37ffff]
[    0.000000] On node 0 totalpages: 8365845
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 26 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13968 pages used for memmap
[    0.000000]   DMA32 zone: 893942 pages, LIFO batch:63
[    0.000000]   Normal zone: 116686 pages used for memmap
[    0.000000]   Normal zone: 7467904 pages, LIFO batch:63
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.000000] memblock_alloc_try_nid: 73 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 acpi_parse_hpet+0xca/0x132
[    0.000000] memblock_reserve: [0x000000081e34c780-0x000000081e34c7c8] memblock_alloc_range_nid+0xad/0x129
[    0.000000] smpboot: Allowing 32 CPUs, 16 hotplug CPUs
[    0.000000] memblock_alloc_try_nid: 150 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 io_apic_init_mappings+0x38/0x1c2
[    0.000000] memblock_reserve: [0x000000081e34c6c0-0x000000081e34c755] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 2176 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 e820__reserve_resources+0x2c/0x163
[    0.000000] memblock_reserve: [0x000000081e34be40-0x000000081e34c6bf] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bdc0-0x000000081e34be27] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bd40-0x000000081e34bda7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bcc0-0x000000081e34bd27] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bc40-0x000000081e34bca7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bbc0-0x000000081e34bc27] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bb40-0x000000081e34bba7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bac0-0x000000081e34bb27] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34ba40-0x000000081e34baa7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b9c0-0x000000081e34ba27] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b940-0x000000081e34b9a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b8c0-0x000000081e34b927] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b840-0x000000081e34b8a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b7c0-0x000000081e34b827] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b740-0x000000081e34b7a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b6c0-0x000000081e34b727] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b640-0x000000081e34b6a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b5c0-0x000000081e34b627] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b540-0x000000081e34b5a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b4c0-0x000000081e34b527] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b440-0x000000081e34b4a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b3c0-0x000000081e34b427] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b340-0x000000081e34b3a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b2c0-0x000000081e34b327] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b240-0x000000081e34b2a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b1c0-0x000000081e34b227] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b140-0x000000081e34b1a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b0c0-0x000000081e34b127] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b040-0x000000081e34b0a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34afc0-0x000000081e34b027] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34af80-0x000000081e34af9f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34af40-0x000000081e34af5f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34af00-0x000000081e34af1f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0x09d00000-0x09ffffff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34aec0-0x000000081e34aedf] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0x0a200000-0x0a20afff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ae80-0x000000081e34ae9f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ae40-0x000000081e34ae5f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0xcf6d4000-0xcf6d4fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ae00-0x000000081e34ae1f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0xcf6ed000-0xcf6edfff]
[    0.000000] PM: Registered nosave memory: [mem 0xcf6ee000-0xcf6eefff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34adc0-0x000000081e34addf] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0xcf6ff000-0xcf6fffff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ad80-0x000000081e34ad9f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0xd8ae8000-0xdb3e6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb3e7000-0xdb40ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb410000-0xdb8c5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb8c6000-0xdc3c6fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ad40-0x000000081e34ad5f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0xdf000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfd0fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfd100000-0xfd1fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfd200000-0xfe9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd6000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] [mem 0xe0000000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] memblock_alloc_try_nid: 274 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xcb/0x59b
[    0.000000] memblock_reserve: [0x000000081e34ac00-0x000000081e34ad11] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 274 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xdf/0x59b
[    0.000000] memblock_reserve: [0x000000081e34aac0-0x000000081e34abd1] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 274 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xf3/0x59b
[    0.000000] memblock_reserve: [0x000000081e34a980-0x000000081e34aa91] memblock_alloc_range_nid+0xad/0x129
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_alloc_info+0x3b/0x6c
[    0.000000] memblock_reserve: [0x000000081e349000-0x000000081e349fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_embed_first_chunk+0x71/0x2ee
[    0.000000] memblock_reserve: [0x000000081e348000-0x000000081e348fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 67108864 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xfa/0x14f
[    0.000000] memblock_reserve: [0x00000007fa000000-0x00000007fdffffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000]    memblock_free: [0x00000007fa1f9000-0x00000007fa1fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fa3f9000-0x00000007fa3fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fa5f9000-0x00000007fa5fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fa7f9000-0x00000007fa7fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fa9f9000-0x00000007fa9fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fabf9000-0x00000007fabfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fadf9000-0x00000007fadfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007faff9000-0x00000007faffffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fb1f9000-0x00000007fb1fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fb3f9000-0x00000007fb3fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fb5f9000-0x00000007fb5fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fb7f9000-0x00000007fb7fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fb9f9000-0x00000007fb9fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fbbf9000-0x00000007fbbfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fbdf9000-0x00000007fbdfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fbff9000-0x00000007fbffffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fc1f9000-0x00000007fc1fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fc3f9000-0x00000007fc3fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fc5f9000-0x00000007fc5fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fc7f9000-0x00000007fc7fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fc9f9000-0x00000007fc9fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fcbf9000-0x00000007fcbfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fcdf9000-0x00000007fcdfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fcff9000-0x00000007fcffffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fd1f9000-0x00000007fd1fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fd3f9000-0x00000007fd3fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fd5f9000-0x00000007fd5fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fd7f9000-0x00000007fd7fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fd9f9000-0x00000007fd9fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fdbf9000-0x00000007fdbfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fddf9000-0x00000007fddfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fdff9000-0x00000007fdffffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000] percpu: Embedded 505 pages/cpu s2031616 r8192 d28672 u2097152
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x2f2/0x7cb
[    0.000000] memblock_reserve: [0x000000081e34a940-0x000000081e34a947] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x325/0x7cb
[    0.000000] memblock_reserve: [0x000000081e34a900-0x000000081e34a907] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 128 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x345/0x7cb
[    0.000000] memblock_reserve: [0x000000081e34a880-0x000000081e34a8ff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 256 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x37f/0x7cb
[    0.000000] memblock_reserve: [0x000000081e34a780-0x000000081e34a87f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] pcpu-alloc: s2031616 r8192 d28672 u2097152 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 
[    0.000000] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 
[    0.000000] pcpu-alloc: [0] 16 [0] 17 [0] 18 [0] 19 [0] 20 [0] 21 [0] 22 [0] 23 
[    0.000000] pcpu-alloc: [0] 24 [0] 25 [0] 26 [0] 27 [0] 28 [0] 29 [0] 30 [0] 31 
[    0.000000] memblock_alloc_try_nid: 336 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x641/0x7cb
[    0.000000] memblock_reserve: [0x000000081e34a600-0x000000081e34a74f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 121 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x78/0x249
[    0.000000] memblock_reserve: [0x000000081e34a580-0x000000081e34a5f8] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 256 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xcf/0x249
[    0.000000] memblock_reserve: [0x000000081e34a480-0x000000081e34a57f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 264 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x10e/0x249
[    0.000000] memblock_reserve: [0x000000081e34a340-0x000000081e34a447] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 64 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x12e/0x249
[    0.000000] memblock_reserve: [0x000000081e34a300-0x000000081e34a33f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 121 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x78/0x249
[    0.000000] memblock_reserve: [0x000000081e34a280-0x000000081e34a2f8] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 896 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xcf/0x249
[    0.000000] memblock_reserve: [0x000000081e347c80-0x000000081e347fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 904 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x10e/0x249
[    0.000000] memblock_reserve: [0x000000081e3478c0-0x000000081e347c47] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 224 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x12e/0x249
[    0.000000] memblock_reserve: [0x000000081e34a180-0x000000081e34a25f] memblock_alloc_range_nid+0xad/0x129
[    0.000000]    memblock_free: [0x000000081e349000-0x000000081e349fff] pcpu_embed_first_chunk+0x2a9/0x2ee
[    0.000000]    memblock_free: [0x000000081e348000-0x000000081e348fff] pcpu_embed_first_chunk+0x2dc/0x2ee
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a140-0x000000081e34a147] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a100-0x000000081e34a107] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a0c0-0x000000081e34a0c7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a080-0x000000081e34a087] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a040-0x000000081e34a047] memblock_alloc_range_nid+0xad/0x129
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8235101
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=(hd2,gpt2)/boot/vmlinuz-5.3.0-0.rc3.git1.2.fc31.x86_64 root=UUID=cb6dee31-3eff-4a36-aa1b-890117330f8c ro resume=UUID=9c126bde-fad1-467c-8a1b-472db1d9a6a8 rhgb log_buf_len=16M sysrq_always_enabled=1 nmi_watchdog=1 pci=noaer memblock=debug amdgpu.lockup_timeout=-1
[    0.000000] sysrq: sysrq always enabled.
[    0.000000] memblock_alloc_try_nid: 33554432 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_large_system_hash+0x181/0x2bc
[    0.000000] memblock_reserve: [0x00000007f8000000-0x00000007f9ffffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] memblock_alloc_try_nid: 16777216 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_large_system_hash+0x181/0x2bc
[    0.000000] memblock_reserve: [0x00000007f7000000-0x00000007f7ffffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e349000-0x000000081e349fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e348000-0x000000081e348fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e346000-0x000000081e346fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e345000-0x000000081e345fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e344000-0x000000081e344fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e343000-0x000000081e343fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] memblock_alloc_try_nid: 67108864 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x00000000ffffffff swiotlb_init+0x4d/0xac
[    0.000000] memblock_reserve: [0x00000000cb6d2000-0x00000000cf6d1fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 131072 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0x6f/0x13d
[    0.000000] memblock_reserve: [0x000000081e323000-0x000000081e342fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 262144 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0xa6/0x13d
[    0.000000] memblock_reserve: [0x000000081e2e3000-0x000000081e322fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] Memory: 32490568K/33463380K available (14339K kernel code, 3255K rwdata, 4664K rodata, 4948K init, 18256K bss, 972812K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 40462 entries in 159 pages
[    0.000000] Running RCU self tests
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu: 	RCU lockdep checking is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[    0.000000] rcu: 	RCU callback double-/use-after-free debug enabled.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 524544, nr_irqs: 1224, preallocated irqs: 16
[    0.000000] random: crng done (trusting CPU's manufacturer)
[    0.000000] Console: colour dummy device 80x25
[    0.000000] printk: console [tty0] enabled
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8192
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     32768
[    0.000000] ... MAX_LOCKDEP_CHAINS:      65536
[    0.000000] ... CHAINHASH_SIZE:          32768
[    0.000000]  memory used by lock dependency info: 6749 kB
[    0.000000]  per task-struct memory footprint: 2688 bytes
[    0.000000] kmemleak: Kernel memory leak detector disabled
[    0.000000] ACPI: Core revision 20190703
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.001000] Switched APIC routing to physical flat.
[    0.001000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.008000] tsc: PIT calibration matches HPET. 2 loops
[    0.008000] tsc: Detected 3692.452 MHz processor
[    0.000008] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6a72f80828a, max_idle_ns: 881591079880 ns
[    0.000025] Calibrating delay loop (skipped), value calculated using timer frequency.. 7384.90 BogoMIPS (lpj=3692452)
[    0.000039] pid_max: default: 32768 minimum: 301
[    0.000189] __memblock_free_late: [0x00000000dc3c7000-0x00000000deffffff] efi_free_boot_services+0x12c/0x200
[    0.005037] __memblock_free_late: [0x00000000d7f03000-0x00000000d8ae7fff] efi_free_boot_services+0x12c/0x200
[    0.006304] __memblock_free_late: [0x00000000cfc68000-0x00000000d62fbfff] efi_free_boot_services+0x12c/0x200
[    0.014752] __memblock_free_late: [0x0000000001000000-0x000000000101ffff] efi_free_boot_services+0x12c/0x200
[    0.014780] __memblock_free_late: [0x000000000003f000-0x000000000003ffff] efi_free_boot_services+0x12c/0x200
[    0.015992] ---[ User Space ]---
[    0.015997] 0x0000000000000000-0x0000000000008000          32K     RW                     x  pte
[    0.016011] 0x0000000000008000-0x000000000003f000         220K                               pte
[    0.016026] 0x000000000003f000-0x0000000000040000           4K                               pte
[    0.016038] 0x0000000000040000-0x00000000000a0000         384K     RW                     x  pte
[    0.016053] 0x00000000000a0000-0x0000000000200000        1408K                               pte
[    0.016065] 0x0000000000200000-0x0000000001000000          14M                               pmd
[    0.016077] 0x0000000001000000-0x0000000001020000         128K                               pte
[    0.016092] 0x0000000001020000-0x0000000001200000        1920K                               pte
[    0.016106] 0x0000000001200000-0x0000000040000000        1006M                               pmd
[    0.016118] 0x0000000040000000-0x00000000c0000000           2G                               pud
[    0.016130] 0x00000000c0000000-0x00000000cfc00000         252M                               pmd
[    0.016142] 0x00000000cfc00000-0x00000000cfc68000         416K                               pte
[    0.016156] 0x00000000cfc68000-0x00000000cfe00000        1632K                               pte
[    0.016168] 0x00000000cfe00000-0x00000000d6200000         100M                               pmd
[    0.016181] 0x00000000d6200000-0x00000000d62fc000        1008K                               pte
[    0.016195] 0x00000000d62fc000-0x00000000d6400000        1040K     RW                     x  pte
[    0.016208] 0x00000000d6400000-0x00000000d7c00000          24M     RW         PSE         x  pmd
[    0.016220] 0x00000000d7c00000-0x00000000d7c0a000          40K     RW                     x  pte
[    0.016238] 0x00000000d7c0a000-0x00000000d7f03000        3044K                               pte
[    0.016251] 0x00000000d7f03000-0x00000000d8000000        1012K                               pte
[    0.016263] 0x00000000d8000000-0x00000000d8a00000          10M                               pmd
[    0.016276] 0x00000000d8a00000-0x00000000d8ae8000         928K                               pte
[    0.016289] 0x00000000d8ae8000-0x00000000d8c00000        1120K                               pte
[    0.016301] 0x00000000d8c00000-0x00000000db800000          44M                               pmd
[    0.016314] 0x00000000db800000-0x00000000db8c6000         792K                               pte
[    0.016327] 0x00000000db8c6000-0x00000000dba00000        1256K     RW                     NX pte
[    0.016340] 0x00000000dba00000-0x00000000dc200000           8M     RW         PSE         NX pmd
[    0.016355] 0x00000000dc200000-0x00000000dc33f000        1276K     RW                     NX pte
[    0.016368] 0x00000000dc33f000-0x00000000dc342000          12K     ro                     x  pte
[    0.016381] 0x00000000dc342000-0x00000000dc347000          20K     RW                     NX pte
[    0.016394] 0x00000000dc347000-0x00000000dc348000           4K     ro                     x  pte
[    0.016406] 0x00000000dc348000-0x00000000dc34d000          20K     RW                     NX pte
[    0.016421] 0x00000000dc34d000-0x00000000dc351000          16K     ro                     x  pte
[    0.016437] 0x00000000dc351000-0x00000000dc356000          20K     RW                     NX pte
[    0.016450] 0x00000000dc356000-0x00000000dc357000           4K     ro                     x  pte
[    0.016464] 0x00000000dc357000-0x00000000dc35b000          16K     RW                     NX pte
[    0.016477] 0x00000000dc35b000-0x00000000dc35c000           4K     ro                     x  pte
[    0.016490] 0x00000000dc35c000-0x00000000dc361000          20K     RW                     NX pte
[    0.016504] 0x00000000dc361000-0x00000000dc36e000          52K     ro                     x  pte
[    0.016517] 0x00000000dc36e000-0x00000000dc375000          28K     RW                     NX pte
[    0.016530] 0x00000000dc375000-0x00000000dc378000          12K     ro                     x  pte
[    0.016543] 0x00000000dc378000-0x00000000dc37d000          20K     RW                     NX pte
[    0.016557] 0x00000000dc37d000-0x00000000dc37e000           4K     ro                     x  pte
[    0.016570] 0x00000000dc37e000-0x00000000dc383000          20K     RW                     NX pte
[    0.016583] 0x00000000dc383000-0x00000000dc384000           4K     ro                     x  pte
[    0.016596] 0x00000000dc384000-0x00000000dc389000          20K     RW                     NX pte
[    0.016610] 0x00000000dc389000-0x00000000dc38a000           4K     ro                     x  pte
[    0.016623] 0x00000000dc38a000-0x00000000dc38f000          20K     RW                     NX pte
[    0.016636] 0x00000000dc38f000-0x00000000dc390000           4K     ro                     x  pte
[    0.016650] 0x00000000dc390000-0x00000000dc395000          20K     RW                     NX pte
[    0.016663] 0x00000000dc395000-0x00000000dc396000           4K     ro                     x  pte
[    0.016676] 0x00000000dc396000-0x00000000dc39b000          20K     RW                     NX pte
[    0.016689] 0x00000000dc39b000-0x00000000dc39c000           4K     ro                     x  pte
[    0.016703] 0x00000000dc39c000-0x00000000dc3a0000          16K     RW                     NX pte
[    0.016716] 0x00000000dc3a0000-0x00000000dc3aa000          40K     ro                     x  pte
[    0.016729] 0x00000000dc3aa000-0x00000000dc3b3000          36K     RW                     NX pte
[    0.016742] 0x00000000dc3b3000-0x00000000dc3b9000          24K     ro                     x  pte
[    0.016756] 0x00000000dc3b9000-0x00000000dc3be000          20K     RW                     NX pte
[    0.016769] 0x00000000dc3be000-0x00000000dc3c2000          16K     ro                     x  pte
[    0.016782] 0x00000000dc3c2000-0x00000000dc3c7000          20K     RW                     NX pte
[    0.016796] 0x00000000dc3c7000-0x00000000dc400000         228K                               pte
[    0.016808] 0x00000000dc400000-0x00000000df000000          44M                               pmd
[    0.016821] 0x00000000df000000-0x00000000f8000000         400M                               pmd
[    0.016833] 0x00000000f8000000-0x00000000fc000000          64M     RW         PSE         x  pmd
[    0.016846] 0x00000000fc000000-0x00000000fd000000          16M                               pmd
[    0.016860] 0x00000000fd000000-0x00000000fd100000           1M                               pte
[    0.016874] 0x00000000fd100000-0x00000000fd200000           1M     RW     PCD             x  pte
[    0.016887] 0x00000000fd200000-0x00000000fea00000          24M                               pmd
[    0.016899] 0x00000000fea00000-0x00000000fea10000          64K     RW     PCD             x  pte
[    0.016915] 0x00000000fea10000-0x00000000feb80000        1472K                               pte
[    0.016928] 0x00000000feb80000-0x00000000fec02000         520K     RW     PCD             x  pte
[    0.016941] 0x00000000fec02000-0x00000000fec10000          56K                               pte
[    0.016953] 0x00000000fec10000-0x00000000fec11000           4K     RW     PCD             x  pte
[    0.016967] 0x00000000fec11000-0x00000000fec30000         124K                               pte
[    0.016979] 0x00000000fec30000-0x00000000fec31000           4K     RW     PCD             x  pte
[    0.016993] 0x00000000fec31000-0x00000000fed00000         828K                               pte
[    0.017005] 0x00000000fed00000-0x00000000fed01000           4K     RW     PCD             x  pte
[    0.017019] 0x00000000fed01000-0x00000000fed40000         252K                               pte
[    0.017026] 0x00000000fed40000-0x00000000fed45000          20K     RW     PCD             x  pte
[    0.017039] 0x00000000fed45000-0x00000000fed80000         236K                               pte
[    0.017051] 0x00000000fed80000-0x00000000fed90000          64K     RW     PCD             x  pte
[    0.017065] 0x00000000fed90000-0x00000000fedc2000         200K                               pte
[    0.017077] 0x00000000fedc2000-0x00000000fedd0000          56K     RW     PCD             x  pte
[    0.017090] 0x00000000fedd0000-0x00000000fedd4000          16K                               pte
[    0.017102] 0x00000000fedd4000-0x00000000fedd6000           8K     RW     PCD             x  pte
[    0.017116] 0x00000000fedd6000-0x00000000fee00000         168K                               pte
[    0.017130] 0x00000000fee00000-0x00000000fef00000           1M     RW     PCD             x  pte
[    0.017145] 0x00000000fef00000-0x00000000ff000000           1M                               pte
[    0.017157] 0x00000000ff000000-0x0000000100000000          16M     RW     PCD PSE         x  pmd
[    0.017170] 0x0000000100000000-0x00000007c0000000          27G                               pud
[    0.017184] 0x00000007c0000000-0x00000007f6c00000         876M                               pmd
[    0.017199] 0x00000007f6c00000-0x00000007f6dc6000        1816K                               pte
[    0.017211] 0x00000007f6dc6000-0x00000007f6dc8000           8K     RW                     NX pte
[    0.017225] 0x00000007f6dc8000-0x00000007f6e00000         224K                               pte
[    0.017237] 0x00000007f6e00000-0x0000000800000000         146M                               pmd
[    0.017252] 0x0000000800000000-0x0000008000000000         480G                               pud
[    0.017268] 0x0000008000000000-0xffff800000000000   17179737600G                               pgd
[    0.017280] ---[ Kernel Space ]---
[    0.017286] 0xffff800000000000-0xffff808000000000         512G                               pgd
[    0.017298] ---[ LDT remap ]---
[    0.017303] 0xffff808000000000-0xffff810000000000         512G                               pgd
[    0.017315] ---[ Low Kernel Mapping ]---
[    0.017321] 0xffff810000000000-0xffff818000000000         512G                               pgd
[    0.017333] ---[ vmalloc() Area ]---
[    0.017339] 0xffff818000000000-0xffff820000000000         512G                               pgd
[    0.017350] ---[ Vmemmap ]---
[    0.017356] 0xffff820000000000-0xffff968000000000       20992G                               pgd
[    0.017370] 0xffff968000000000-0xffff96ef00000000         444G                               pud
[    0.017386] 0xffff96ef00000000-0xffff96ef00200000           2M     RW                 GLB NX pte
[    0.017400] 0xffff96ef00200000-0xffff96ef09c00000         154M     RW         PSE     GLB NX pmd
[    0.017415] 0xffff96ef09c00000-0xffff96ef09d00000           1M     RW                 GLB NX pte
[    0.017430] 0xffff96ef09d00000-0xffff96ef09e00000           1M                               pte
[    0.017442] 0xffff96ef09e00000-0xffff96ef0a000000           2M                               pmd
[    0.017454] 0xffff96ef0a000000-0xffff96ef0a200000           2M     RW         PSE     GLB NX pmd
[    0.017467] 0xffff96ef0a200000-0xffff96ef0a20b000          44K                               pte
[    0.017482] 0xffff96ef0a20b000-0xffff96ef0a400000        2004K     RW                 GLB NX pte
[    0.017496] 0xffff96ef0a400000-0xffff96ef0b000000          12M     RW         PSE     GLB NX pmd
[    0.017509] 0xffff96ef0b000000-0xffff96ef0b020000         128K                               pte
[    0.017525] 0xffff96ef0b020000-0xffff96ef0b200000        1920K     RW                 GLB NX pte
[    0.017540] 0xffff96ef0b200000-0xffff96ef40000000         846M     RW         PSE     GLB NX pmd
[    0.017554] 0xffff96ef40000000-0xffff96efc0000000           2G     RW         PSE     GLB NX pud
[    0.017568] 0xffff96efc0000000-0xffff96efd8a00000         394M     RW         PSE     GLB NX pmd
[    0.017583] 0xffff96efd8a00000-0xffff96efd8ae8000         928K     RW                 GLB NX pte
[    0.017598] 0xffff96efd8ae8000-0xffff96efd8c00000        1120K                               pte
[    0.017610] 0xffff96efd8c00000-0xffff96efdc200000          54M                               pmd
[    0.017625] 0xffff96efdc200000-0xffff96efdc3c7000        1820K                               pte
[    0.017638] 0xffff96efdc3c7000-0xffff96efdc400000         228K     RW                 GLB NX pte
[    0.017651] 0xffff96efdc400000-0xffff96efdf000000          44M     RW         PSE     GLB NX pmd
[    0.017666] 0xffff96efdf000000-0xffff96f000000000         528M                               pmd
[    0.017678] 0xffff96f000000000-0xffff96f700000000          28G     RW         PSE     GLB NX pud
[    0.017693] 0xffff96f700000000-0xffff96f71f200000         498M     RW         PSE     GLB NX pmd
[    0.017708] 0xffff96f71f200000-0xffff96f71f380000        1536K     RW                 GLB NX pte
[    0.017723] 0xffff96f71f380000-0xffff96f71f400000         512K                               pte
[    0.017736] 0xffff96f71f400000-0xffff96f740000000         524M                               pmd
[    0.017748] 0xffff96f740000000-0xffff970000000000          35G                               pud
[    0.017761] 0xffff970000000000-0xffffbe0000000000          39T                               pgd
[    0.017775] 0xffffbe0000000000-0xffffbe6180000000         390G                               pud
[    0.017787] 0xffffbe6180000000-0xffffbe6180005000          20K     RW                 GLB NX pte
[    0.017801] 0xffffbe6180005000-0xffffbe6180006000           4K                               pte
[    0.017813] 0xffffbe6180006000-0xffffbe6180007000           4K     RW                 GLB NX pte
[    0.017826] 0xffffbe6180007000-0xffffbe6180008000           4K                               pte
[    0.017838] 0xffffbe6180008000-0xffffbe618000c000          16K     RW                 GLB NX pte
[    0.017851] 0xffffbe618000c000-0xffffbe618000d000           4K                               pte
[    0.017863] 0xffffbe618000d000-0xffffbe618000e000           4K     RW                 GLB NX pte
[    0.017877] 0xffffbe618000e000-0xffffbe6180010000           8K                               pte
[    0.017889] 0xffffbe6180010000-0xffffbe618001f000          60K     RW                 GLB NX pte
[    0.017902] 0xffffbe618001f000-0xffffbe6180020000           4K                               pte
[    0.017914] 0xffffbe6180020000-0xffffbe618002a000          40K     RW                 GLB NX pte
[    0.017927] 0xffffbe618002a000-0xffffbe6180030000          24K                               pte
[    0.017939] 0xffffbe6180030000-0xffffbe6180033000          12K     RW                 GLB NX pte
[    0.017953] 0xffffbe6180033000-0xffffbe6180034000           4K                               pte
[    0.017965] 0xffffbe6180034000-0xffffbe6180036000           8K     RW                 GLB NX pte
[    0.017978] 0xffffbe6180036000-0xffffbe6180038000           8K                               pte
[    0.017990] 0xffffbe6180038000-0xffffbe618003b000          12K     RW                 GLB NX pte
[    0.018003] 0xffffbe618003b000-0xffffbe618003c000           4K                               pte
[    0.018026] 0xffffbe618003c000-0xffffbe618003d000           4K     RW     PCD         GLB NX pte
[    0.018039] 0xffffbe618003d000-0xffffbe6180080000         268K                               pte
[    0.018052] 0xffffbe6180080000-0xffffbe6180100000         512K     RW     PCD         GLB NX pte
[    0.018067] 0xffffbe6180100000-0xffffbe6180200000           1M                               pte
[    0.018082] 0xffffbe6180200000-0xffffbe61c0000000        1022M                               pmd
[    0.018094] 0xffffbe61c0000000-0xffffbe8000000000         121G                               pud
[    0.018108] 0xffffbe8000000000-0xfffffa0000000000       60928G                               pgd
[    0.018120] 0xfffffa0000000000-0xfffffa0e00000000          56G                               pud
[    0.018133] 0xfffffa0e00000000-0xfffffa0e03800000          56M     RW         PSE     GLB NX pmd
[    0.018146] 0xfffffa0e03800000-0xfffffa0e04000000           8M                               pmd
[    0.018159] 0xfffffa0e04000000-0xfffffa0e20800000         456M     RW         PSE     GLB NX pmd
[    0.018174] 0xfffffa0e20800000-0xfffffa0e40000000         504M                               pmd
[    0.018188] 0xfffffa0e40000000-0xfffffa8000000000         455G                               pud
[    0.018200] 0xfffffa8000000000-0xfffffe0000000000        3584G                               pgd
[    0.018212] ---[ CPU entry Area ]---
[    0.018218] 0xfffffe0000000000-0xfffffe0000002000           8K     ro                 GLB NX pte
[    0.018231] 0xfffffe0000002000-0xfffffe0000003000           4K     RW                 GLB NX pte
[    0.018244] 0xfffffe0000003000-0xfffffe0000006000          12K     ro                 GLB NX pte
[    0.018258] 0xfffffe0000006000-0xfffffe0000007000           4K                               pte
[    0.018270] 0xfffffe0000007000-0xfffffe0000008000           4K     RW                 GLB NX pte
[    0.018283] 0xfffffe0000008000-0xfffffe0000009000           4K                               pte
[    0.018295] 0xfffffe0000009000-0xfffffe000000a000           4K     RW                 GLB NX pte
[    0.018308] 0xfffffe000000a000-0xfffffe000000d000          12K                               pte
[    0.018320] 0xfffffe000000d000-0xfffffe000000e000           4K     RW                 GLB NX pte
[    0.018333] 0xfffffe000000e000-0xfffffe000000f000           4K                               pte
[    0.018346] 0xfffffe000000f000-0xfffffe0000010000           4K     RW                 GLB NX pte
[    0.018359] 0xfffffe0000010000-0xfffffe0000011000           4K                               pte
[    0.018371] 0xfffffe0000011000-0xfffffe0000012000           4K     RW                 GLB NX pte
[    0.018384] 0xfffffe0000012000-0xfffffe0000034000         136K                               pte
[    0.018396] 0xfffffe0000034000-0xfffffe0000035000           4K     ro                 GLB NX pte
[    0.018410] 0xfffffe0000035000-0xfffffe0000036000           4K     RW                 GLB NX pte
[    0.018423] 0xfffffe0000036000-0xfffffe0000039000          12K     ro                 GLB NX pte
[    0.018436] 0xfffffe0000039000-0xfffffe000003a000           4K                               pte
[    0.018448] 0xfffffe000003a000-0xfffffe000003b000           4K     RW                 GLB NX pte
[    0.018462] 0xfffffe000003b000-0xfffffe000003c000           4K                               pte
[    0.018474] 0xfffffe000003c000-0xfffffe000003d000           4K     RW                 GLB NX pte
[    0.018487] 0xfffffe000003d000-0xfffffe0000040000          12K                               pte
[    0.018499] 0xfffffe0000040000-0xfffffe0000041000           4K     RW                 GLB NX pte
[    0.018513] 0xfffffe0000041000-0xfffffe0000042000           4K                               pte
[    0.018527] 0xfffffe0000042000-0xfffffe0000043000           4K     RW                 GLB NX pte
[    0.018543] 0xfffffe0000043000-0xfffffe0000044000           4K                               pte
[    0.018554] 0xfffffe0000044000-0xfffffe0000045000           4K     RW                 GLB NX pte
[    0.018567] 0xfffffe0000045000-0xfffffe0000067000         136K                               pte
[    0.018579] 0xfffffe0000067000-0xfffffe0000068000           4K     ro                 GLB NX pte
[    0.018591] 0xfffffe0000068000-0xfffffe0000069000           4K     RW                 GLB NX pte
[    0.018604] 0xfffffe0000069000-0xfffffe000006c000          12K     ro                 GLB NX pte
[    0.018616] 0xfffffe000006c000-0xfffffe000006d000           4K                               pte
[    0.018628] 0xfffffe000006d000-0xfffffe000006e000           4K     RW                 GLB NX pte
[    0.018640] 0xfffffe000006e000-0xfffffe000006f000           4K                               pte
[    0.018652] 0xfffffe000006f000-0xfffffe0000070000           4K     RW                 GLB NX pte
[    0.018664] 0xfffffe0000070000-0xfffffe0000073000          12K                               pte
[    0.018676] 0xfffffe0000073000-0xfffffe0000074000           4K     RW                 GLB NX pte
[    0.018688] 0xfffffe0000074000-0xfffffe0000075000           4K                               pte
[    0.018699] 0xfffffe0000075000-0xfffffe0000076000           4K     RW                 GLB NX pte
[    0.018712] 0xfffffe0000076000-0xfffffe0000077000           4K                               pte
[    0.018723] 0xfffffe0000077000-0xfffffe0000078000           4K     RW                 GLB NX pte
[    0.018736] 0xfffffe0000078000-0xfffffe000009a000         136K                               pte
[    0.018748] 0xfffffe000009a000-0xfffffe000009b000           4K     ro                 GLB NX pte
[    0.018760] 0xfffffe000009b000-0xfffffe000009c000           4K     RW                 GLB NX pte
[    0.018773] 0xfffffe000009c000-0xfffffe000009f000          12K     ro                 GLB NX pte
[    0.018785] 0xfffffe000009f000-0xfffffe00000a0000           4K                               pte
[    0.018797] 0xfffffe00000a0000-0xfffffe00000a1000           4K     RW                 GLB NX pte
[    0.018809] 0xfffffe00000a1000-0xfffffe00000a2000           4K                               pte
[    0.018821] 0xfffffe00000a2000-0xfffffe00000a3000           4K     RW                 GLB NX pte
[    0.018833] 0xfffffe00000a3000-0xfffffe00000a6000          12K                               pte
[    0.018845] 0xfffffe00000a6000-0xfffffe00000a7000           4K     RW                 GLB NX pte
[    0.018857] 0xfffffe00000a7000-0xfffffe00000a8000           4K                               pte
[    0.018869] 0xfffffe00000a8000-0xfffffe00000a9000           4K     RW                 GLB NX pte
[    0.018881] 0xfffffe00000a9000-0xfffffe00000aa000           4K                               pte
[    0.018892] 0xfffffe00000aa000-0xfffffe00000ab000           4K     RW                 GLB NX pte
[    0.018905] 0xfffffe00000ab000-0xfffffe00000cd000         136K                               pte
[    0.018917] 0xfffffe00000cd000-0xfffffe00000ce000           4K     ro                 GLB NX pte
[    0.018929] 0xfffffe00000ce000-0xfffffe00000cf000           4K     RW                 GLB NX pte
[    0.018942] 0xfffffe00000cf000-0xfffffe00000d2000          12K     ro                 GLB NX pte
[    0.018954] 0xfffffe00000d2000-0xfffffe00000d3000           4K                               pte
[    0.018966] 0xfffffe00000d3000-0xfffffe00000d4000           4K     RW                 GLB NX pte
[    0.018978] 0xfffffe00000d4000-0xfffffe00000d5000           4K                               pte
[    0.018990] 0xfffffe00000d5000-0xfffffe00000d6000           4K     RW                 GLB NX pte
[    0.019002] 0xfffffe00000d6000-0xfffffe00000d9000          12K                               pte
[    0.019014] 0xfffffe00000d9000-0xfffffe00000da000           4K     RW                 GLB NX pte
[    0.019025] 0xfffffe00000da000-0xfffffe00000db000           4K                               pte
[    0.019037] 0xfffffe00000db000-0xfffffe00000dc000           4K     RW                 GLB NX pte
[    0.019049] 0xfffffe00000dc000-0xfffffe00000dd000           4K                               pte
[    0.019061] 0xfffffe00000dd000-0xfffffe00000de000           4K     RW                 GLB NX pte
[    0.019074] 0xfffffe00000de000-0xfffffe0000100000         136K                               pte
[    0.019085] 0xfffffe0000100000-0xfffffe0000101000           4K     ro                 GLB NX pte
[    0.019098] 0xfffffe0000101000-0xfffffe0000102000           4K     RW                 GLB NX pte
[    0.019110] 0xfffffe0000102000-0xfffffe0000105000          12K     ro                 GLB NX pte
[    0.019123] 0xfffffe0000105000-0xfffffe0000106000           4K                               pte
[    0.019134] 0xfffffe0000106000-0xfffffe0000107000           4K     RW                 GLB NX pte
[    0.019147] 0xfffffe0000107000-0xfffffe0000108000           4K                               pte
[    0.019158] 0xfffffe0000108000-0xfffffe0000109000           4K     RW                 GLB NX pte
[    0.019170] 0xfffffe0000109000-0xfffffe000010c000          12K                               pte
[    0.019182] 0xfffffe000010c000-0xfffffe000010d000           4K     RW                 GLB NX pte
[    0.019194] 0xfffffe000010d000-0xfffffe000010e000           4K                               pte
[    0.019206] 0xfffffe000010e000-0xfffffe000010f000           4K     RW                 GLB NX pte
[    0.019218] 0xfffffe000010f000-0xfffffe0000110000           4K                               pte
[    0.019230] 0xfffffe0000110000-0xfffffe0000111000           4K     RW                 GLB NX pte
[    0.019243] 0xfffffe0000111000-0xfffffe0000133000         136K                               pte
[    0.019254] 0xfffffe0000133000-0xfffffe0000134000           4K     ro                 GLB NX pte
[    0.019267] 0xfffffe0000134000-0xfffffe0000135000           4K     RW                 GLB NX pte
[    0.019279] 0xfffffe0000135000-0xfffffe0000138000          12K     ro                 GLB NX pte
[    0.019292] 0xfffffe0000138000-0xfffffe0000139000           4K                               pte
[    0.019303] 0xfffffe0000139000-0xfffffe000013a000           4K     RW                 GLB NX pte
[    0.019316] 0xfffffe000013a000-0xfffffe000013b000           4K                               pte
[    0.019327] 0xfffffe000013b000-0xfffffe000013c000           4K     RW                 GLB NX pte
[    0.019340] 0xfffffe000013c000-0xfffffe000013f000          12K                               pte
[    0.019351] 0xfffffe000013f000-0xfffffe0000140000           4K     RW                 GLB NX pte
[    0.019363] 0xfffffe0000140000-0xfffffe0000141000           4K                               pte
[    0.019375] 0xfffffe0000141000-0xfffffe0000142000           4K     RW                 GLB NX pte
[    0.019387] 0xfffffe0000142000-0xfffffe0000143000           4K                               pte
[    0.019399] 0xfffffe0000143000-0xfffffe0000144000           4K     RW                 GLB NX pte
[    0.019412] 0xfffffe0000144000-0xfffffe0000166000         136K                               pte
[    0.019423] 0xfffffe0000166000-0xfffffe0000167000           4K     ro                 GLB NX pte
[    0.019435] 0xfffffe0000167000-0xfffffe0000168000           4K     RW                 GLB NX pte
[    0.019448] 0xfffffe0000168000-0xfffffe000016b000          12K     ro                 GLB NX pte
[    0.019461] 0xfffffe000016b000-0xfffffe000016c000           4K                               pte
[    0.019472] 0xfffffe000016c000-0xfffffe000016d000           4K     RW                 GLB NX pte
[    0.019484] 0xfffffe000016d000-0xfffffe000016e000           4K                               pte
[    0.019496] 0xfffffe000016e000-0xfffffe000016f000           4K     RW                 GLB NX pte
[    0.019508] 0xfffffe000016f000-0xfffffe0000172000          12K                               pte
[    0.019520] 0xfffffe0000172000-0xfffffe0000173000           4K     RW                 GLB NX pte
[    0.019532] 0xfffffe0000173000-0xfffffe0000174000           4K                               pte
[    0.019544] 0xfffffe0000174000-0xfffffe0000175000           4K     RW                 GLB NX pte
[    0.019556] 0xfffffe0000175000-0xfffffe0000176000           4K                               pte
[    0.019567] 0xfffffe0000176000-0xfffffe0000177000           4K     RW                 GLB NX pte
[    0.019580] 0xfffffe0000177000-0xfffffe0000199000         136K                               pte
[    0.019592] 0xfffffe0000199000-0xfffffe000019a000           4K     ro                 GLB NX pte
[    0.019604] 0xfffffe000019a000-0xfffffe000019b000           4K     RW                 GLB NX pte
[    0.019617] 0xfffffe000019b000-0xfffffe000019e000          12K     ro                 GLB NX pte
[    0.019629] 0xfffffe000019e000-0xfffffe000019f000           4K                               pte
[    0.019641] 0xfffffe000019f000-0xfffffe00001a0000           4K     RW                 GLB NX pte
[    0.019653] 0xfffffe00001a0000-0xfffffe00001a1000           4K                               pte
[    0.019665] 0xfffffe00001a1000-0xfffffe00001a2000           4K     RW                 GLB NX pte
[    0.019677] 0xfffffe00001a2000-0xfffffe00001a5000          12K                               pte
[    0.019689] 0xfffffe00001a5000-0xfffffe00001a6000           4K     RW                 GLB NX pte
[    0.019701] 0xfffffe00001a6000-0xfffffe00001a7000           4K                               pte
[    0.019713] 0xfffffe00001a7000-0xfffffe00001a8000           4K     RW                 GLB NX pte
[    0.019725] 0xfffffe00001a8000-0xfffffe00001a9000           4K                               pte
[    0.019736] 0xfffffe00001a9000-0xfffffe00001aa000           4K     RW                 GLB NX pte
[    0.019749] 0xfffffe00001aa000-0xfffffe00001cc000         136K                               pte
[    0.019761] 0xfffffe00001cc000-0xfffffe00001cd000           4K     ro                 GLB NX pte
[    0.019773] 0xfffffe00001cd000-0xfffffe00001ce000           4K     RW                 GLB NX pte
[    0.019786] 0xfffffe00001ce000-0xfffffe00001d1000          12K     ro                 GLB NX pte
[    0.019798] 0xfffffe00001d1000-0xfffffe00001d2000           4K                               pte
[    0.019810] 0xfffffe00001d2000-0xfffffe00001d3000           4K     RW                 GLB NX pte
[    0.019822] 0xfffffe00001d3000-0xfffffe00001d4000           4K                               pte
[    0.019834] 0xfffffe00001d4000-0xfffffe00001d5000           4K     RW                 GLB NX pte
[    0.019846] 0xfffffe00001d5000-0xfffffe00001d8000          12K                               pte
[    0.019858] 0xfffffe00001d8000-0xfffffe00001d9000           4K     RW                 GLB NX pte
[    0.019870] 0xfffffe00001d9000-0xfffffe00001da000           4K                               pte
[    0.019881] 0xfffffe00001da000-0xfffffe00001db000           4K     RW                 GLB NX pte
[    0.019894] 0xfffffe00001db000-0xfffffe00001dc000           4K                               pte
[    0.019905] 0xfffffe00001dc000-0xfffffe00001dd000           4K     RW                 GLB NX pte
[    0.019918] 0xfffffe00001dd000-0xfffffe00001ff000         136K                               pte
[    0.019930] 0xfffffe00001ff000-0xfffffe0000200000           4K     ro                 GLB NX pte
[    0.019942] 0xfffffe0000200000-0xfffffe0000201000           4K     RW                 GLB NX pte
[    0.019955] 0xfffffe0000201000-0xfffffe0000204000          12K     ro                 GLB NX pte
[    0.019967] 0xfffffe0000204000-0xfffffe0000205000           4K                               pte
[    0.019979] 0xfffffe0000205000-0xfffffe0000206000           4K     RW                 GLB NX pte
[    0.019991] 0xfffffe0000206000-0xfffffe0000207000           4K                               pte
[    0.020003] 0xfffffe0000207000-0xfffffe0000208000           4K     RW                 GLB NX pte
[    0.020015] 0xfffffe0000208000-0xfffffe000020b000          12K                               pte
[    0.020025] 0xfffffe000020b000-0xfffffe000020c000           4K     RW                 GLB NX pte
[    0.020038] 0xfffffe000020c000-0xfffffe000020d000           4K                               pte
[    0.020049] 0xfffffe000020d000-0xfffffe000020e000           4K     RW                 GLB NX pte
[    0.020062] 0xfffffe000020e000-0xfffffe000020f000           4K                               pte
[    0.020073] 0xfffffe000020f000-0xfffffe0000210000           4K     RW                 GLB NX pte
[    0.020086] 0xfffffe0000210000-0xfffffe0000232000         136K                               pte
[    0.020098] 0xfffffe0000232000-0xfffffe0000233000           4K     ro                 GLB NX pte
[    0.020110] 0xfffffe0000233000-0xfffffe0000234000           4K     RW                 GLB NX pte
[    0.020123] 0xfffffe0000234000-0xfffffe0000237000          12K     ro                 GLB NX pte
[    0.020135] 0xfffffe0000237000-0xfffffe0000238000           4K                               pte
[    0.020147] 0xfffffe0000238000-0xfffffe0000239000           4K     RW                 GLB NX pte
[    0.020159] 0xfffffe0000239000-0xfffffe000023a000           4K                               pte
[    0.020171] 0xfffffe000023a000-0xfffffe000023b000           4K     RW                 GLB NX pte
[    0.020183] 0xfffffe000023b000-0xfffffe000023e000          12K                               pte
[    0.020195] 0xfffffe000023e000-0xfffffe000023f000           4K     RW                 GLB NX pte
[    0.020207] 0xfffffe000023f000-0xfffffe0000240000           4K                               pte
[    0.020218] 0xfffffe0000240000-0xfffffe0000241000           4K     RW                 GLB NX pte
[    0.020231] 0xfffffe0000241000-0xfffffe0000242000           4K                               pte
[    0.020242] 0xfffffe0000242000-0xfffffe0000243000           4K     RW                 GLB NX pte
[    0.020255] 0xfffffe0000243000-0xfffffe0000265000         136K                               pte
[    0.020267] 0xfffffe0000265000-0xfffffe0000266000           4K     ro                 GLB NX pte
[    0.020912] 0xfffffe0000266000-0xfffffe0000267000           4K     RW                 GLB NX pte
[    0.020925] 0xfffffe0000267000-0xfffffe000026a000          12K     ro                 GLB NX pte
[    0.020938] 0xfffffe000026a000-0xfffffe000026b000           4K                               pte
[    0.020950] 0xfffffe000026b000-0xfffffe000026c000           4K     RW                 GLB NX pte
[    0.020962] 0xfffffe000026c000-0xfffffe000026d000           4K                               pte
[    0.020974] 0xfffffe000026d000-0xfffffe000026e000           4K     RW                 GLB NX pte
[    0.020987] 0xfffffe000026e000-0xfffffe0000271000          12K                               pte
[    0.020998] 0xfffffe0000271000-0xfffffe0000272000           4K     RW                 GLB NX pte
[    0.021011] 0xfffffe0000272000-0xfffffe0000273000           4K                               pte
[    0.021025] 0xfffffe0000273000-0xfffffe0000274000           4K     RW                 GLB NX pte
[    0.021038] 0xfffffe0000274000-0xfffffe0000275000           4K                               pte
[    0.021050] 0xfffffe0000275000-0xfffffe0000276000           4K     RW                 GLB NX pte
[    0.021063] 0xfffffe0000276000-0xfffffe0000298000         136K                               pte
[    0.021074] 0xfffffe0000298000-0xfffffe0000299000           4K     ro                 GLB NX pte
[    0.021087] 0xfffffe0000299000-0xfffffe000029a000           4K     RW                 GLB NX pte
[    0.021100] 0xfffffe000029a000-0xfffffe000029d000          12K     ro                 GLB NX pte
[    0.021113] 0xfffffe000029d000-0xfffffe000029e000           4K                               pte
[    0.021124] 0xfffffe000029e000-0xfffffe000029f000           4K     RW                 GLB NX pte
[    0.021137] 0xfffffe000029f000-0xfffffe00002a0000           4K                               pte
[    0.021149] 0xfffffe00002a0000-0xfffffe00002a1000           4K     RW                 GLB NX pte
[    0.021162] 0xfffffe00002a1000-0xfffffe00002a4000          12K                               pte
[    0.021173] 0xfffffe00002a4000-0xfffffe00002a5000           4K     RW                 GLB NX pte
[    0.021188] 0xfffffe00002a5000-0xfffffe00002a6000           4K                               pte
[    0.021202] 0xfffffe00002a6000-0xfffffe00002a7000           4K     RW                 GLB NX pte
[    0.021215] 0xfffffe00002a7000-0xfffffe00002a8000           4K                               pte
[    0.021227] 0xfffffe00002a8000-0xfffffe00002a9000           4K     RW                 GLB NX pte
[    0.021240] 0xfffffe00002a9000-0xfffffe00002cb000         136K                               pte
[    0.021252] 0xfffffe00002cb000-0xfffffe00002cc000           4K     ro                 GLB NX pte
[    0.021264] 0xfffffe00002cc000-0xfffffe00002cd000           4K     RW                 GLB NX pte
[    0.021277] 0xfffffe00002cd000-0xfffffe00002d0000          12K     ro                 GLB NX pte
[    0.021290] 0xfffffe00002d0000-0xfffffe00002d1000           4K                               pte
[    0.021302] 0xfffffe00002d1000-0xfffffe00002d2000           4K     RW                 GLB NX pte
[    0.021315] 0xfffffe00002d2000-0xfffffe00002d3000           4K                               pte
[    0.021326] 0xfffffe00002d3000-0xfffffe00002d4000           4K     RW                 GLB NX pte
[    0.021339] 0xfffffe00002d4000-0xfffffe00002d7000          12K                               pte
[    0.021351] 0xfffffe00002d7000-0xfffffe00002d8000           4K     RW                 GLB NX pte
[    0.021364] 0xfffffe00002d8000-0xfffffe00002d9000           4K                               pte
[    0.021375] 0xfffffe00002d9000-0xfffffe00002da000           4K     RW                 GLB NX pte
[    0.021388] 0xfffffe00002da000-0xfffffe00002db000           4K                               pte
[    0.021400] 0xfffffe00002db000-0xfffffe00002dc000           4K     RW                 GLB NX pte
[    0.021413] 0xfffffe00002dc000-0xfffffe00002fe000         136K                               pte
[    0.021425] 0xfffffe00002fe000-0xfffffe00002ff000           4K     ro                 GLB NX pte
[    0.021438] 0xfffffe00002ff000-0xfffffe0000300000           4K     RW                 GLB NX pte
[    0.021450] 0xfffffe0000300000-0xfffffe0000303000          12K     ro                 GLB NX pte
[    0.021463] 0xfffffe0000303000-0xfffffe0000304000           4K                               pte
[    0.021475] 0xfffffe0000304000-0xfffffe0000305000           4K     RW                 GLB NX pte
[    0.021488] 0xfffffe0000305000-0xfffffe0000306000           4K                               pte
[    0.021500] 0xfffffe0000306000-0xfffffe0000307000           4K     RW                 GLB NX pte
[    0.021512] 0xfffffe0000307000-0xfffffe000030a000          12K                               pte
[    0.021524] 0xfffffe000030a000-0xfffffe000030b000           4K     RW                 GLB NX pte
[    0.021537] 0xfffffe000030b000-0xfffffe000030c000           4K                               pte
[    0.021549] 0xfffffe000030c000-0xfffffe000030d000           4K     RW                 GLB NX pte
[    0.021561] 0xfffffe000030d000-0xfffffe000030e000           4K                               pte
[    0.021573] 0xfffffe000030e000-0xfffffe000030f000           4K     RW                 GLB NX pte
[    0.021586] 0xfffffe000030f000-0xfffffe0000331000         136K                               pte
[    0.021598] 0xfffffe0000331000-0xfffffe0000332000           4K     ro                 GLB NX pte
[    0.021611] 0xfffffe0000332000-0xfffffe0000333000           4K     RW                 GLB NX pte
[    0.021624] 0xfffffe0000333000-0xfffffe0000336000          12K     ro                 GLB NX pte
[    0.021636] 0xfffffe0000336000-0xfffffe0000337000           4K                               pte
[    0.021648] 0xfffffe0000337000-0xfffffe0000338000           4K     RW                 GLB NX pte
[    0.021661] 0xfffffe0000338000-0xfffffe0000339000           4K                               pte
[    0.021673] 0xfffffe0000339000-0xfffffe000033a000           4K     RW                 GLB NX pte
[    0.021685] 0xfffffe000033a000-0xfffffe000033d000          12K                               pte
[    0.021697] 0xfffffe000033d000-0xfffffe000033e000           4K     RW                 GLB NX pte
[    0.021710] 0xfffffe000033e000-0xfffffe000033f000           4K                               pte
[    0.021722] 0xfffffe000033f000-0xfffffe0000340000           4K     RW                 GLB NX pte
[    0.021735] 0xfffffe0000340000-0xfffffe0000341000           4K                               pte
[    0.021746] 0xfffffe0000341000-0xfffffe0000342000           4K     RW                 GLB NX pte
[    0.021759] 0xfffffe0000342000-0xfffffe0000364000         136K                               pte
[    0.021771] 0xfffffe0000364000-0xfffffe0000365000           4K     ro                 GLB NX pte
[    0.021784] 0xfffffe0000365000-0xfffffe0000366000           4K     RW                 GLB NX pte
[    0.021797] 0xfffffe0000366000-0xfffffe0000369000          12K     ro                 GLB NX pte
[    0.021809] 0xfffffe0000369000-0xfffffe000036a000           4K                               pte
[    0.021821] 0xfffffe000036a000-0xfffffe000036b000           4K     RW                 GLB NX pte
[    0.021834] 0xfffffe000036b000-0xfffffe000036c000           4K                               pte
[    0.021846] 0xfffffe000036c000-0xfffffe000036d000           4K     RW                 GLB NX pte
[    0.021858] 0xfffffe000036d000-0xfffffe0000370000          12K                               pte
[    0.021870] 0xfffffe0000370000-0xfffffe0000371000           4K     RW                 GLB NX pte
[    0.021883] 0xfffffe0000371000-0xfffffe0000372000           4K                               pte
[    0.021895] 0xfffffe0000372000-0xfffffe0000373000           4K     RW                 GLB NX pte
[    0.021907] 0xfffffe0000373000-0xfffffe0000374000           4K                               pte
[    0.021919] 0xfffffe0000374000-0xfffffe0000375000           4K     RW                 GLB NX pte
[    0.021932] 0xfffffe0000375000-0xfffffe0000397000         136K                               pte
[    0.021944] 0xfffffe0000397000-0xfffffe0000398000           4K     ro                 GLB NX pte
[    0.021957] 0xfffffe0000398000-0xfffffe0000399000           4K     RW                 GLB NX pte
[    0.021969] 0xfffffe0000399000-0xfffffe000039c000          12K     ro                 GLB NX pte
[    0.021982] 0xfffffe000039c000-0xfffffe000039d000           4K                               pte
[    0.021994] 0xfffffe000039d000-0xfffffe000039e000           4K     RW                 GLB NX pte
[    0.022007] 0xfffffe000039e000-0xfffffe000039f000           4K                               pte
[    0.022025] 0xfffffe000039f000-0xfffffe00003a0000           4K     RW                 GLB NX pte
[    0.022038] 0xfffffe00003a0000-0xfffffe00003a3000          12K                               pte
[    0.022050] 0xfffffe00003a3000-0xfffffe00003a4000           4K     RW                 GLB NX pte
[    0.022063] 0xfffffe00003a4000-0xfffffe00003a5000           4K                               pte
[    0.022074] 0xfffffe00003a5000-0xfffffe00003a6000           4K     RW                 GLB NX pte
[    0.022087] 0xfffffe00003a6000-0xfffffe00003a7000           4K                               pte
[    0.022099] 0xfffffe00003a7000-0xfffffe00003a8000           4K     RW                 GLB NX pte
[    0.022112] 0xfffffe00003a8000-0xfffffe00003ca000         136K                               pte
[    0.022124] 0xfffffe00003ca000-0xfffffe00003cb000           4K     ro                 GLB NX pte
[    0.022136] 0xfffffe00003cb000-0xfffffe00003cc000           4K     RW                 GLB NX pte
[    0.022149] 0xfffffe00003cc000-0xfffffe00003cf000          12K     ro                 GLB NX pte
[    0.022162] 0xfffffe00003cf000-0xfffffe00003d0000           4K                               pte
[    0.022174] 0xfffffe00003d0000-0xfffffe00003d1000           4K     RW                 GLB NX pte
[    0.022187] 0xfffffe00003d1000-0xfffffe00003d2000           4K                               pte
[    0.022198] 0xfffffe00003d2000-0xfffffe00003d3000           4K     RW                 GLB NX pte
[    0.022211] 0xfffffe00003d3000-0xfffffe00003d6000          12K                               pte
[    0.022223] 0xfffffe00003d6000-0xfffffe00003d7000           4K     RW                 GLB NX pte
[    0.022236] 0xfffffe00003d7000-0xfffffe00003d8000           4K                               pte
[    0.022247] 0xfffffe00003d8000-0xfffffe00003d9000           4K     RW                 GLB NX pte
[    0.022260] 0xfffffe00003d9000-0xfffffe00003da000           4K                               pte
[    0.022272] 0xfffffe00003da000-0xfffffe00003db000           4K     RW                 GLB NX pte
[    0.022285] 0xfffffe00003db000-0xfffffe00003fd000         136K                               pte
[    0.022296] 0xfffffe00003fd000-0xfffffe00003fe000           4K     ro                 GLB NX pte
[    0.022309] 0xfffffe00003fe000-0xfffffe00003ff000           4K     RW                 GLB NX pte
[    0.022322] 0xfffffe00003ff000-0xfffffe0000402000          12K     ro                 GLB NX pte
[    0.022335] 0xfffffe0000402000-0xfffffe0000403000           4K                               pte
[    0.022347] 0xfffffe0000403000-0xfffffe0000404000           4K     RW                 GLB NX pte
[    0.022360] 0xfffffe0000404000-0xfffffe0000405000           4K                               pte
[    0.022371] 0xfffffe0000405000-0xfffffe0000406000           4K     RW                 GLB NX pte
[    0.022384] 0xfffffe0000406000-0xfffffe0000409000          12K                               pte
[    0.022396] 0xfffffe0000409000-0xfffffe000040a000           4K     RW                 GLB NX pte
[    0.022409] 0xfffffe000040a000-0xfffffe000040b000           4K                               pte
[    0.022420] 0xfffffe000040b000-0xfffffe000040c000           4K     RW                 GLB NX pte
[    0.022433] 0xfffffe000040c000-0xfffffe000040d000           4K                               pte
[    0.022445] 0xfffffe000040d000-0xfffffe000040e000           4K     RW                 GLB NX pte
[    0.022458] 0xfffffe000040e000-0xfffffe0000430000         136K                               pte
[    0.022469] 0xfffffe0000430000-0xfffffe0000431000           4K     ro                 GLB NX pte
[    0.022482] 0xfffffe0000431000-0xfffffe0000432000           4K     RW                 GLB NX pte
[    0.022495] 0xfffffe0000432000-0xfffffe0000435000          12K     ro                 GLB NX pte
[    0.022508] 0xfffffe0000435000-0xfffffe0000436000           4K                               pte
[    0.022520] 0xfffffe0000436000-0xfffffe0000437000           4K     RW                 GLB NX pte
[    0.022533] 0xfffffe0000437000-0xfffffe0000438000           4K                               pte
[    0.022544] 0xfffffe0000438000-0xfffffe0000439000           4K     RW                 GLB NX pte
[    0.022557] 0xfffffe0000439000-0xfffffe000043c000          12K                               pte
[    0.022569] 0xfffffe000043c000-0xfffffe000043d000           4K     RW                 GLB NX pte
[    0.022582] 0xfffffe000043d000-0xfffffe000043e000           4K                               pte
[    0.022593] 0xfffffe000043e000-0xfffffe000043f000           4K     RW                 GLB NX pte
[    0.022606] 0xfffffe000043f000-0xfffffe0000440000           4K                               pte
[    0.022618] 0xfffffe0000440000-0xfffffe0000441000           4K     RW                 GLB NX pte
[    0.022631] 0xfffffe0000441000-0xfffffe0000463000         136K                               pte
[    0.022643] 0xfffffe0000463000-0xfffffe0000464000           4K     ro                 GLB NX pte
[    0.022655] 0xfffffe0000464000-0xfffffe0000465000           4K     RW                 GLB NX pte
[    0.022668] 0xfffffe0000465000-0xfffffe0000468000          12K     ro                 GLB NX pte
[    0.022681] 0xfffffe0000468000-0xfffffe0000469000           4K                               pte
[    0.022693] 0xfffffe0000469000-0xfffffe000046a000           4K     RW                 GLB NX pte
[    0.022706] 0xfffffe000046a000-0xfffffe000046b000           4K                               pte
[    0.022717] 0xfffffe000046b000-0xfffffe000046c000           4K     RW                 GLB NX pte
[    0.022730] 0xfffffe000046c000-0xfffffe000046f000          12K                               pte
[    0.022742] 0xfffffe000046f000-0xfffffe0000470000           4K     RW                 GLB NX pte
[    0.022755] 0xfffffe0000470000-0xfffffe0000471000           4K                               pte
[    0.022766] 0xfffffe0000471000-0xfffffe0000472000           4K     RW                 GLB NX pte
[    0.022779] 0xfffffe0000472000-0xfffffe0000473000           4K                               pte
[    0.022791] 0xfffffe0000473000-0xfffffe0000474000           4K     RW                 GLB NX pte
[    0.022804] 0xfffffe0000474000-0xfffffe0000496000         136K                               pte
[    0.022816] 0xfffffe0000496000-0xfffffe0000497000           4K     ro                 GLB NX pte
[    0.022829] 0xfffffe0000497000-0xfffffe0000498000           4K     RW                 GLB NX pte
[    0.022842] 0xfffffe0000498000-0xfffffe000049b000          12K     ro                 GLB NX pte
[    0.022854] 0xfffffe000049b000-0xfffffe000049c000           4K                               pte
[    0.022866] 0xfffffe000049c000-0xfffffe000049d000           4K     RW                 GLB NX pte
[    0.022879] 0xfffffe000049d000-0xfffffe000049e000           4K                               pte
[    0.022893] 0xfffffe000049e000-0xfffffe000049f000           4K     RW                 GLB NX pte
[    0.022908] 0xfffffe000049f000-0xfffffe00004a2000          12K                               pte
[    0.022920] 0xfffffe00004a2000-0xfffffe00004a3000           4K     RW                 GLB NX pte
[    0.022933] 0xfffffe00004a3000-0xfffffe00004a4000           4K                               pte
[    0.022945] 0xfffffe00004a4000-0xfffffe00004a5000           4K     RW                 GLB NX pte
[    0.022959] 0xfffffe00004a5000-0xfffffe00004a6000           4K                               pte
[    0.022971] 0xfffffe00004a6000-0xfffffe00004a7000           4K     RW                 GLB NX pte
[    0.022984] 0xfffffe00004a7000-0xfffffe00004c9000         136K                               pte
[    0.022996] 0xfffffe00004c9000-0xfffffe00004ca000           4K     ro                 GLB NX pte
[    0.023010] 0xfffffe00004ca000-0xfffffe00004cb000           4K     RW                 GLB NX pte
[    0.023025] 0xfffffe00004cb000-0xfffffe00004ce000          12K     ro                 GLB NX pte
[    0.023039] 0xfffffe00004ce000-0xfffffe00004cf000           4K                               pte
[    0.023051] 0xfffffe00004cf000-0xfffffe00004d0000           4K     RW                 GLB NX pte
[    0.023064] 0xfffffe00004d0000-0xfffffe00004d1000           4K                               pte
[    0.023076] 0xfffffe00004d1000-0xfffffe00004d2000           4K     RW                 GLB NX pte
[    0.023089] 0xfffffe00004d2000-0xfffffe00004d5000          12K                               pte
[    0.023101] 0xfffffe00004d5000-0xfffffe00004d6000           4K     RW                 GLB NX pte
[    0.023115] 0xfffffe00004d6000-0xfffffe00004d7000           4K                               pte
[    0.023127] 0xfffffe00004d7000-0xfffffe00004d8000           4K     RW                 GLB NX pte
[    0.023140] 0xfffffe00004d8000-0xfffffe00004d9000           4K                               pte
[    0.023152] 0xfffffe00004d9000-0xfffffe00004da000           4K     RW                 GLB NX pte
[    0.023166] 0xfffffe00004da000-0xfffffe00004fc000         136K                               pte
[    0.023178] 0xfffffe00004fc000-0xfffffe00004fd000           4K     ro                 GLB NX pte
[    0.023191] 0xfffffe00004fd000-0xfffffe00004fe000           4K     RW                 GLB NX pte
[    0.023204] 0xfffffe00004fe000-0xfffffe0000501000          12K     ro                 GLB NX pte
[    0.023217] 0xfffffe0000501000-0xfffffe0000502000           4K                               pte
[    0.023229] 0xfffffe0000502000-0xfffffe0000503000           4K     RW                 GLB NX pte
[    0.023243] 0xfffffe0000503000-0xfffffe0000504000           4K                               pte
[    0.023255] 0xfffffe0000504000-0xfffffe0000505000           4K     RW                 GLB NX pte
[    0.023268] 0xfffffe0000505000-0xfffffe0000508000          12K                               pte
[    0.023280] 0xfffffe0000508000-0xfffffe0000509000           4K     RW                 GLB NX pte
[    0.023293] 0xfffffe0000509000-0xfffffe000050a000           4K                               pte
[    0.023305] 0xfffffe000050a000-0xfffffe000050b000           4K     RW                 GLB NX pte
[    0.023319] 0xfffffe000050b000-0xfffffe000050c000           4K                               pte
[    0.023331] 0xfffffe000050c000-0xfffffe000050d000           4K     RW                 GLB NX pte
[    0.023344] 0xfffffe000050d000-0xfffffe000052f000         136K                               pte
[    0.023356] 0xfffffe000052f000-0xfffffe0000530000           4K     ro                 GLB NX pte
[    0.023369] 0xfffffe0000530000-0xfffffe0000531000           4K     RW                 GLB NX pte
[    0.023383] 0xfffffe0000531000-0xfffffe0000534000          12K     ro                 GLB NX pte
[    0.023396] 0xfffffe0000534000-0xfffffe0000535000           4K                               pte
[    0.023408] 0xfffffe0000535000-0xfffffe0000536000           4K     RW                 GLB NX pte
[    0.023421] 0xfffffe0000536000-0xfffffe0000537000           4K                               pte
[    0.023433] 0xfffffe0000537000-0xfffffe0000538000           4K     RW                 GLB NX pte
[    0.023447] 0xfffffe0000538000-0xfffffe000053b000          12K                               pte
[    0.023459] 0xfffffe000053b000-0xfffffe000053c000           4K     RW                 GLB NX pte
[    0.023472] 0xfffffe000053c000-0xfffffe000053d000           4K                               pte
[    0.023484] 0xfffffe000053d000-0xfffffe000053e000           4K     RW                 GLB NX pte
[    0.023497] 0xfffffe000053e000-0xfffffe000053f000           4K                               pte
[    0.023509] 0xfffffe000053f000-0xfffffe0000540000           4K     RW                 GLB NX pte
[    0.023524] 0xfffffe0000540000-0xfffffe0000562000         136K                               pte
[    0.023539] 0xfffffe0000562000-0xfffffe0000563000           4K     ro                 GLB NX pte
[    0.023553] 0xfffffe0000563000-0xfffffe0000564000           4K     RW                 GLB NX pte
[    0.023565] 0xfffffe0000564000-0xfffffe0000567000          12K     ro                 GLB NX pte
[    0.023578] 0xfffffe0000567000-0xfffffe0000568000           4K                               pte
[    0.023589] 0xfffffe0000568000-0xfffffe0000569000           4K     RW                 GLB NX pte
[    0.023602] 0xfffffe0000569000-0xfffffe000056a000           4K                               pte
[    0.023613] 0xfffffe000056a000-0xfffffe000056b000           4K     RW                 GLB NX pte
[    0.023626] 0xfffffe000056b000-0xfffffe000056e000          12K                               pte
[    0.023637] 0xfffffe000056e000-0xfffffe000056f000           4K     RW                 GLB NX pte
[    0.023650] 0xfffffe000056f000-0xfffffe0000570000           4K                               pte
[    0.023661] 0xfffffe0000570000-0xfffffe0000571000           4K     RW                 GLB NX pte
[    0.023674] 0xfffffe0000571000-0xfffffe0000572000           4K                               pte
[    0.023685] 0xfffffe0000572000-0xfffffe0000573000           4K     RW                 GLB NX pte
[    0.023698] 0xfffffe0000573000-0xfffffe0000595000         136K                               pte
[    0.023709] 0xfffffe0000595000-0xfffffe0000596000           4K     ro                 GLB NX pte
[    0.023722] 0xfffffe0000596000-0xfffffe0000597000           4K     RW                 GLB NX pte
[    0.023734] 0xfffffe0000597000-0xfffffe000059a000          12K     ro                 GLB NX pte
[    0.023747] 0xfffffe000059a000-0xfffffe000059b000           4K                               pte
[    0.023758] 0xfffffe000059b000-0xfffffe000059c000           4K     RW                 GLB NX pte
[    0.023771] 0xfffffe000059c000-0xfffffe000059d000           4K                               pte
[    0.023782] 0xfffffe000059d000-0xfffffe000059e000           4K     RW                 GLB NX pte
[    0.023795] 0xfffffe000059e000-0xfffffe00005a1000          12K                               pte
[    0.023806] 0xfffffe00005a1000-0xfffffe00005a2000           4K     RW                 GLB NX pte
[    0.023819] 0xfffffe00005a2000-0xfffffe00005a3000           4K                               pte
[    0.023830] 0xfffffe00005a3000-0xfffffe00005a4000           4K     RW                 GLB NX pte
[    0.023843] 0xfffffe00005a4000-0xfffffe00005a5000           4K                               pte
[    0.023854] 0xfffffe00005a5000-0xfffffe00005a6000           4K     RW                 GLB NX pte
[    0.023867] 0xfffffe00005a6000-0xfffffe00005c8000         136K                               pte
[    0.023878] 0xfffffe00005c8000-0xfffffe00005c9000           4K     ro                 GLB NX pte
[    0.023891] 0xfffffe00005c9000-0xfffffe00005ca000           4K     RW                 GLB NX pte
[    0.023903] 0xfffffe00005ca000-0xfffffe00005cd000          12K     ro                 GLB NX pte
[    0.023916] 0xfffffe00005cd000-0xfffffe00005ce000           4K                               pte
[    0.023927] 0xfffffe00005ce000-0xfffffe00005cf000           4K     RW                 GLB NX pte
[    0.023940] 0xfffffe00005cf000-0xfffffe00005d0000           4K                               pte
[    0.023951] 0xfffffe00005d0000-0xfffffe00005d1000           4K     RW                 GLB NX pte
[    0.023964] 0xfffffe00005d1000-0xfffffe00005d4000          12K                               pte
[    0.023975] 0xfffffe00005d4000-0xfffffe00005d5000           4K     RW                 GLB NX pte
[    0.023988] 0xfffffe00005d5000-0xfffffe00005d6000           4K                               pte
[    0.023999] 0xfffffe00005d6000-0xfffffe00005d7000           4K     RW                 GLB NX pte
[    0.024012] 0xfffffe00005d7000-0xfffffe00005d8000           4K                               pte
[    0.024025] 0xfffffe00005d8000-0xfffffe00005d9000           4K     RW                 GLB NX pte
[    0.024038] 0xfffffe00005d9000-0xfffffe00005fb000         136K                               pte
[    0.024050] 0xfffffe00005fb000-0xfffffe00005fc000           4K     ro                 GLB NX pte
[    0.024062] 0xfffffe00005fc000-0xfffffe00005fd000           4K     RW                 GLB NX pte
[    0.024075] 0xfffffe00005fd000-0xfffffe0000600000          12K     ro                 GLB NX pte
[    0.024087] 0xfffffe0000600000-0xfffffe0000601000           4K                               pte
[    0.024099] 0xfffffe0000601000-0xfffffe0000602000           4K     RW                 GLB NX pte
[    0.024111] 0xfffffe0000602000-0xfffffe0000603000           4K                               pte
[    0.024123] 0xfffffe0000603000-0xfffffe0000604000           4K     RW                 GLB NX pte
[    0.024135] 0xfffffe0000604000-0xfffffe0000607000          12K                               pte
[    0.024147] 0xfffffe0000607000-0xfffffe0000608000           4K     RW                 GLB NX pte
[    0.024159] 0xfffffe0000608000-0xfffffe0000609000           4K                               pte
[    0.024171] 0xfffffe0000609000-0xfffffe000060a000           4K     RW                 GLB NX pte
[    0.024183] 0xfffffe000060a000-0xfffffe000060b000           4K                               pte
[    0.024195] 0xfffffe000060b000-0xfffffe000060c000           4K     RW                 GLB NX pte
[    0.024207] 0xfffffe000060c000-0xfffffe000062e000         136K                               pte
[    0.024219] 0xfffffe000062e000-0xfffffe000062f000           4K     ro                 GLB NX pte
[    0.024231] 0xfffffe000062f000-0xfffffe0000630000           4K     RW                 GLB NX pte
[    0.024244] 0xfffffe0000630000-0xfffffe0000633000          12K     ro                 GLB NX pte
[    0.024256] 0xfffffe0000633000-0xfffffe0000634000           4K                               pte
[    0.024268] 0xfffffe0000634000-0xfffffe0000635000           4K     RW                 GLB NX pte
[    0.024280] 0xfffffe0000635000-0xfffffe0000636000           4K                               pte
[    0.024292] 0xfffffe0000636000-0xfffffe0000637000           4K     RW                 GLB NX pte
[    0.024304] 0xfffffe0000637000-0xfffffe000063a000          12K                               pte
[    0.024316] 0xfffffe000063a000-0xfffffe000063b000           4K     RW                 GLB NX pte
[    0.024328] 0xfffffe000063b000-0xfffffe000063c000           4K                               pte
[    0.024340] 0xfffffe000063c000-0xfffffe000063d000           4K     RW                 GLB NX pte
[    0.024352] 0xfffffe000063d000-0xfffffe000063e000           4K                               pte
[    0.024364] 0xfffffe000063e000-0xfffffe000063f000           4K     RW                 GLB NX pte
[    0.024379] 0xfffffe000063f000-0xfffffe0000800000        1796K                               pte
[    0.024392] 0xfffffe0000800000-0xfffffe0040000000        1016M                               pmd
[    0.024406] 0xfffffe0040000000-0xfffffe8000000000         511G                               pud
[    0.024418] 0xfffffe8000000000-0xffffff0000000000         512G                               pgd
[    0.024429] ---[ ESPfix Area ]---
[    0.024436] 0xffffff0000000000-0xffffff5400000000         336G                               pud
[    0.024447] 0xffffff5400000000-0xffffff5400003000          12K                               pte
[    0.024458] 0xffffff5400003000-0xffffff5400004000           4K     ro                 GLB NX pte
[    0.024471] 0xffffff5400004000-0xffffff5400013000          60K                               pte
[    0.024483] 0xffffff5400013000-0xffffff5400014000           4K     ro                 GLB NX pte
[    0.024495] 0xffffff5400014000-0xffffff5400023000          60K                               pte
[    0.024507] 0xffffff5400023000-0xffffff5400024000           4K     ro                 GLB NX pte
[    0.024519] 0xffffff5400024000-0xffffff5400033000          60K                               pte
[    0.024531] 0xffffff5400033000-0xffffff5400034000           4K     ro                 GLB NX pte
[    0.024545] 0xffffff5400034000-0xffffff5400043000          60K                               pte
[    0.024560] 0xffffff5400043000-0xffffff5400044000           4K     ro                 GLB NX pte
[    0.024572] 0xffffff5400044000-0xffffff5400053000          60K                               pte
[    0.024584] 0xffffff5400053000-0xffffff5400054000           4K     ro                 GLB NX pte
[    0.024597] 0xffffff5400054000-0xffffff5400063000          60K                               pte
[    0.024608] 0xffffff5400063000-0xffffff5400064000           4K     ro                 GLB NX pte
[    0.024621] 0xffffff5400064000-0xffffff5400073000          60K                               pte
[    0.031762] ... 131059 entries skipped ... 
[    0.031768] ---[ EFI Runtime Services ]---
[    0.031774] 0xffffffef00000000-0xfffffffec0000000          63G                               pud
[    0.031787] 0xfffffffec0000000-0xfffffffeee000000         736M                               pmd
[    0.031798] 0xfffffffeee000000-0xfffffffeee008000          32K     RW                     x  pte
[    0.031811] 0xfffffffeee008000-0xfffffffeee03f000         220K                               pte
[    0.031823] 0xfffffffeee03f000-0xfffffffeee040000           4K                               pte
[    0.031835] 0xfffffffeee040000-0xfffffffeee0a0000         384K     RW                     x  pte
[    0.031849] 0xfffffffeee0a0000-0xfffffffeee200000        1408K                               pte
[    0.031861] 0xfffffffeee200000-0xfffffffeee220000         128K                               pte
[    0.031873] 0xfffffffeee220000-0xfffffffeee268000         288K                               pte
[    0.031887] 0xfffffffeee268000-0xfffffffeee400000        1632K                               pte
[    0.031898] 0xfffffffeee400000-0xfffffffef4800000         100M                               pmd
[    0.031911] 0xfffffffef4800000-0xfffffffef48fc000        1008K                               pte
[    0.031924] 0xfffffffef48fc000-0xfffffffef4a00000        1040K     RW                     x  pte
[    0.031937] 0xfffffffef4a00000-0xfffffffef6200000          24M     RW         PSE         x  pmd
[    0.031950] 0xfffffffef6200000-0xfffffffef620a000          40K     RW                     x  pte
[    0.031964] 0xfffffffef620a000-0xfffffffef6303000         996K                               pte
[    0.031977] 0xfffffffef6303000-0xfffffffef6400000        1012K                               pte
[    0.031988] 0xfffffffef6400000-0xfffffffef6e00000          10M                               pmd
[    0.032001] 0xfffffffef6e00000-0xfffffffef6ee8000         928K                               pte
[    0.032015] 0xfffffffef6ee8000-0xfffffffef70c6000        1912K                               pte
[    0.032027] 0xfffffffef70c6000-0xfffffffef7200000        1256K     RW                     NX pte
[    0.032040] 0xfffffffef7200000-0xfffffffef7a00000           8M     RW         PSE         NX pmd
[    0.032055] 0xfffffffef7a00000-0xfffffffef7b3f000        1276K     RW                     NX pte
[    0.032067] 0xfffffffef7b3f000-0xfffffffef7b42000          12K     ro                     x  pte
[    0.032080] 0xfffffffef7b42000-0xfffffffef7b47000          20K     RW                     NX pte
[    0.032092] 0xfffffffef7b47000-0xfffffffef7b48000           4K     ro                     x  pte
[    0.032105] 0xfffffffef7b48000-0xfffffffef7b4d000          20K     RW                     NX pte
[    0.032118] 0xfffffffef7b4d000-0xfffffffef7b51000          16K     ro                     x  pte
[    0.032130] 0xfffffffef7b51000-0xfffffffef7b56000          20K     RW                     NX pte
[    0.032143] 0xfffffffef7b56000-0xfffffffef7b57000           4K     ro                     x  pte
[    0.032155] 0xfffffffef7b57000-0xfffffffef7b5b000          16K     RW                     NX pte
[    0.032168] 0xfffffffef7b5b000-0xfffffffef7b5c000           4K     ro                     x  pte
[    0.032180] 0xfffffffef7b5c000-0xfffffffef7b61000          20K     RW                     NX pte
[    0.032193] 0xfffffffef7b61000-0xfffffffef7b6e000          52K     ro                     x  pte
[    0.032206] 0xfffffffef7b6e000-0xfffffffef7b75000          28K     RW                     NX pte
[    0.032218] 0xfffffffef7b75000-0xfffffffef7b78000          12K     ro                     x  pte
[    0.032231] 0xfffffffef7b78000-0xfffffffef7b7d000          20K     RW                     NX pte
[    0.032244] 0xfffffffef7b7d000-0xfffffffef7b7e000           4K     ro                     x  pte
[    0.032256] 0xfffffffef7b7e000-0xfffffffef7b83000          20K     RW                     NX pte
[    0.032269] 0xfffffffef7b83000-0xfffffffef7b84000           4K     ro                     x  pte
[    0.032281] 0xfffffffef7b84000-0xfffffffef7b89000          20K     RW                     NX pte
[    0.032294] 0xfffffffef7b89000-0xfffffffef7b8a000           4K     ro                     x  pte
[    0.032306] 0xfffffffef7b8a000-0xfffffffef7b8f000          20K     RW                     NX pte
[    0.032319] 0xfffffffef7b8f000-0xfffffffef7b90000           4K     ro                     x  pte
[    0.032332] 0xfffffffef7b90000-0xfffffffef7b95000          20K     RW                     NX pte
[    0.032344] 0xfffffffef7b95000-0xfffffffef7b96000           4K     ro                     x  pte
[    0.032357] 0xfffffffef7b96000-0xfffffffef7b9b000          20K     RW                     NX pte
[    0.032369] 0xfffffffef7b9b000-0xfffffffef7b9c000           4K     ro                     x  pte
[    0.032382] 0xfffffffef7b9c000-0xfffffffef7ba0000          16K     RW                     NX pte
[    0.032395] 0xfffffffef7ba0000-0xfffffffef7baa000          40K     ro                     x  pte
[    0.032407] 0xfffffffef7baa000-0xfffffffef7bb3000          36K     RW                     NX pte
[    0.032420] 0xfffffffef7bb3000-0xfffffffef7bb9000          24K     ro                     x  pte
[    0.032432] 0xfffffffef7bb9000-0xfffffffef7bbe000          20K     RW                     NX pte
[    0.032445] 0xfffffffef7bbe000-0xfffffffef7bc2000          16K     ro                     x  pte
[    0.032458] 0xfffffffef7bc2000-0xfffffffef7bc7000          20K     RW                     NX pte
[    0.032470] 0xfffffffef7bc7000-0xfffffffef7c00000         228K                               pte
[    0.032482] 0xfffffffef7c00000-0xfffffffefa800000          44M                               pmd
[    0.032494] 0xfffffffefa800000-0xfffffffefe800000          64M     RW         PSE         x  pmd
[    0.032508] 0xfffffffefe800000-0xfffffffefe900000           1M                               pte
[    0.032521] 0xfffffffefe900000-0xfffffffefea10000        1088K     RW     PCD             x  pte
[    0.032536] 0xfffffffefea10000-0xfffffffefeb80000        1472K                               pte
[    0.032548] 0xfffffffefeb80000-0xfffffffefec02000         520K     RW     PCD             x  pte
[    0.032563] 0xfffffffefec02000-0xfffffffefec10000          56K                               pte
[    0.032576] 0xfffffffefec10000-0xfffffffefec11000           4K     RW     PCD             x  pte
[    0.032589] 0xfffffffefec11000-0xfffffffefec30000         124K                               pte
[    0.032600] 0xfffffffefec30000-0xfffffffefec31000           4K     RW     PCD             x  pte
[    0.032614] 0xfffffffefec31000-0xfffffffefed00000         828K                               pte
[    0.032626] 0xfffffffefed00000-0xfffffffefed01000           4K     RW     PCD             x  pte
[    0.032639] 0xfffffffefed01000-0xfffffffefed40000         252K                               pte
[    0.032650] 0xfffffffefed40000-0xfffffffefed45000          20K     RW     PCD             x  pte
[    0.032663] 0xfffffffefed45000-0xfffffffefed80000         236K                               pte
[    0.032675] 0xfffffffefed80000-0xfffffffefed90000          64K     RW     PCD             x  pte
[    0.032688] 0xfffffffefed90000-0xfffffffefedc2000         200K                               pte
[    0.032699] 0xfffffffefedc2000-0xfffffffefedd0000          56K     RW     PCD             x  pte
[    0.032712] 0xfffffffefedd0000-0xfffffffefedd4000          16K                               pte
[    0.032723] 0xfffffffefedd4000-0xfffffffefedd6000           8K     RW     PCD             x  pte
[    0.032736] 0xfffffffefedd6000-0xfffffffefee00000         168K                               pte
[    0.032749] 0xfffffffefee00000-0xfffffffefef00000           1M     RW     PCD             x  pte
[    0.032763] 0xfffffffefef00000-0xfffffffeff000000           1M                               pte
[    0.032775] 0xfffffffeff000000-0xffffffff00000000          16M     RW     PCD PSE         x  pmd
[    0.032788] 0xffffffff00000000-0xffffffff80000000           2G                               pud
[    0.032799] ---[ High Kernel Mapping ]---
[    0.032806] 0xffffffff80000000-0xffffffffa4000000         576M                               pmd
[    0.032818] 0xffffffffa4000000-0xffffffffa7600000          54M     RW         PSE     GLB x  pmd
[    0.032832] 0xffffffffa7600000-0xffffffffc0000000         394M                               pmd
[    0.032843] ---[ Modules ]---
[    0.032850] 0xffffffffc0000000-0xffffffffff000000        1008M                               pmd
[    0.032861] ---[ End Modules ]---
[    0.032867] 0xffffffffff000000-0xffffffffff200000           2M                               pmd
[    0.032884] 0xffffffffff200000-0xffffffffff578000        3552K                               pte
[    0.032895] ---[ Fixmap Area ]---
[    0.032901] 0xffffffffff578000-0xffffffffff5fa000         520K                               pte
[    0.032912] 0xffffffffff5fa000-0xffffffffff5fd000          12K     RW PWT PCD         GLB NX pte
[    0.032925] 0xffffffffff5fd000-0xffffffffff600000          12K                               pte
[    0.032936] 0xffffffffff600000-0xffffffffff601000           4K USR ro                 GLB NX pte
[    0.032952] 0xffffffffff601000-0xffffffffff800000        2044K                               pte
[    0.032964] 0xffffffffff800000-0x0000000000000000           8M                               pmd
[    0.033052] LSM: Security Framework initializing
[    0.033073] Yama: becoming mindful.
[    0.033091] SELinux:  Initializing.
[    0.033125] *** VALIDATE SELinux ***
[    0.033214] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.033269] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.033630] *** VALIDATE proc ***
[    0.033776] *** VALIDATE cgroup1 ***
[    0.033783] *** VALIDATE cgroup2 ***
[    0.033873] LVT offset 1 assigned for vector 0xf9
[    0.033939] LVT offset 2 assigned for vector 0xf4
[    0.033959] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.033967] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.033978] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.033989] Spectre V2 : Mitigation: Full AMD retpoline
[    0.033996] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.034008] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.034018] Spectre V2 : User space: Vulnerable
[    0.034027] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.034239] Freeing SMP alternatives memory: 28K
[    0.037024] smpboot: CPU0: AMD Ryzen 7 2700X Eight-Core Processor (family: 0x17, model: 0x8, stepping: 0x2)
[    0.037024] Performance Events: Fam17h core perfctr, AMD PMU driver.
[    0.037024] ... version:                0
[    0.037024] ... bit width:              48
[    0.037024] ... generic registers:      6
[    0.037024] ... value mask:             0000ffffffffffff
[    0.037024] ... max period:             00007fffffffffff
[    0.037024] ... fixed-purpose events:   0
[    0.037024] ... event mask:             000000000000003f
[    0.037024] rcu: Hierarchical SRCU implementation.
[    0.037069] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.037626] smp: Bringing up secondary CPUs ...
[    0.037892] x86: Booting SMP configuration:
[    0.037904] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
[    0.059113] smp: Brought up 1 node, 16 CPUs
[    0.059113] smpboot: Max logical packages: 2
[    0.059113] smpboot: Total of 16 processors activated (118158.46 BogoMIPS)
[    0.061567] devtmpfs: initialized
[    0.061567] x86/mm: Memory block size: 128MB
[    0.073320] PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
[    0.073320] PM: Registering ACPI NVS region [mem 0xdb410000-0xdb8c5fff] (4939776 bytes)
[    0.075753] DMA-API: preallocated 65536 debug entries
[    0.075763] DMA-API: debugging enabled by kernel config
[    0.075771] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.075789] futex hash table entries: 8192 (order: 8, 1048576 bytes, linear)
[    0.076258] pinctrl core: initialized pinctrl subsystem

[    0.076527] *************************************************************
[    0.076535] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.076544] **                                                         **
[    0.076553] **  IOMMU DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL  **
[    0.076562] **                                                         **
[    0.076570] ** This means that this kernel is built to expose internal **
[    0.076579] ** IOMMU data structures, which may compromise security on **
[    0.076588] ** your system.                                            **
[    0.076596] **                                                         **
[    0.076605] ** If you see this message and you are not debugging the   **
[    0.076614] ** kernel, report this immediately to your vendor!         **
[    0.076622] **                                                         **
[    0.076631] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.076640] *************************************************************
[    0.076698] PM: RTC time: 00:38:01, date: 2019-08-09
[    0.076994] NET: Registered protocol family 16
[    0.077246] audit: initializing netlink subsys (disabled)
[    0.077292] audit: type=2000 audit(1565311081.085:1): state=initialized audit_enabled=0 res=1
[    0.077423] cpuidle: using governor menu
[    0.077623] ACPI: bus type PCI registered
[    0.077623] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.078043] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.078058] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.078074] PCI: Using configuration type 1 for base access
[    0.087859] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.087859] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.153024] cryptomgr_test (102) used greatest stack depth: 13936 bytes left
[    0.153345] kworker/u64:0 (105) used greatest stack depth: 13192 bytes left
[    0.175048] cryptd: max_cpu_qlen set to 1000
[    0.183770] alg: No test for lzo-rle (lzo-rle-generic)
[    0.183770] alg: No test for lzo-rle (lzo-rle-scomp)
[    0.184051] alg: No test for 842 (842-generic)
[    0.184085] alg: No test for 842 (842-scomp)
[    0.188331] fbcon: Taking over console
[    0.189025] ACPI: Added _OSI(Module Device)
[    0.189029] ACPI: Added _OSI(Processor Device)
[    0.189036] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.189043] ACPI: Added _OSI(Processor Aggregator Device)
[    0.189052] ACPI: Added _OSI(Linux-Dell-Video)
[    0.189059] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.189067] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.221030] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    0.226504] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.233855] ACPI: EC: EC started
[    0.233868] ACPI: EC: interrupt blocked
[    0.234227] ACPI: \_SB_.PCI0.SBRG.EC0_: Used as first EC
[    0.234237] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x2, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.234248] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions
[    0.234258] ACPI: Interpreter enabled
[    0.234293] ACPI: (supports S0 S3 S4 S5)
[    0.234300] ACPI: Using IOAPIC for interrupt routing
[    0.235574] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.236371] ACPI: Enabled 3 GPEs in block 00 to 1F
[    0.263076] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.263097] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.263565] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME LTR]
[    0.264012] acpi PNP0A08:00: _OSC: OS now controls [PCIeCapability]
[    0.264057] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.264969] PCI host bridge to bus 0000:00
[    0.264978] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.264987] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.264997] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.265006] pci_bus 0000:00: root bus resource [io  0x0d00-0xefff window]
[    0.265015] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.265027] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.265038] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
[    0.265049] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[    0.265059] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.265091] pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
[    0.265350] pci 0000:00:00.2: [1022:1451] type 00 class 0x080600
[    0.265566] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.265741] pci 0000:00:01.1: [1022:1453] type 01 class 0x060400
[    0.266121] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.266400] pci 0000:00:01.3: [1022:1453] type 01 class 0x060400
[    0.267030] pci 0000:00:01.3: enabling Extended Tags
[    0.267128] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[    0.267392] pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
[    0.267587] pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
[    0.268173] pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
[    0.268546] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.268810] pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
[    0.269005] pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
[    0.269185] pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
[    0.269441] pci 0000:00:07.1: enabling Extended Tags
[    0.269535] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    0.269797] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.269975] pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
[    0.270029] pci 0000:00:08.1: enabling Extended Tags
[    0.270125] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.270428] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.271180] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.271518] pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
[    0.271679] pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
[    0.271841] pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
[    0.272008] pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
[    0.272175] pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
[    0.272339] pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
[    0.272502] pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
[    0.272664] pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
[    0.273113] pci 0000:01:00.0: [8086:2700] type 00 class 0x010802
[    0.273142] pci 0000:01:00.0: reg 0x10: [mem 0xfcf10000-0xfcf13fff 64bit]
[    0.273176] pci 0000:01:00.0: reg 0x30: [mem 0xfcf00000-0xfcf0ffff pref]
[    0.273371] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.273383] pci 0000:00:01.1:   bridge window [mem 0xfcf00000-0xfcffffff]
[    0.274145] pci 0000:02:00.0: [1022:43d0] type 00 class 0x0c0330
[    0.274176] pci 0000:02:00.0: reg 0x10: [mem 0xfcba0000-0xfcba7fff 64bit]
[    0.274222] pci 0000:02:00.0: enabling Extended Tags
[    0.274288] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.274433] pci 0000:02:00.1: [1022:43c8] type 00 class 0x010601
[    0.274490] pci 0000:02:00.1: reg 0x24: [mem 0xfcb80000-0xfcb9ffff]
[    0.274505] pci 0000:02:00.1: reg 0x30: [mem 0xfcb00000-0xfcb7ffff pref]
[    0.274519] pci 0000:02:00.1: enabling Extended Tags
[    0.274571] pci 0000:02:00.1: PME# supported from D3hot D3cold
[    0.275122] pci 0000:02:00.2: [1022:43c6] type 01 class 0x060400
[    0.275175] pci 0000:02:00.2: enabling Extended Tags
[    0.275233] pci 0000:02:00.2: PME# supported from D3hot D3cold
[    0.275389] pci 0000:00:01.3: PCI bridge to [bus 02-08]
[    0.275399] pci 0000:00:01.3:   bridge window [io  0xc000-0xdfff]
[    0.275409] pci 0000:00:01.3:   bridge window [mem 0xfc900000-0xfcbfffff]
[    0.275659] pci 0000:03:00.0: [1022:43c7] type 01 class 0x060400
[    0.275718] pci 0000:03:00.0: enabling Extended Tags
[    0.275787] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.275953] pci 0000:03:01.0: [1022:43c7] type 01 class 0x060400
[    0.276011] pci 0000:03:01.0: enabling Extended Tags
[    0.276085] pci 0000:03:01.0: PME# supported from D3hot D3cold
[    0.276245] pci 0000:03:02.0: [1022:43c7] type 01 class 0x060400
[    0.276303] pci 0000:03:02.0: enabling Extended Tags
[    0.276373] pci 0000:03:02.0: PME# supported from D3hot D3cold
[    0.276532] pci 0000:03:03.0: [1022:43c7] type 01 class 0x060400
[    0.276591] pci 0000:03:03.0: enabling Extended Tags
[    0.276661] pci 0000:03:03.0: PME# supported from D3hot D3cold
[    0.276819] pci 0000:03:04.0: [1022:43c7] type 01 class 0x060400
[    0.276878] pci 0000:03:04.0: enabling Extended Tags
[    0.276948] pci 0000:03:04.0: PME# supported from D3hot D3cold
[    0.277133] pci 0000:02:00.2: PCI bridge to [bus 03-08]
[    0.277145] pci 0000:02:00.2:   bridge window [io  0xc000-0xdfff]
[    0.277156] pci 0000:02:00.2:   bridge window [mem 0xfc900000-0xfcafffff]
[    0.277287] pci 0000:04:00.0: [8086:1539] type 00 class 0x020000
[    0.277340] pci 0000:04:00.0: reg 0x10: [mem 0xfca00000-0xfca1ffff]
[    0.277382] pci 0000:04:00.0: reg 0x18: [io  0xd000-0xd01f]
[    0.277406] pci 0000:04:00.0: reg 0x1c: [mem 0xfca20000-0xfca23fff]
[    0.277603] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    0.277819] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.277831] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.277841] pci 0000:03:00.0:   bridge window [mem 0xfca00000-0xfcafffff]
[    0.277937] pci 0000:05:00.0: [10ec:b822] type 00 class 0x028000
[    0.277988] pci 0000:05:00.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.278031] pci 0000:05:00.0: reg 0x18: [mem 0xfc900000-0xfc90ffff 64bit]
[    0.278217] pci 0000:05:00.0: supports D1 D2
[    0.278224] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.278450] pci 0000:03:01.0: PCI bridge to [bus 05]
[    0.278462] pci 0000:03:01.0:   bridge window [io  0xc000-0xcfff]
[    0.278472] pci 0000:03:01.0:   bridge window [mem 0xfc900000-0xfc9fffff]
[    0.278539] pci 0000:03:02.0: PCI bridge to [bus 06]
[    0.278632] pci 0000:03:03.0: PCI bridge to [bus 07]
[    0.278722] pci 0000:03:04.0: PCI bridge to [bus 08]
[    0.279116] pci 0000:09:00.0: [1002:14a0] type 01 class 0x060400
[    0.279147] pci 0000:09:00.0: reg 0x10: [mem 0xfcd00000-0xfcd03fff]
[    0.279253] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
[    0.279434] pci 0000:00:03.1: PCI bridge to [bus 09-0b]
[    0.279445] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.279454] pci 0000:00:03.1:   bridge window [mem 0xfcc00000-0xfcdfffff]
[    0.280029] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.280102] pci 0000:0a:00.0: [1002:14a1] type 01 class 0x060400
[    0.280213] pci 0000:0a:00.0: PME# supported from D0 D3hot D3cold
[    0.280347] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.280358] pci 0000:09:00.0:   bridge window [io  0xe000-0xefff]
[    0.280368] pci 0000:09:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.280381] pci 0000:09:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.280446] pci 0000:0b:00.0: [1002:66af] type 00 class 0x030000
[    0.280480] pci 0000:0b:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.280500] pci 0000:0b:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref]
[    0.280516] pci 0000:0b:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    0.280529] pci 0000:0b:00.0: reg 0x24: [mem 0xfcc00000-0xfcc7ffff]
[    0.280544] pci 0000:0b:00.0: reg 0x30: [mem 0xfcc80000-0xfcc9ffff pref]
[    0.280574] pci 0000:0b:00.0: BAR 0: assigned to efifb
[    0.280639] pci 0000:0b:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.280767] pci 0000:0b:00.1: [1002:ab20] type 00 class 0x040300
[    0.280792] pci 0000:0b:00.1: reg 0x10: [mem 0xfcca0000-0xfcca3fff]
[    0.280899] pci 0000:0b:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.281041] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.281053] pci 0000:0a:00.0:   bridge window [io  0xe000-0xefff]
[    0.281063] pci 0000:0a:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.281075] pci 0000:0a:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.281676] pci 0000:0c:00.0: [1022:145a] type 00 class 0x130000
[    0.281713] pci 0000:0c:00.0: enabling Extended Tags
[    0.281842] pci 0000:0c:00.2: [1022:1456] type 00 class 0x108000
[    0.281868] pci 0000:0c:00.2: reg 0x18: [mem 0xfc700000-0xfc7fffff]
[    0.281884] pci 0000:0c:00.2: reg 0x24: [mem 0xfc800000-0xfc801fff]
[    0.281899] pci 0000:0c:00.2: enabling Extended Tags
[    0.282046] pci 0000:0c:00.3: [1022:145f] type 00 class 0x0c0330
[    0.282068] pci 0000:0c:00.3: reg 0x10: [mem 0xfc600000-0xfc6fffff 64bit]
[    0.282099] pci 0000:0c:00.3: enabling Extended Tags
[    0.282145] pci 0000:0c:00.3: PME# supported from D0 D3hot D3cold
[    0.282273] pci 0000:00:07.1: PCI bridge to [bus 0c]
[    0.282283] pci 0000:00:07.1:   bridge window [mem 0xfc600000-0xfc8fffff]
[    0.282700] pci 0000:0d:00.0: [1022:1455] type 00 class 0x130000
[    0.282739] pci 0000:0d:00.0: enabling Extended Tags
[    0.282877] pci 0000:0d:00.2: [1022:7901] type 00 class 0x010601
[    0.282917] pci 0000:0d:00.2: reg 0x24: [mem 0xfce08000-0xfce08fff]
[    0.282933] pci 0000:0d:00.2: enabling Extended Tags
[    0.282980] pci 0000:0d:00.2: PME# supported from D3hot D3cold
[    0.283106] pci 0000:0d:00.3: [1022:1457] type 00 class 0x040300
[    0.283125] pci 0000:0d:00.3: reg 0x10: [mem 0xfce00000-0xfce07fff]
[    0.283153] pci 0000:0d:00.3: enabling Extended Tags
[    0.283199] pci 0000:0d:00.3: PME# supported from D0 D3hot D3cold
[    0.283337] pci 0000:00:08.1: PCI bridge to [bus 0d]
[    0.283348] pci 0000:00:08.1:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.284183] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
[    0.284321] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
[    0.284443] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
[    0.284582] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
[    0.284711] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
[    0.284821] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
[    0.284935] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
[    0.285050] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
[    0.286482] ACPI: EC: interrupt unblocked
[    0.286508] ACPI: EC: event unblocked
[    0.286524] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x2, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.286537] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions and events
[    0.287062] pci 0000:0b:00.0: vgaarb: setting as boot VGA device
[    0.287078] pci 0000:0b:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.287091] pci 0000:0b:00.0: vgaarb: bridge control possible
[    0.287099] vgaarb: loaded
[    0.287217] SCSI subsystem initialized
[    0.287332] libata version 3.00 loaded.
[    0.287332] ACPI: bus type USB registered
[    0.287332] usbcore: registered new interface driver usbfs
[    0.287332] usbcore: registered new interface driver hub
[    0.287406] usbcore: registered new device driver usb
[    0.287406] pps_core: LinuxPPS API ver. 1 registered
[    0.287406] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.287406] PTP clock support registered
[    0.287467] EDAC MC: Ver: 3.0.0
[    0.288190] Registered efivars operations
[    0.310649] PCI: Using ACPI for IRQ routing
[    0.314248] PCI: pci_cache_line_size set to 64 bytes
[    0.314328] e820: reserve RAM buffer [mem 0x09d00000-0x0bffffff]
[    0.314335] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.314337] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    0.314338] e820: reserve RAM buffer [mem 0xcf6d4018-0xcfffffff]
[    0.314340] e820: reserve RAM buffer [mem 0xcf6ee018-0xcfffffff]
[    0.314342] e820: reserve RAM buffer [mem 0xd8ae8000-0xdbffffff]
[    0.314343] e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
[    0.314345] e820: reserve RAM buffer [mem 0x81f380000-0x81fffffff]
[    0.315028] NetLabel: Initializing
[    0.315028] NetLabel:  domain hash size = 128
[    0.315028] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.315028] NetLabel:  unlabeled traffic allowed by default
[    0.315237] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.315237] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.317131] clocksource: Switched to clocksource tsc-early
[    0.355883] VFS: Disk quotas dquot_6.6.0
[    0.355920] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.355990] *** VALIDATE hugetlbfs ***
[    0.356114] pnp: PnP ACPI init
[    0.356348] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.356373] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.356594] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.356929] system 00:02: [io  0x02a0-0x02af] has been reserved
[    0.356939] system 00:02: [io  0x0230-0x023f] has been reserved
[    0.356948] system 00:02: [io  0x0290-0x029f] has been reserved
[    0.356961] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.357475] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.357486] system 00:03: [io  0x040b] has been reserved
[    0.357494] system 00:03: [io  0x04d6] has been reserved
[    0.357503] system 00:03: [io  0x0c00-0x0c01] has been reserved
[    0.357512] system 00:03: [io  0x0c14] has been reserved
[    0.357520] system 00:03: [io  0x0c50-0x0c51] has been reserved
[    0.357530] system 00:03: [io  0x0c52] has been reserved
[    0.357539] system 00:03: [io  0x0c6c] has been reserved
[    0.357547] system 00:03: [io  0x0c6f] has been reserved
[    0.357555] system 00:03: [io  0x0cd0-0x0cd1] has been reserved
[    0.357564] system 00:03: [io  0x0cd2-0x0cd3] has been reserved
[    0.357573] system 00:03: [io  0x0cd4-0x0cd5] has been reserved
[    0.357582] system 00:03: [io  0x0cd6-0x0cd7] has been reserved
[    0.357591] system 00:03: [io  0x0cd8-0x0cdf] has been reserved
[    0.357599] system 00:03: [io  0x0800-0x089f] has been reserved
[    0.357608] system 00:03: [io  0x0b00-0x0b0f] has been reserved
[    0.357617] system 00:03: [io  0x0b20-0x0b3f] has been reserved
[    0.357626] system 00:03: [io  0x0900-0x090f] has been reserved
[    0.357635] system 00:03: [io  0x0910-0x091f] has been reserved
[    0.357646] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.357656] system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.357666] system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.357676] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.357686] system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.357696] system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.357706] system 00:03: [mem 0xff000000-0xffffffff] has been reserved
[    0.357720] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.358743] pnp: PnP ACPI: found 4 devices
[    0.362062] thermal_sys: Registered thermal governor 'fair_share'
[    0.362063] thermal_sys: Registered thermal governor 'bang_bang'
[    0.362073] thermal_sys: Registered thermal governor 'step_wise'
[    0.362081] thermal_sys: Registered thermal governor 'user_space'
[    0.366644] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.366751] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.366762] pci 0000:00:01.1:   bridge window [mem 0xfcf00000-0xfcffffff]
[    0.366775] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.366784] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.366795] pci 0000:03:00.0:   bridge window [mem 0xfca00000-0xfcafffff]
[    0.366810] pci 0000:03:01.0: PCI bridge to [bus 05]
[    0.366818] pci 0000:03:01.0:   bridge window [io  0xc000-0xcfff]
[    0.366830] pci 0000:03:01.0:   bridge window [mem 0xfc900000-0xfc9fffff]
[    0.366844] pci 0000:03:02.0: PCI bridge to [bus 06]
[    0.366860] pci 0000:03:03.0: PCI bridge to [bus 07]
[    0.366876] pci 0000:03:04.0: PCI bridge to [bus 08]
[    0.366892] pci 0000:02:00.2: PCI bridge to [bus 03-08]
[    0.366900] pci 0000:02:00.2:   bridge window [io  0xc000-0xdfff]
[    0.366911] pci 0000:02:00.2:   bridge window [mem 0xfc900000-0xfcafffff]
[    0.366925] pci 0000:00:01.3: PCI bridge to [bus 02-08]
[    0.366933] pci 0000:00:01.3:   bridge window [io  0xc000-0xdfff]
[    0.366943] pci 0000:00:01.3:   bridge window [mem 0xfc900000-0xfcbfffff]
[    0.366956] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.366964] pci 0000:0a:00.0:   bridge window [io  0xe000-0xefff]
[    0.366979] pci 0000:0a:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.366990] pci 0000:0a:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367003] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.367012] pci 0000:09:00.0:   bridge window [io  0xe000-0xefff]
[    0.367023] pci 0000:09:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.367033] pci 0000:09:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367047] pci 0000:00:03.1: PCI bridge to [bus 09-0b]
[    0.367055] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.367065] pci 0000:00:03.1:   bridge window [mem 0xfcc00000-0xfcdfffff]
[    0.367075] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367087] pci 0000:00:07.1: PCI bridge to [bus 0c]
[    0.367096] pci 0000:00:07.1:   bridge window [mem 0xfc600000-0xfc8fffff]
[    0.367108] pci 0000:00:08.1: PCI bridge to [bus 0d]
[    0.367117] pci 0000:00:08.1:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.367130] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.367138] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.367147] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.367156] pci_bus 0000:00: resource 7 [io  0x0d00-0xefff window]
[    0.367165] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.367177] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.367187] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfec2ffff window]
[    0.367197] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
[    0.367206] pci_bus 0000:01: resource 1 [mem 0xfcf00000-0xfcffffff]
[    0.367215] pci_bus 0000:02: resource 0 [io  0xc000-0xdfff]
[    0.367223] pci_bus 0000:02: resource 1 [mem 0xfc900000-0xfcbfffff]
[    0.367231] pci_bus 0000:03: resource 0 [io  0xc000-0xdfff]
[    0.367239] pci_bus 0000:03: resource 1 [mem 0xfc900000-0xfcafffff]
[    0.367247] pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
[    0.367255] pci_bus 0000:04: resource 1 [mem 0xfca00000-0xfcafffff]
[    0.367264] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
[    0.367271] pci_bus 0000:05: resource 1 [mem 0xfc900000-0xfc9fffff]
[    0.367280] pci_bus 0000:09: resource 0 [io  0xe000-0xefff]
[    0.367288] pci_bus 0000:09: resource 1 [mem 0xfcc00000-0xfcdfffff]
[    0.367296] pci_bus 0000:09: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367306] pci_bus 0000:0a: resource 0 [io  0xe000-0xefff]
[    0.367314] pci_bus 0000:0a: resource 1 [mem 0xfcc00000-0xfccfffff]
[    0.367322] pci_bus 0000:0a: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367332] pci_bus 0000:0b: resource 0 [io  0xe000-0xefff]
[    0.367340] pci_bus 0000:0b: resource 1 [mem 0xfcc00000-0xfccfffff]
[    0.367348] pci_bus 0000:0b: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367358] pci_bus 0000:0c: resource 1 [mem 0xfc600000-0xfc8fffff]
[    0.367367] pci_bus 0000:0d: resource 1 [mem 0xfce00000-0xfcefffff]
[    0.367597] NET: Registered protocol family 2
[    0.368059] tcp_listen_portaddr_hash hash table entries: 16384 (order: 8, 1441792 bytes, linear)
[    0.368277] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.368913] TCP bind hash table entries: 65536 (order: 10, 5242880 bytes, vmalloc)
[    0.369702] TCP: Hash tables configured (established 262144 bind 65536)
[    0.369961] UDP hash table entries: 16384 (order: 9, 3145728 bytes, linear)
[    0.370471] UDP-Lite hash table entries: 16384 (order: 9, 3145728 bytes, linear)
[    0.371058] NET: Registered protocol family 1
[    0.371072] NET: Registered protocol family 44
[    0.371490] pci 0000:0b:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.371527] pci 0000:0b:00.1: D0 power state depends on 0000:0b:00.0
[    0.371946] PCI: CLS 64 bytes, default 64
[    0.372096] Trying to unpack rootfs image as initramfs...
[    0.784681] Freeing initrd memory: 35232K
[    0.784879] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    0.785593] pci 0000:00:01.0: Adding to iommu group 0
[    0.785908] pci 0000:00:01.1: Adding to iommu group 1
[    0.786159] pci 0000:00:01.3: Adding to iommu group 2
[    0.786490] pci 0000:00:02.0: Adding to iommu group 3
[    0.786742] pci 0000:00:03.0: Adding to iommu group 4
[    0.787085] pci 0000:00:03.1: Adding to iommu group 5
[    0.787335] pci 0000:00:04.0: Adding to iommu group 6
[    0.787667] pci 0000:00:07.0: Adding to iommu group 7
[    0.787912] pci 0000:00:07.1: Adding to iommu group 8
[    0.788246] pci 0000:00:08.0: Adding to iommu group 9
[    0.788553] pci 0000:00:08.1: Adding to iommu group 10
[    0.788808] pci 0000:00:14.0: Adding to iommu group 11
[    0.788848] pci 0000:00:14.3: Adding to iommu group 11
[    0.789258] pci 0000:00:18.0: Adding to iommu group 12
[    0.789302] pci 0000:00:18.1: Adding to iommu group 12
[    0.789341] pci 0000:00:18.2: Adding to iommu group 12
[    0.789380] pci 0000:00:18.3: Adding to iommu group 12
[    0.789419] pci 0000:00:18.4: Adding to iommu group 12
[    0.789459] pci 0000:00:18.5: Adding to iommu group 12
[    0.789502] pci 0000:00:18.6: Adding to iommu group 12
[    0.789541] pci 0000:00:18.7: Adding to iommu group 12
[    0.789775] pci 0000:01:00.0: Adding to iommu group 13
[    0.790136] pci 0000:02:00.0: Adding to iommu group 14
[    0.790188] pci 0000:02:00.1: Adding to iommu group 14
[    0.790237] pci 0000:02:00.2: Adding to iommu group 14
[    0.790264] pci 0000:03:00.0: Adding to iommu group 14
[    0.790291] pci 0000:03:01.0: Adding to iommu group 14
[    0.790317] pci 0000:03:02.0: Adding to iommu group 14
[    0.790342] pci 0000:03:03.0: Adding to iommu group 14
[    0.790366] pci 0000:03:04.0: Adding to iommu group 14
[    0.790398] pci 0000:04:00.0: Adding to iommu group 14
[    0.790432] pci 0000:05:00.0: Adding to iommu group 14
[    0.790741] pci 0000:09:00.0: Adding to iommu group 15
[    0.790994] pci 0000:0a:00.0: Adding to iommu group 16
[    0.791417] pci 0000:0b:00.0: Adding to iommu group 17
[    0.791724] pci 0000:0b:00.0: Using iommu direct mapping
[    0.791916] pci 0000:0b:00.1: Adding to iommu group 18
[    0.792132] pci 0000:0c:00.0: Adding to iommu group 19
[    0.792450] pci 0000:0c:00.2: Adding to iommu group 20
[    0.792746] pci 0000:0c:00.3: Adding to iommu group 21
[    0.792992] pci 0000:0d:00.0: Adding to iommu group 22
[    0.793304] pci 0000:0d:00.2: Adding to iommu group 23
[    0.793542] pci 0000:0d:00.3: Adding to iommu group 24
[    0.793732] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[    0.793742] pci 0000:00:00.2: AMD-Vi: Extended features (0xf77ef22294ada):
[    0.793751]  PPR NX GT IA GA PC GA_vAPIC
[    0.793759] AMD-Vi: Interrupt remapping enabled
[    0.793766] AMD-Vi: Virtual APIC enabled
[    0.793926] AMD-Vi: Lazy IO/TLB flushing enabled
[    0.793938] __memblock_free_late: [0x000000081e2e3000-0x000000081e322fff] swiotlb_exit+0xc3/0x156
[    0.793970] __memblock_free_late: [0x000000081e323000-0x000000081e342fff] swiotlb_exit+0x104/0x156
[    0.793998] __memblock_free_late: [0x00000000cb6d2000-0x00000000cf6d1fff] swiotlb_exit+0x129/0x156
[    0.800030] amd_uncore: AMD NB counters detected
[    0.800053] amd_uncore: AMD LLC counters detected
[    0.800440] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.802938] check: Scanning for low memory corruption every 60 seconds
[    0.806345] Initialise system trusted keyrings
[    0.806405] Key type blacklist registered
[    0.806479] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[    0.810740] zbud: loaded
[    0.812405] Platform Keyring initialized
[    0.816801] NET: Registered protocol family 38
[    0.816819] Key type asymmetric registered
[    0.816831] Asymmetric key parser 'x509' registered
[    0.816853] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.816979] io scheduler mq-deadline registered
[    0.816992] io scheduler kyber registered
[    0.817061] io scheduler bfq registered
[    0.817562] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.827663] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.827715] efifb: probing for efifb
[    0.827741] efifb: No BGRT, not showing boot graphics
[    0.827749] efifb: framebuffer at 0xe0000000, using 3072k, total 3072k
[    0.827758] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    0.827766] efifb: scrolling: redraw
[    0.827772] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.828042] Console: switching to colour frame buffer device 128x48
[    0.829352] fb0: EFI VGA frame buffer device
[    0.829589] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.829645] ACPI: Power Button [PWRB]
[    0.829730] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.829896] ACPI: Power Button [PWRF]
[    0.830003] Monitor-Mwait will be used to enter C-1 state
[    0.833090] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.854061] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.858064] Non-volatile memory driver v1.3
[    0.858143] Linux agpgart interface v0.103
[    0.860766] ahci 0000:02:00.1: version 3.0
[    0.860935] ahci 0000:02:00.1: SSS flag set, parallel bus scan disabled
[    0.861020] ahci 0000:02:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
[    0.861052] ahci 0000:02:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
[    0.862588] scsi host0: ahci
[    0.862874] scsi host1: ahci
[    0.863074] scsi host2: ahci
[    0.863260] scsi host3: ahci
[    0.863449] scsi host4: ahci
[    0.863630] scsi host5: ahci
[    0.863814] scsi host6: ahci
[    0.864005] scsi host7: ahci
[    0.864107] ata1: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80100 irq 42
[    0.864136] ata2: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80180 irq 42
[    0.864165] ata3: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80200 irq 42
[    0.864683] ata4: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80280 irq 42
[    0.865187] ata5: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80300 irq 42
[    0.865676] ata6: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80380 irq 42
[    0.866155] ata7: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80400 irq 42
[    0.866629] ata8: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80480 irq 42
[    0.867302] ahci 0000:0d:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.867773] ahci 0000:0d:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    0.868509] scsi host8: ahci
[    0.869065] ata9: SATA max UDMA/133 abar m4096@0xfce08000 port 0xfce08100 irq 44
[    0.869736] libphy: Fixed MDIO Bus: probed
[    0.870375] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.870872] ehci-pci: EHCI PCI platform driver
[    0.871375] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.871871] ohci-pci: OHCI PCI platform driver
[    0.872388] uhci_hcd: USB Universal Host Controller Interface driver
[    0.873078] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.873759] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
[    0.929864] xhci_hcd 0000:02:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[    0.931255] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.03
[    0.931780] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.932291] usb usb1: Product: xHCI Host Controller
[    0.932795] usb usb1: Manufacturer: Linux 5.3.0-0.rc3.git1.2.fc31.x86_64 xhci-hcd
[    0.933314] usb usb1: SerialNumber: 0000:02:00.0
[    0.934196] hub 1-0:1.0: USB hub found
[    0.934767] hub 1-0:1.0: 14 ports detected
[    0.972798] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.973404] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[    0.973911] xhci_hcd 0000:02:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.974499] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.975046] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.03
[    0.975555] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.976058] usb usb2: Product: xHCI Host Controller
[    0.976547] usb usb2: Manufacturer: Linux 5.3.0-0.rc3.git1.2.fc31.x86_64 xhci-hcd
[    0.977043] usb usb2: SerialNumber: 0000:02:00.0
[    0.977754] hub 2-0:1.0: USB hub found
[    0.978283] hub 2-0:1.0: 8 ports detected
[    0.999123] xhci_hcd 0000:0c:00.3: xHCI Host Controller
[    0.999672] xhci_hcd 0000:0c:00.3: new USB bus registered, assigned bus number 3
[    1.000270] xhci_hcd 0000:0c:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x0000000000000410
[    1.001342] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.03
[    1.001860] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.002383] usb usb3: Product: xHCI Host Controller
[    1.002909] usb usb3: Manufacturer: Linux 5.3.0-0.rc3.git1.2.fc31.x86_64 xhci-hcd
[    1.003459] usb usb3: SerialNumber: 0000:0c:00.3
[    1.004203] hub 3-0:1.0: USB hub found
[    1.004757] hub 3-0:1.0: 4 ports detected
[    1.005687] xhci_hcd 0000:0c:00.3: xHCI Host Controller
[    1.006306] xhci_hcd 0000:0c:00.3: new USB bus registered, assigned bus number 4
[    1.006892] xhci_hcd 0000:0c:00.3: Host supports USB 3.0 SuperSpeed
[    1.007501] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.008159] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.03
[    1.008782] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.009405] usb usb4: Product: xHCI Host Controller
[    1.010005] usb usb4: Manufacturer: Linux 5.3.0-0.rc3.git1.2.fc31.x86_64 xhci-hcd
[    1.010631] usb usb4: SerialNumber: 0000:0c:00.3
[    1.011433] hub 4-0:1.0: USB hub found
[    1.012019] hub 4-0:1.0: 4 ports detected
[    1.013014] usbcore: registered new interface driver usbserial_generic
[    1.013610] usbserial: USB Serial support registered for generic
[    1.014207] i8042: PNP: No PS/2 controller found.
[    1.014830] mousedev: PS/2 mouse device common for all mice
[    1.015650] rtc_cmos 00:01: RTC can wake from S4
[    1.016552] rtc_cmos 00:01: registered as rtc0
[    1.017119] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.017775] device-mapper: uevent: version 1.0.3
[    1.018463] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
[    1.019613] hidraw: raw HID events driver (C) Jiri Kosina
[    1.020237] usbcore: registered new interface driver usbhid
[    1.020813] usbhid: USB HID core driver
[    1.021588] drop_monitor: Initializing network drop monitor service
[    1.022305] Initializing XFRM netlink socket
[    1.023191] NET: Registered protocol family 10
[    1.029843] Segment Routing with IPv6
[    1.030426] mip6: Mobile IPv6
[    1.030981] NET: Registered protocol family 17
[    1.034280] RAS: Correctable Errors collector initialized.
[    1.034925] microcode: CPU0: patch_level=0x0800820c
[    1.035511] microcode: CPU1: patch_level=0x0800820c
[    1.036077] microcode: CPU2: patch_level=0x0800820c
[    1.036625] microcode: CPU3: patch_level=0x0800820c
[    1.037186] microcode: CPU4: patch_level=0x0800820c
[    1.037963] microcode: CPU5: patch_level=0x0800820c
[    1.038489] microcode: CPU6: patch_level=0x0800820c
[    1.039003] microcode: CPU7: patch_level=0x0800820c
[    1.039524] microcode: CPU8: patch_level=0x0800820c
[    1.040272] microcode: CPU9: patch_level=0x0800820c
[    1.040993] microcode: CPU10: patch_level=0x0800820c
[    1.041457] microcode: CPU11: patch_level=0x0800820c
[    1.041954] microcode: CPU12: patch_level=0x0800820c
[    1.042625] microcode: CPU13: patch_level=0x0800820c
[    1.043060] microcode: CPU14: patch_level=0x0800820c
[    1.043487] microcode: CPU15: patch_level=0x0800820c
[    1.043893] microcode: Microcode Update Driver: v2.2.
[    1.043912] AVX2 version of gcm_enc/dec engaged.
[    1.044731] AES CTR mode by8 optimization enabled
[    1.096915] sched_clock: Marking stable (1104878173, -7975991)->(1232676319, -135774137)
[    1.097786] registered taskstats version 1
[    1.098230] Loading compiled-in X.509 certificates
[    1.120075] Loaded X.509 cert 'Fedora kernel signing key: cfe4bbb90d0f286c35442c9b7f2bc4f7c620d63b'
[    1.120633] zswap: loaded using pool lzo/zbud
[    1.130853] Key type big_key registered
[    1.135600] Key type encrypted registered
[    1.138015] ima: No TPM chip found, activating TPM-bypass!
[    1.138452] ima: Allocated hash algorithm: sha256
[    1.138889] No architecture policies found
[    1.140283] PM:   Magic number: 15:265:607
[    1.140892] rtc_cmos 00:01: setting system clock to 2019-08-09T00:38:02 UTC (1565311082)
[    1.173191] ata1: SATA link down (SStatus 0 SControl 300)
[    1.180194] ata9: SATA link down (SStatus 0 SControl 300)
[    1.297045] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[    1.451839] usb 1-2: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    1.452411] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.452991] usb 1-2: Product: USB2.0 Hub
[    1.453443] usb 1-2: Manufacturer: VIA Labs, Inc.
[    1.460940] hub 1-2:1.0: USB hub found
[    1.463847] hub 1-2:1.0: 4 ports detected
[    1.486088] ata2: SATA link down (SStatus 0 SControl 300)
[    1.551200] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[    1.565846] usb 2-1: LPM exit latency is zeroed, disabling LPM.
[    1.567847] usb 2-1: Int endpoint with wBytesPerInterval of 1024 in config 1 interface 4 altsetting 0 ep 135: setting to 262
[    1.570098] usb 2-1: New USB device found, idVendor=07ca, idProduct=0553, bcdDevice= 3.08
[    1.570514] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.570928] usb 2-1: Product: Live Gamer Ultra-Video
[    1.571343] usb 2-1: Manufacturer: AVerMedia
[    1.571747] usb 2-1: SerialNumber: 5202584700069
[    1.593975] hid-generic 0003:07CA:0553.0001: hiddev96,hidraw0: USB HID v1.11 Device [AVerMedia Live Gamer Ultra-Video] on usb-0000:02:00.0-1/input4
[    1.680424] usb 1-10: new full-speed USB device number 3 using xhci_hcd
[    1.796529] ata3: SATA link down (SStatus 0 SControl 300)
[    1.815505] tsc: Refined TSC clocksource calibration: 3693.059 MHz
[    1.816251] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6a77744cfd5, max_idle_ns: 881590969987 ns
[    1.816921] clocksource: Switched to clocksource tsc
[    1.991766] usb 1-10: New USB device found, idVendor=0b05, idProduct=1872, bcdDevice= 2.00
[    1.992337] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.992887] usb 1-10: Product: AURA LED Controller
[    1.993442] usb 1-10: Manufacturer: AsusTek Computer Inc.
[    1.994002] usb 1-10: SerialNumber: 00000000001A
[    2.015672] hid-generic 0003:0B05:1872.0002: hiddev97,hidraw1: USB HID v1.11 Device [AsusTek Computer Inc. AURA LED Controller] on usb-0000:02:00.0-10/input0
[    2.048115] usb 2-2: new SuperSpeed Gen 1 USB device number 3 using xhci_hcd
[    2.112101] ata4: SATA link down (SStatus 0 SControl 300)
[    2.149445] usb 2-2: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    2.150108] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.150736] usb 2-2: Product: USB3.0 Hub
[    2.151355] usb 2-2: Manufacturer: VIA Labs, Inc.
[    2.160246] hub 2-2:1.0: USB hub found
[    2.161460] hub 2-2:1.0: 4 ports detected
[    2.227413] usb 1-2.1: new high-speed USB device number 4 using xhci_hcd
[    2.351968] usb 1-2.1: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    2.352608] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.353240] usb 1-2.1: Product: USB2.0 Hub
[    2.353861] usb 1-2.1: Manufacturer: VIA Labs, Inc.
[    2.363015] hub 1-2.1:1.0: USB hub found
[    2.365969] hub 1-2.1:1.0: 4 ports detected
[    2.450402] usb 1-12: new full-speed USB device number 5 using xhci_hcd
[    2.583419] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.584868] ata5.00: ATA-8: OCZ-VECTOR150, 1.2, max UDMA/133
[    2.585514] ata5.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.586868] ata5.00: configured for UDMA/133
[    2.588250] scsi 4:0:0:0: Direct-Access     ATA      OCZ-VECTOR150    1.2  PQ: 0 ANSI: 5
[    2.589502] sd 4:0:0:0: Attached scsi generic sg0 type 0
[    2.589534] sd 4:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/224 GiB)
[    2.591109] sd 4:0:0:0: [sda] Write Protect is off
[    2.591753] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.591773] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.594379]  sda: sda1 sda2
[    2.596462] sd 4:0:0:0: [sda] Attached SCSI disk
[    2.679859] usb 1-12: New USB device found, idVendor=0b05, idProduct=185c, bcdDevice= 1.10
[    2.680708] usb 1-12: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.681343] usb 1-12: Product: Bluetooth Radio 
[    2.681954] usb 1-12: Manufacturer: Realtek 
[    2.682561] usb 1-12: SerialNumber: 00e04c000001
[    2.741440] usb 1-2.2: new full-speed USB device number 6 using xhci_hcd
[    3.047893] usb 2-2.1: new SuperSpeed Gen 1 USB device number 4 using xhci_hcd
[    3.055422] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.059586] ata6.00: ATA-10: ST12000NE0007-2GT116, EN01, max UDMA/133
[    3.060439] ata6.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    3.063688] ata6.00: configured for UDMA/133
[    3.065164] scsi 5:0:0:0: Direct-Access     ATA      ST12000NE0007-2G EN01 PQ: 0 ANSI: 5
[    3.066461] sd 5:0:0:0: Attached scsi generic sg1 type 0
[    3.066490] sd 5:0:0:0: [sdb] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[    3.067766] sd 5:0:0:0: [sdb] 4096-byte physical blocks
[    3.068380] sd 5:0:0:0: [sdb] Write Protect is off
[    3.068970] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.068989] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.088715] sd 5:0:0:0: [sdb] Attached SCSI disk
[    3.139064] usb 1-2.2: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.07
[    3.139772] usb 1-2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.140350] usb 1-2.2: Product: USB Receiver
[    3.140907] usb 1-2.2: Manufacturer: Logitech
[    3.148299] usb 2-2.1: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    3.148868] usb 2-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.149432] usb 2-2.1: Product: USB3.0 Hub
[    3.149977] usb 2-2.1: Manufacturer: VIA Labs, Inc.
[    3.176888] hub 2-2.1:1.0: USB hub found
[    3.178308] hub 2-2.1:1.0: 4 ports detected
[    3.204102] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.0/0003:046D:C52B.0003/input/input2
[    3.258191] hid-generic 0003:046D:C52B.0003: input,hidraw2: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input0
[    3.280078] usb 1-2.1.2: new low-speed USB device number 7 using xhci_hcd
[    3.320472] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0004/input/input3
[    3.322092] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0004/input/input4
[    3.375015] ata7: SATA link down (SStatus 0 SControl 300)
[    3.375318] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0004/input/input5
[    3.377678] hid-generic 0003:046D:C52B.0004: input,hiddev98,hidraw3: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input1
[    3.415846] hid-generic 0003:046D:C52B.0005: hiddev99,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input2
[    3.607102] usb 1-2.1.2: New USB device found, idVendor=046d, idProduct=c326, bcdDevice=79.00
[    3.607871] usb 1-2.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.608633] usb 1-2.1.2: Product: USB Keyboard
[    3.609378] usb 1-2.1.2: Manufacturer: Logitech
[    3.663904] usb 2-2.3: new SuperSpeed Gen 1 USB device number 5 using xhci_hcd
[    3.687869] ata8: SATA link down (SStatus 0 SControl 300)
[    3.691248] Freeing unused decrypted memory: 2040K
[    3.693022] Freeing unused kernel image memory: 4948K
[    3.697093] Write protecting the kernel read-only data: 22528k
[    3.699883] Freeing unused kernel image memory: 2036K
[    3.701165] Freeing unused kernel image memory: 1480K
[    3.708884] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    3.709628] rodata_test: all tests were successful
[    3.710373] Run /init as init process
[    3.714164] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.0/0003:046D:C326.0006/input/input7
[    3.737243] efivars: duplicate variable: DeploymentModeNv-97e8965f-c761-4f48-b6e4-9ffa9cb2a2d6
[    3.739345] systemd[1]: systemd v243~rc1-2.fc31 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=hybrid)
[    3.753772] systemd[1]: Detected architecture x86-64.
[    3.754594] systemd[1]: Running in initial RAM disk.
[    3.762865] systemd[1]: Set hostname to <localhost.localdomain>.
[    3.764095] usb 2-2.3: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    3.764947] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.764950] usb 2-2.3: Product: USB3.0 Hub
[    3.764952] usb 2-2.3: Manufacturer: VIA Labs, Inc.
[    3.767386] hid-generic 0003:046D:C326.0006: input,hidraw5: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:02:00.0-2.1.2/input0
[    3.775902] hub 2-2.3:1.0: USB hub found
[    3.777351] hub 2-2.3:1.0: 4 ports detected
[    3.805428] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.1/0003:046D:C326.0007/input/input8
[    3.836159] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice.
[    3.838411] systemd[1]: Reached target Slices.
[    3.840509] systemd[1]: Reached target Swap.
[    3.842532] systemd[1]: Reached target Timers.
[    3.844791] systemd[1]: Listening on Journal Audit Socket.
[    3.846865] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.859304] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.1/0003:046D:C326.0007/input/input9
[    3.860985] hid-generic 0003:046D:C326.0007: input,hiddev100,hidraw6: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:02:00.0-2.1.2/input1
[    3.865037] usb 1-2.3: new high-speed USB device number 8 using xhci_hcd
[    3.988107] usb 1-2.3: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    3.988824] usb 1-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.989541] usb 1-2.3: Product: USB2.0 Hub
[    3.990247] usb 1-2.3: Manufacturer: VIA Labs, Inc.
[    4.002172] hub 1-2.3:1.0: USB hub found
[    4.006110] hub 1-2.3:1.0: 4 ports detected
[    4.084128] usb 2-2.4: new SuperSpeed Gen 1 USB device number 6 using xhci_hcd
[    4.140308] audit: type=1130 audit(1565311085.499:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.183880] usb 2-2.4: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    4.184568] usb 2-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.185235] usb 2-2.4: Product: USB3.0 Hub
[    4.185883] usb 2-2.4: Manufacturer: VIA Labs, Inc.
[    4.198187] hub 2-2.4:1.0: USB hub found
[    4.199139] hub 2-2.4:1.0: 4 ports detected
[    4.221831] audit: type=1130 audit(1565311085.580:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.264054] usb 1-2.4: new high-speed USB device number 9 using xhci_hcd
[    4.387144] usb 1-2.4: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    4.387844] usb 1-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.388569] usb 1-2.4: Product: USB2.0 Hub
[    4.389389] usb 1-2.4: Manufacturer: VIA Labs, Inc.
[    4.403304] hub 1-2.4:1.0: USB hub found
[    4.406162] hub 1-2.4:1.0: 4 ports detected
[    4.458571] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    4.478768] audit: type=1130 audit(1565311085.837:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.485163] dca service started, version 1.12.1
[    4.487389] nvme nvme0: pci function 0000:01:00.0
[    4.495048] usb 1-2.3.1: new full-speed USB device number 10 using xhci_hcd
[    4.510666] audit: type=1130 audit(1565311085.869:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.520144] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.6.0-k
[    4.520896] igb: Copyright (c) 2007-2014 Intel Corporation.
[    4.550284] pps pps0: new PPS source ptp0
[    4.551045] igb 0000:04:00.0: added PHC on eth0
[    4.551788] igb 0000:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    4.552534] igb 0000:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 4c:ed:fb:75:5b:ab
[    4.553284] igb 0000:04:00.0: eth0: PBA No: FFFFFF-0FF
[    4.554020] igb 0000:04:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[    4.556424] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    4.557829] igb 0000:04:00.0 enp4s0: renamed from eth0
[    4.630963] logitech-djreceiver 0003:046D:C52B.0005: hiddev98,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input2
[    4.701734] nvme nvme0: 31/0/0 default/read/poll queues
[    4.706102]  nvme0n1: p1 p2 p3
[    4.742408] PM: Image not found (code -22)
[    4.744115] systemd-hiberna (528) used greatest stack depth: 13160 bytes left
[    4.745873] audit: type=1130 audit(1565311086.104:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-disk-by\x2duuid-9c126bde\x2dfad1\x2d467c\x2d8a1b\x2d472db1d9a6a8 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.747576] input: Logitech Unifying Device. Wireless PID:4026 Keyboard as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input10
[    4.747954] [drm] amdgpu kernel modesetting enabled.
[    4.748177] Parsing CRAT table with 1 nodes
[    4.748187] Ignoring ACPI CRAT on non-APU system
[    4.748195] Virtual CRAT table created for CPU
[    4.748196] Parsing CRAT table with 1 nodes
[    4.748214] Creating topology SYSFS entries
[    4.748260] Topology: Add CPU node
[    4.748261] Finished initializing topology
[    4.748438] amdgpu 0000:0b:00.0: remove_conflicting_pci_framebuffers: bar 0: 0xe0000000 -> 0xefffffff
[    4.748440] amdgpu 0000:0b:00.0: remove_conflicting_pci_framebuffers: bar 2: 0xf0000000 -> 0xf01fffff
[    4.748441] amdgpu 0000:0b:00.0: remove_conflicting_pci_framebuffers: bar 5: 0xfcc00000 -> 0xfcc7ffff
[    4.748442] checking generic (e0000000 300000) vs hw (e0000000 10000000)
[    4.748449] fb0: switching to amdgpudrmfb from EFI VGA
[    4.748623] audit: type=1131 audit(1565311086.104:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-disk-by\x2duuid-9c126bde\x2dfad1\x2d467c\x2d8a1b\x2d472db1d9a6a8 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.762822] Console: switching to colour dummy device 80x25
[    4.763375] amdgpu 0000:0b:00.0: vgaarb: deactivate vga console
[    4.763897] input: Logitech Unifying Device. Wireless PID:4026 Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input11
[    4.764272] [drm] initializing kernel modesetting (VEGA20 0x1002:0x66AF 0x1002:0x081E 0xC1).
[    4.764360] [drm] register mmio base: 0xFCC00000
[    4.764366] [drm] register mmio size: 524288
[    4.764389] [drm] add ip block number 0 <soc15_common>
[    4.764397] [drm] add ip block number 1 <gmc_v9_0>
[    4.764403] [drm] add ip block number 2 <vega10_ih>
[    4.764410] [drm] add ip block number 3 <psp>
[    4.764416] [drm] add ip block number 4 <gfx_v9_0>
[    4.764422] [drm] add ip block number 5 <sdma_v4_0>
[    4.764429] [drm] add ip block number 6 <powerplay>
[    4.764436] [drm] add ip block number 7 <dm>
[    4.764442] [drm] add ip block number 8 <uvd_v7_0>
[    4.764448] [drm] add ip block number 9 <vce_v4_0>
[    4.764480] amdgpu 0000:0b:00.0: No more image in the PCI ROM
[    4.764504] ATOM BIOS: 113-D3600200-106
[    4.764514] input: Logitech Unifying Device. Wireless PID:4026 Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input12
[    4.764718] [drm] UVD(0) is enabled in VM mode
[    4.764724] [drm] UVD(1) is enabled in VM mode
[    4.764730] [drm] UVD(0) ENC is enabled in VM mode
[    4.764736] [drm] UVD(1) ENC is enabled in VM mode
[    4.764742] [drm] VCE enabled in VM mode
[    4.764844] hid-generic 0003:046D:4026.0008: input,hidraw3: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:4026] on usb-0000:02:00.0-2.2/input2:1
[    4.764873] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    4.764893] amdgpu 0000:0b:00.0: VRAM: 16368M 0x0000008000000000 - 0x00000083FEFFFFFF (16368M used)
[    4.764905] amdgpu 0000:0b:00.0: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[    4.764914] amdgpu 0000:0b:00.0: AGP: 267894784M 0x0000008400000000 - 0x0000FFFFFFFFFFFF
[    4.764929] [drm] Detected VRAM RAM=16368M, BAR=256M
[    4.764935] [drm] RAM width 4096bits HBM
[    4.765173] [TTM] Zone  kernel: Available graphics memory: 16382444 KiB
[    4.765191] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    4.765207] [TTM] Initializing pool allocator
[    4.765225] [TTM] Initializing DMA pool allocator
[    4.765447] [drm] amdgpu: 16368M of VRAM memory ready
[    4.765461] [drm] amdgpu: 16368M of GTT memory ready.
[    4.765518] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    4.765692] [drm] PCIE GART of 512M enabled (table at 0x0000008000300000).
[    4.766215] amdgpu 0000:0b:00.0: Direct firmware load for amdgpu/vega20_ta.bin failed with error -2
[    4.766228] amdgpu 0000:0b:00.0: psp v11.0: Failed to load firmware "amdgpu/vega20_ta.bin"
[    4.769097] [drm] use_doorbell being set to: [true]
[    4.770497] [drm] use_doorbell being set to: [true]
[    4.770670] amdgpu: [powerplay] hwmgr_sw_init smu backed is vega20_smu
[    4.770952] [drm] Found UVD firmware ENC: 1.1 DEC: .23 Family ID: 19
[    4.770978] [drm] PSP loading UVD firmware
[    4.772127] [drm] Found VCE firmware Version: 55.5 Binary ID: 4
[    4.772144] [drm] PSP loading VCE firmware
[    4.782961] audit: type=1130 audit(1565311086.141:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.865186] usb 1-2.3.1: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[    4.865199] usb 1-2.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.865209] usb 1-2.3.1: Product: Controller
[    4.865215] usb 1-2.3.1: Manufacturer: Microsoft
[    4.865222] usb 1-2.3.1: SerialNumber: 7EED8DBD807F
[    5.326461] [drm] reserve 0x400000 from 0x8000c00000 for PSP TMR
[    5.421360] input: Logitech T400 as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input16
[    5.421945] logitech-hidpp-device 0003:046D:4026.0008: input,hidraw3: USB HID v1.11 Keyboard [Logitech T400] on usb-0000:02:00.0-2.2/input2:1
[    5.456076] [drm] Display Core initialized with v3.2.35!
[    5.553605] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.553615] [drm] Driver supports precise vblank timestamp query.
[    5.595889] [drm] UVD and UVD ENC initialized successfully.
[    5.696327] [drm] VCE initialized successfully.
[    5.698603] kfd kfd: Allocated 3969056 bytes on gart
[    5.699729] Virtual CRAT table created for GPU
[    5.699737] Parsing CRAT table with 1 nodes
[    5.699767] Creating topology SYSFS entries
[    5.700354] Topology: Add dGPU node [0x66af:0x1002]
[    5.700364] kfd kfd: added device 1002:66af
[    5.705187] [drm] fb mappable at 0xE1000000
[    5.705209] [drm] vram apper at 0xE0000000
[    5.705215] [drm] size 33177600
[    5.705219] [drm] fb depth is 24
[    5.705223] [drm]    pitch is 15360
[    5.705444] fbcon: amdgpudrmfb (fb0) is primary device
[    5.755896] Console: switching to colour frame buffer device 480x135
[    5.785925] amdgpu 0000:0b:00.0: fb0: amdgpudrmfb frame buffer device
[    5.798319] amdgpu 0000:0b:00.0: ring gfx uses VM inv eng 0 on hub 0
[    5.798321] amdgpu 0000:0b:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    5.798322] amdgpu 0000:0b:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    5.798323] amdgpu 0000:0b:00.0: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[    5.798324] amdgpu 0000:0b:00.0: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[    5.798325] amdgpu 0000:0b:00.0: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[    5.798326] amdgpu 0000:0b:00.0: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[    5.798327] amdgpu 0000:0b:00.0: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[    5.798328] amdgpu 0000:0b:00.0: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[    5.798329] amdgpu 0000:0b:00.0: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[    5.798330] amdgpu 0000:0b:00.0: ring sdma0 uses VM inv eng 0 on hub 1
[    5.798331] amdgpu 0000:0b:00.0: ring page0 uses VM inv eng 1 on hub 1
[    5.798332] amdgpu 0000:0b:00.0: ring sdma1 uses VM inv eng 4 on hub 1
[    5.798333] amdgpu 0000:0b:00.0: ring page1 uses VM inv eng 5 on hub 1
[    5.798334] amdgpu 0000:0b:00.0: ring uvd_0 uses VM inv eng 6 on hub 1
[    5.798335] amdgpu 0000:0b:00.0: ring uvd_enc_0.0 uses VM inv eng 7 on hub 1
[    5.798336] amdgpu 0000:0b:00.0: ring uvd_enc_0.1 uses VM inv eng 8 on hub 1
[    5.798337] amdgpu 0000:0b:00.0: ring uvd_1 uses VM inv eng 9 on hub 1
[    5.798338] amdgpu 0000:0b:00.0: ring uvd_enc_1.0 uses VM inv eng 10 on hub 1
[    5.798338] amdgpu 0000:0b:00.0: ring uvd_enc_1.1 uses VM inv eng 11 on hub 1
[    5.798339] amdgpu 0000:0b:00.0: ring vce0 uses VM inv eng 12 on hub 1
[    5.798340] amdgpu 0000:0b:00.0: ring vce1 uses VM inv eng 13 on hub 1
[    5.798341] amdgpu 0000:0b:00.0: ring vce2 uses VM inv eng 14 on hub 1
[    5.798342] [drm] ECC is not present.
[    5.798343] [drm] SRAM ECC is not present.
[    5.820207] setfont (558) used greatest stack depth: 12440 bytes left
[    6.500918] Detected AMDGPU DF Counters. # of Counters = 4.
[    6.501156] [drm] Initialized amdgpu 3.33.0 20150101 for 0000:0b:00.0 on minor 0
[    6.682835] audit: type=1130 audit(1565311088.041:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.705962] audit: type=1130 audit(1565311088.064:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.719311] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: (null)
[    6.719747] mount (567) used greatest stack depth: 12376 bytes left
[    6.875952] audit: type=1130 audit(1565311088.234:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.876064] audit: type=1131 audit(1565311088.234:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.930612] audit: type=1130 audit(1565311088.289:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.942583] audit: type=1131 audit(1565311088.301:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.946077] audit: type=1131 audit(1565311088.304:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.949890] audit: type=1131 audit(1565311088.308:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.951477] audit: type=1131 audit(1565311088.310:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.953411] audit: type=1131 audit(1565311088.312:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.955959] systemd-udevd (481) used greatest stack depth: 10840 bytes left
[    7.007135] [drm] Fence fallback timer expired on ring gfx
[    7.511409] [drm] Fence fallback timer expired on ring comp_1.0.0
[    8.015380] [drm] Fence fallback timer expired on ring comp_1.1.0
[    8.519461] [drm] Fence fallback timer expired on ring comp_1.2.0
[    9.023166] [drm] Fence fallback timer expired on ring comp_1.3.0
[    9.546881] systemd-journald[383]: Received SIGTERM from PID 1 (systemd).
[    9.598561] printk: systemd: 22 output lines suppressed due to ratelimiting
[   10.038087] SELinux:  policy capability network_peer_controls=1
[   10.038124] SELinux:  policy capability open_perms=1
[   10.038126] SELinux:  policy capability extended_socket_class=1
[   10.038127] SELinux:  policy capability always_check_network=0
[   10.038129] SELinux:  policy capability cgroup_seclabel=1
[   10.038131] SELinux:  policy capability nnp_nosuid_transition=1
[   10.102520] systemd[1]: Successfully loaded SELinux policy in 470.018ms.
[   10.106948] systemd[1]: RTC configured in localtime, applying delta of 300 minutes to system time.
[   10.158416] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 33.552ms.
[   10.160570] systemd[1]: systemd v243~rc1-2.fc31 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=hybrid)
[   10.172602] systemd[1]: Detected architecture x86-64.
[   10.174301] systemd[1]: Set hostname to <localhost.localdomain>.
[   10.268817] systemd[1]: unit_file_find_fragment: getty@tty1.service has alias autovt@tty1.service
[   10.274158] systemd[1]: /usr/lib/systemd/system/sssd.service:12: PIDFile= references a path below legacy directory /var/run/, updating /var/run/sssd.pid → /run/sssd.pid; please update the unit file accordingly.
[   10.275871] systemd[1]: /usr/lib/systemd/system/iscsid.service:11: PIDFile= references a path below legacy directory /var/run/, updating /var/run/iscsid.pid → /run/iscsid.pid; please update the unit file accordingly.
[   10.275993] systemd[1]: /usr/lib/systemd/system/iscsiuio.service:13: PIDFile= references a path below legacy directory /var/run/, updating /var/run/iscsiuio.pid → /run/iscsiuio.pid; please update the unit file accordingly.
[   10.276993] systemd[1]: /usr/lib/systemd/system/libvirtd-admin.socket:8: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/libvirt-admin-sock → /run/libvirt/libvirt-admin-sock; please update the unit file accordingly.
[   10.277317] systemd[1]: /usr/lib/systemd/system/libvirtd-ro.socket:8: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/libvirt-sock-ro → /run/libvirt/libvirt-sock-ro; please update the unit file accordingly.
[   10.277504] systemd[1]: /usr/lib/systemd/system/libvirtd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/libvirt-sock → /run/libvirt/libvirt-sock; please update the unit file accordingly.
[   10.371079] Adding 67108860k swap on /dev/nvme0n1p3.  Priority:-2 extents:1 across:67108860k SSFS
[   10.384637] EXT4-fs (nvme0n1p2): re-mounted. Opts: (null)
[   10.546365] systemd-journald[670]: File /run/log/journal/d9a0b11169ff4ad6a0198ce0a8a8b565/system.journal corrupted or uncleanly shut down, renaming and replacing.
[   10.568472] systemd-journald[670]: Received client request to flush runtime journal.
[   10.786438] acpi_cpufreq: overriding BIOS provided _PSD data
[   10.876330] ccp 0000:0c:00.2: enabling device (0000 -> 0002)
[   10.876801] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[   10.876806] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[   10.883671] ccp 0000:0c:00.2: ccp enabled
[   10.900491] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[   10.900692] sp5100-tco sp5100-tco: Using 0xfed80b00 for watchdog MMIO address
[   10.900704] sp5100-tco sp5100-tco: Watchdog hardware is disabled
[   10.934100] mc: Linux media interface: v0.10
[   10.941270] asus_wmi: ASUS WMI generic driver loaded
[   10.941623] Bluetooth: Core ver 2.22
[   10.941678] NET: Registered protocol family 31
[   10.941681] Bluetooth: HCI device and connection manager initialized
[   10.941712] Bluetooth: HCI socket layer initialized
[   10.941719] Bluetooth: L2CAP socket layer initialized
[   10.941753] Bluetooth: SCO socket layer initialized
[   10.943242] asus_wmi: Initialization: 0x0
[   10.943339] asus_wmi: BIOS WMI version: 0.9
[   10.943518] asus_wmi: SFUN value: 0x0
[   10.943522] eeepc-wmi eeepc-wmi: Detected ASUSWMI, use DCTS
[   10.945340] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input17
[   10.945936] asus_wmi: Number of fans: 1
[   10.983264] videodev: Linux video capture interface: v2.00
[   10.983858] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   10.984622] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   10.988185] usbcore: registered new interface driver btusb
[   10.991667] Bluetooth: hci0: RTL: rtl: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8822

[   10.994310] Bluetooth: hci0: RTL: rom_version status=0 version=2

[   10.994319] Bluetooth: hci0: RTL: rtl: loading rtl_bt/rtl8822b_fw.bin

[   10.995222] Bluetooth: hci0: RTL: rtl: loading rtl_bt/rtl8822b_config.bin

[   10.995348] Bluetooth: hci0: RTL: cfg_sz 14, total sz 20270

[   11.062797] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.3/1-2.3.1/1-2.3.1:1.0/input/input18
[   11.065122] usbcore: registered new interface driver xpad
[   11.100056] uvcvideo: Unknown video format 30313050-0000-0010-8000-00aa00389b71
[   11.100066] uvcvideo: Found UVC 1.00 device Live Gamer Ultra-Video (07ca:0553)
[   11.110357] rtw_pci 0000:05:00.0: enabling device (0000 -> 0003)
[   11.134179] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   11.148839] uvcvideo 2-1:1.0: Entity type for entity Extension 3 was not initialized!
[   11.148886] uvcvideo 2-1:1.0: Entity type for entity Processing 2 was not initialized!
[   11.148893] uvcvideo 2-1:1.0: Entity type for entity Camera 1 was not initialized!
[   11.149281] input: Live Gamer Ultra-Video: Live Ga as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb2/2-1/2-1:1.0/input/input19
[   11.149601] usbcore: registered new interface driver uvcvideo
[   11.149607] USB Video Class driver (1.1.1)
[   11.150040] snd_hda_intel 0000:0b:00.1: Handle vga_switcheroo audio client
[   11.150565] snd_hda_intel 0000:0d:00.3: enabling device (0000 -> 0002)
[   11.152175] kvm: Nested Virtualization enabled
[   11.152213] kvm: Nested Paging enabled
[   11.152217] SVM: Virtual VMLOAD VMSAVE supported
[   11.152221] SVM: Virtual GIF supported
[   11.156070] MCE: In-kernel MCE decoding enabled.
[   11.165477] usbcore: registered new interface driver snd-usb-audio
[   11.184259] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.184266] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.196493] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input20
[   11.197142] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input21
[   11.197616] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input22
[   11.197834] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input23
[   11.198075] input: HD-Audio Generic HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input24
[   11.198443] input: HD-Audio Generic HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input25
[   11.199892] snd_hda_codec_realtek hdaudioC2D0: autoconfig for ALC1220: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[   11.199900] snd_hda_codec_realtek hdaudioC2D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   11.199905] snd_hda_codec_realtek hdaudioC2D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   11.199909] snd_hda_codec_realtek hdaudioC2D0:    mono: mono_out=0x0
[   11.199911] snd_hda_codec_realtek hdaudioC2D0:    inputs:
[   11.199915] snd_hda_codec_realtek hdaudioC2D0:      Front Mic=0x19
[   11.199918] snd_hda_codec_realtek hdaudioC2D0:      Rear Mic=0x18
[   11.199921] snd_hda_codec_realtek hdaudioC2D0:      Line=0x1a
[   11.238787] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card2/input26
[   11.239214] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card2/input27
[   11.239435] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card2/input28
[   11.239637] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card2/input29
[   11.240163] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card2/input30
[   11.244660] rtw_pci 0000:05:00.0 wlp5s0: renamed from wlan0
[   11.261655] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.261662] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.311336] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.311346] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.345235] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.345242] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.392257] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.392266] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.409092] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.409099] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.440705] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.440712] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.471445] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.471452] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.513821] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.513832] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.540836] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.540842] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.576234] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.576241] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.618320] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.618331] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.657013] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.657022] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.683774] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.683783] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.726247] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.726254] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.759015] EDAC amd64: Node 0: DRAM ECC disabled.
[   11.759024] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[   11.819051] kauditd_printk_skb: 36 callbacks suppressed
[   11.819053] audit: type=1130 audit(1565293093.176:55): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   11.904732] audit: type=1130 audit(1565293093.262:56): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dmraid-activation comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   11.904747] audit: type=1131 audit(1565293093.262:57): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dmraid-activation comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   11.948643] audit: type=1130 audit(1565293093.306:58): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck@dev-disk-by\x2duuid-76ED\x2d7BB6 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.082756] audit: type=1130 audit(1565293093.440:59): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck@dev-disk-by\x2duuid-bf3e9504\x2d8000\x2d42a1\x2dadb4\x2d226658ec7a5d comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.306334] EXT4-fs (sdb): mounted filesystem with ordered data mode. Opts: (null)
[   12.321882] audit: type=1130 audit(1565293093.679:60): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dracut-shutdown comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.340287] audit: type=1130 audit(1565293093.698:61): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-read-write comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.340317] audit: type=1131 audit(1565293093.698:62): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-read-write comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.368658] audit: type=1130 audit(1565293093.726:63): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=import-state comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.443157] audit: type=1130 audit(1565293093.801:64): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.484532] RPC: Registered named UNIX socket transport module.
[   12.484552] RPC: Registered udp transport module.
[   12.484554] RPC: Registered tcp transport module.
[   12.484556] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   12.753549] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   12.753555] Bluetooth: BNEP filters: protocol multicast
[   12.753566] Bluetooth: BNEP socket layer initialized
[   14.023102] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   14.034137] tun: Universal TUN/TAP device driver, 1.6
[   14.036867] virbr0: port 1(virbr0-nic) entered blocking state
[   14.036902] virbr0: port 1(virbr0-nic) entered disabled state
[   14.037562] device virbr0-nic entered promiscuous mode
[   14.687265] virbr0: port 1(virbr0-nic) entered blocking state
[   14.687301] virbr0: port 1(virbr0-nic) entered listening state
[   14.754327] virbr0: port 1(virbr0-nic) entered disabled state
[   16.146551] igb 0000:04:00.0 enp4s0: igb: enp4s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   16.255251] IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0: link becomes ready
[   75.669881] rfkill: input handler disabled
[   80.071823] logitech-hidpp-device 0003:046D:4026.0008: HID++ 2.0 device connected.
[   81.594310] Bluetooth: RFCOMM TTY layer initialized
[   81.594319] Bluetooth: RFCOMM socket layer initialized
[   81.594358] Bluetooth: RFCOMM ver 1.11
[ 1622.775371] DMA-API: cacheline tracking ENOMEM, dma-debug disabled
[ 3415.346390] perf: interrupt took too long (2504 > 2500), lowering kernel.perf_event_max_sample_rate to 79000
[ 4095.665915] Youngblood_x64v (77980) used greatest stack depth: 10616 bytes left
[ 4095.665976] Youngblood_x64v (77987) used greatest stack depth: 10536 bytes left
[12587.178003] kworker/dying (434703) used greatest stack depth: 10296 bytes left
[27940.638924] sysrq: Show Blocked State
[27940.638999]   task                        PC stack   pid father
[27940.640019] pool-evolution  D12328 456217   4064 0x00000000
[27940.640052] Call Trace:
[27940.640060]  ? __schedule+0x352/0x900
[27940.640064]  ? find_held_lock+0x32/0x90
[27940.640068]  ? sched_clock_cpu+0xc/0xc0
[27940.640072]  schedule+0x3a/0xb0
[27940.640075]  io_schedule+0x12/0x40
[27940.640079]  wait_on_page_bit_common+0x1ff/0x420
[27940.640084]  ? file_fdatawait_range+0x20/0x20
[27940.640089]  generic_file_read_iter+0x279/0xc50
[27940.640097]  new_sync_read+0x12d/0x1c0
[27940.640104]  vfs_read+0xc5/0x180
[27940.640108]  ksys_pread64+0x68/0xa0
[27940.640113]  do_syscall_64+0x5c/0xb0
[27940.640116]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[27940.640119] RIP: 0033:0x7f2be828a1af
[27940.640124] Code: Bad RIP value.
[27940.640126] RSP: 002b:00007f2acf7fd0d0 EFLAGS: 00000293 ORIG_RAX: 0000000000000011
[27940.640129] RAX: ffffffffffffffda RBX: 0000000000290000 RCX: 00007f2be828a1af
[27940.640130] RDX: 0000000000001000 RSI: 00007f2bc4111aa8 RDI: 0000000000000016
[27940.640132] RBP: 0000000000001000 R08: 0000000000000000 R09: 00007f2bc4111aa8
[27940.640134] R10: 0000000000290000 R11: 0000000000000293 R12: 00007f2bc4111aa8
[27940.640136] R13: 0000000000001000 R14: 00007f2bc4111aa8 R15: 000055a070017e10
[27940.640884] e4defrag        D11912 430948   6221 0x00004000
[27940.640889] Call Trace:
[27940.640893]  ? __schedule+0x352/0x900
[27940.640899]  schedule+0x3a/0xb0
[27940.640902]  jbd2_log_wait_commit+0x169/0x1f0
[27940.640906]  ? finish_wait+0x90/0x90
[27940.640910]  __jbd2_journal_force_commit+0x5b/0xb0
[27940.640913]  jbd2_journal_force_commit_nested+0xa/0x20
[27940.640916]  ext4_move_extents+0x8fc/0x1320
[27940.640929]  ? rcu_read_lock_sched_held+0x6b/0x80
[27940.640932]  ? __sb_start_write+0x18d/0x240
[27940.640937]  ext4_ioctl+0x1265/0x1680
[27940.640940]  ? lockdep_hardirqs_on+0xf0/0x180
[27940.640949]  ? selinux_file_ioctl+0x180/0x220
[27940.640955]  do_vfs_ioctl+0x411/0x750
[27940.640963]  ksys_ioctl+0x5e/0x90
[27940.640968]  __x64_sys_ioctl+0x16/0x20
[27940.640972]  do_syscall_64+0x5c/0xb0
[27940.640976]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[27940.640979] RIP: 0033:0x7fcefe1fc07b
[27940.640982] Code: Bad RIP value.
[27940.640984] RSP: 002b:00007ffe1cc2f848 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[27940.640987] RAX: ffffffffffffffda RBX: 00007fcefd0e0000 RCX: 00007fcefe1fc07b
[27940.640988] RDX: 00007ffe1cc2f8d0 RSI: 00000000c028660f RDI: 000000000000000a
[27940.640990] RBP: 0000000001000000 R08: 0000555a7c9cb7a0 R09: 00007fcefe2c7110
[27940.640992] R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000001000
[27940.640994] R13: 000000000000000a R14: 0000000000001000 R15: 0000000000001000
[27940.641008] gitkraken       D12520 439201   2842 0x00000000
[27940.641012] Call Trace:
[27940.641016]  ? __schedule+0x352/0x900
[27940.641018]  ? find_held_lock+0x32/0x90
[27940.641023]  schedule+0x3a/0xb0
[27940.641026]  io_schedule+0x12/0x40
[27940.641028]  __lock_page_killable+0x161/0x320
[27940.641033]  ? file_fdatawait_range+0x20/0x20
[27940.641038]  filemap_fault+0x7de/0xca0
[27940.641043]  ? find_held_lock+0x32/0x90
[27940.641046]  ? ext4_filemap_fault+0x28/0x42
[27940.641051]  ext4_filemap_fault+0x30/0x42
[27940.641055]  __do_fault+0x36/0x1f0
[27940.641058]  __handle_mm_fault+0x1053/0x1730
[27940.641066]  handle_mm_fault+0x16e/0x360
[27940.641071]  do_user_addr_fault+0x20d/0x490
[27940.641076]  do_page_fault+0x31/0x210
[27940.641080]  page_fault+0x43/0x50
[27940.641082] RIP: 0033:0x5591f2094200
[27940.641084] Code: Bad RIP value.
[27940.641086] RSP: 002b:00007ffd4790d448 EFLAGS: 00010206
[27940.641088] RAX: 00005591f2094200 RBX: 0000000000000000 RCX: 00005591ef972b01
[27940.641090] RDX: 00002b90ad9b6a01 RSI: 00003dca73701980 RDI: 00002b90ad9b6a00
[27940.641092] RBP: 00007ffd4790d4a0 R08: 00002b90a83fc000 R09: 000036b765698e20
[27940.641093] R10: 000000004a4a42fc R11: 0000000000006d25 R12: 00005591f1859b30
[27940.641095] R13: 0000000000000000 R14: 000026e26dfa1840 R15: 00002b90ad9b6a00
[28948.116407] hrtimer: interrupt took 319895 ns
[40767.800609] amdgpu: [powerplay] Failed to send message 0x28, response 0x0
[40767.800721] amdgpu: [powerplay] [SetUclkToHightestDpmLevel] Set hard min uclk failed!
[40921.196219] retire_capture_urb: 1 callbacks suppressed
[49520.442380] perf: interrupt took too long (3135 > 3130), lowering kernel.perf_event_max_sample_rate to 63000
[51653.568924] amdgpu: [powerplay] Failed to send message 0x26, response 0x0
[51653.568936] amdgpu: [powerplay] [SetFclkToHightestDpmLevel] Set soft min fclk failed!
[71247.414196] nf_conntrack: default automatic helper assignment has been turned off for security reasons and CT-based  firewall rule not found. Use the iptables CT target to attach helpers instead.
[71774.519292] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[73808.088801] ------------[ cut here ]------------
[73808.088806] DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock)
[73808.088813] WARNING: CPU: 8 PID: 1348877 at kernel/locking/mutex.c:757 __ww_mutex_lock.constprop.0+0xb0f/0x10c0
[73808.088815] Modules linked in: crypto_user sha512_ssse3 sha512_generic macvtap macvlan tap rfcomm xt_CHECKSUM xt_MASQUERADE nf_nat_tftp nf_conntrack_tftp tun bridge stp llc nf_conntrack_netbios_ns nf_conntrack_broadcast xt_CT ip6t_REJECT nf_reject_ipv6 ip6t_rpfilter ipt_REJECT nf_reject_ipv4 xt_conntrack ebtable_nat ip6table_nat ip6table_mangle ip6table_raw ip6table_security iptable_nat nf_nat iptable_mangle iptable_raw iptable_security nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c ip_set nfnetlink ebtable_filter ebtables ip6table_filter ip6_tables iptable_filter cmac bnep sunrpc vfat fat snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi edac_mce_amd kvm_amd snd_hda_intel snd_usb_audio snd_hda_codec rtwpci snd_usbmidi_lib rtw88 kvm snd_rawmidi uvcvideo snd_hda_core xpad snd_hwdep videobuf2_vmalloc mac80211 ff_memless irqbypass videobuf2_memops snd_seq videobuf2_v4l2 snd_seq_device videobuf2_common crct10dif_pclmul btusb crc32_pclmul snd_pcm btrtl videodev
[73808.088845]  cfg80211 btbcm btintel eeepc_wmi asus_wmi bluetooth ghash_clmulni_intel joydev sparse_keymap mc wmi_bmof video k10temp sp5100_tco snd_timer snd ecdh_generic soundcore i2c_piix4 ccp rfkill libarc4 ecc gpio_amdpt gpio_generic acpi_cpufreq binfmt_misc ip_tables hid_logitech_hidpp amdgpu amd_iommu_v2 gpu_sched ttm drm_kms_helper drm igb crc32c_intel nvme dca i2c_algo_bit hid_logitech_dj nvme_core wmi pinctrl_amd
[73808.088866] CPU: 8 PID: 1348877 Comm: Youngblood_x64v Not tainted 5.3.0-0.rc3.git1.2.fc31.x86_64 #1
[73808.088868] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[73808.088871] RIP: 0010:__ww_mutex_lock.constprop.0+0xb0f/0x10c0
[73808.088873] Code: 28 00 74 28 e8 42 29 a6 ff 85 c0 74 1f 8b 05 f8 6a e0 00 85 c0 75 15 48 c7 c6 70 35 32 a5 48 c7 c7 f0 67 30 a5 e8 e9 84 5c ff <0f> 0b 4d 89 74 24 28 b8 dd ff ff ff 65 48 8b 14 25 40 8e 01 00 48
[73808.088876] RSP: 0018:ffffbe618c84b760 EFLAGS: 00010286
[73808.088878] RAX: 0000000000000000 RBX: ffff96f007450000 RCX: 0000000000000000
[73808.088880] RDX: 0000000000000002 RSI: 0000000000000001 RDI: 0000000000000246
[73808.088881] RBP: ffffbe618c84b820 R08: 0000000000000000 R09: 0000000000000000
[73808.088883] R10: ffffffffa6d3f740 R11: 00000000a6d3f373 R12: ffffbe618c84bb90
[73808.088884] R13: ffffbe618c84b7c0 R14: ffff96f6967d4258 R15: ffff96f6967d4260
[73808.088886] FS:  00000000078c3700(0000) GS:ffff96f6fb000000(0000) knlGS:00007fffffe6c000
[73808.088888] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[73808.088890] CR2: 00007fc785db1000 CR3: 00000007a5f56000 CR4: 00000000003406e0
[73808.088892] Call Trace:
[73808.088896]  ? _raw_spin_unlock_irq+0x29/0x40
[73808.088904]  ? ttm_mem_evict_first+0x1ed/0x4f0 [ttm]
[73808.088908]  ? ww_mutex_lock_interruptible+0x43/0xb0
[73808.088910]  ww_mutex_lock_interruptible+0x43/0xb0
[73808.088916]  ttm_mem_evict_first+0x1ed/0x4f0 [ttm]
[73808.088922]  ttm_bo_mem_space+0x229/0x2c0 [ttm]
[73808.088928]  ttm_bo_validate+0xe5/0x190 [ttm]
[73808.088933]  ? lockdep_hardirqs_on+0xf0/0x180
[73808.088983]  amdgpu_cs_bo_validate+0xaa/0x1b0 [amdgpu]
[73808.089033]  amdgpu_cs_validate+0x3b/0x260 [amdgpu]
[73808.089081]  amdgpu_cs_list_validate+0x110/0x180 [amdgpu]
[73808.089130]  amdgpu_cs_ioctl+0x5a9/0x1d10 [amdgpu]
[73808.089188]  ? amdgpu_cs_find_mapping+0x120/0x120 [amdgpu]
[73808.089200]  drm_ioctl_kernel+0xaa/0xf0 [drm]
[73808.089212]  drm_ioctl+0x208/0x390 [drm]
[73808.089258]  ? amdgpu_cs_find_mapping+0x120/0x120 [amdgpu]
[73808.089262]  ? sched_clock_cpu+0xc/0xc0
[73808.089265]  ? lockdep_hardirqs_on+0xf0/0x180
[73808.089308]  amdgpu_drm_ioctl+0x49/0x80 [amdgpu]
[73808.089313]  do_vfs_ioctl+0x411/0x750
[73808.089318]  ksys_ioctl+0x5e/0x90
[73808.089320]  __x64_sys_ioctl+0x16/0x20
[73808.089323]  do_syscall_64+0x5c/0xb0
[73808.089325]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[73808.089328] RIP: 0033:0x7f6b3167b07b
[73808.089330] Code: 0f 1e fa 48 8b 05 0d 9e 0c 00 64 c7 00 26 00 00 00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d dd 9d 0c 00 f7 d8 64 89 01 48
[73808.089331] RSP: 002b:00000000078bbce8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[73808.089333] RAX: ffffffffffffffda RBX: 00000000078bbd60 RCX: 00007f6b3167b07b
[73808.089335] RDX: 00000000078bbd60 RSI: 00000000c0186444 RDI: 0000000000000103
[73808.089336] RBP: 00000000c0186444 R08: 00000000078bbe70 R09: 0000000000000030
[73808.089337] R10: 00000000078bbe70 R11: 0000000000000246 R12: 0000000000000004
[73808.089338] R13: 0000000000000103 R14: 0000000000000000 R15: 0000000000000000
[73808.089343] irq event stamp: 85143093
[73808.089346] hardirqs last  enabled at (85143093): [<ffffffffa4b24d19>] _raw_spin_unlock_irq+0x29/0x40
[73808.089348] hardirqs last disabled at (85143092): [<ffffffffa4b1d188>] __schedule+0xc8/0x900
[73808.089350] softirqs last  enabled at (85140666): [<ffffffffa4e0035d>] __do_softirq+0x35d/0x45d
[73808.089353] softirqs last disabled at (85140569): [<ffffffffa40f1e37>] irq_exit+0xf7/0x100
[73808.089355] ---[ end trace 14afc4859d6718ca ]---
[75014.408150] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75019.527098] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75024.647040] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75029.768040] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75034.887856] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75040.006806] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75063.238447] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75068.362519] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75073.478382] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75078.598229] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75083.719186] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75084.038593] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75088.839134] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75089.162898] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75093.958018] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75094.281845] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75099.077976] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75099.398776] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75104.198853] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75109.317814] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75112.646757] hub 1-2:1.0: hub_ext_port_status failed (err = -110)
[75114.437710] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75117.765678] hub 1-2:1.0: hub_ext_port_status failed (err = -110)
[75119.557627] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75122.886665] hub 1-2:1.0: hub_ext_port_status failed (err = -110)
[75124.679692] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75128.005715] hub 1-2:1.0: hub_ext_port_status failed (err = -110)
[75129.797508] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75133.128160] hub 1-2:1.0: hub_ext_port_status failed (err = -110)
[75134.918438] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75138.245381] hub 1-2:1.0: hub_ext_port_status failed (err = -110)
[75140.038537] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75143.365274] hub 1-2:1.0: hub_ext_port_status failed (err = -110)
[75144.485237] usb 1-2: USB disconnect, device number 2
[75144.687768] usb 2-2: USB disconnect, device number 3
[75144.687774] usb 2-2.1: USB disconnect, device number 4
[75144.694244] usb 2-2.3: USB disconnect, device number 5
[75144.705124] usb 2-2.4: USB disconnect, device number 6
[75145.158254] hub 1-2.3:1.0: hub_ext_port_status failed (err = -110)
[75145.158274] usb 1-2.3.1: USB disconnect, device number 10
[75145.413266] usb 1-2.1: USB disconnect, device number 4
[75145.413273] usb 1-2.1.2: USB disconnect, device number 7
[75145.530766] usb 1-2.2: USB disconnect, device number 6
[75145.615844] usb 1-2.3: USB disconnect, device number 8
[75145.621908] usb 1-2.4: USB disconnect, device number 9
[75147.457023] usb 2-2: new SuperSpeed Gen 1 USB device number 7 using xhci_hcd
[75152.645183] usb 2-2: device descriptor read/8, error -110
[75152.748983] usb 2-2: new SuperSpeed Gen 1 USB device number 7 using xhci_hcd
[75157.765110] usb 2-2: device descriptor read/8, error -110
[75158.006192] usb 1-2: new high-speed USB device number 11 using xhci_hcd
[75163.511380] usb 1-2: device descriptor read/64, error -110
[75180.169637] usb 2-2: new SuperSpeed Gen 1 USB device number 8 using xhci_hcd
[75185.412747] usb 2-2: device descriptor read/8, error -110
[75185.517522] usb 2-2: new SuperSpeed Gen 1 USB device number 8 using xhci_hcd
[75190.532618] usb 2-2: device descriptor read/8, error -110
[75190.659027] usb usb2-port2: attempt power cycle
[75190.772428] usb 1-2: new high-speed USB device number 12 using xhci_hcd
[75196.278419] usb 1-2: device descriptor read/64, error -110
[75212.151186] usb 1-2: device descriptor read/64, error -110
[75212.418128] usb 2-2: new SuperSpeed Gen 1 USB device number 9 using xhci_hcd
[75217.668239] usb 2-2: device descriptor read/8, error -110
[75217.772030] usb 2-2: new SuperSpeed Gen 1 USB device number 9 using xhci_hcd
[75222.788136] usb 2-2: device descriptor read/8, error -110
[75223.027976] usb 1-2: new high-speed USB device number 13 using xhci_hcd
[75228.533928] usb 1-2: device descriptor read/64, error -110
[75259.317469] usb 2-2: new SuperSpeed Gen 1 USB device number 11 using xhci_hcd
[75264.771554] usb 2-2: device descriptor read/8, error -110
[75264.875358] usb 2-2: new SuperSpeed Gen 1 USB device number 11 using xhci_hcd
[75269.891496] usb 2-2: device descriptor read/8, error -110
[75270.131321] usb 1-2: new high-speed USB device number 14 using xhci_hcd
[75275.637286] usb 1-2: device descriptor read/64, error -110
[75291.712029] usb 1-2: device descriptor read/64, error -110
[75291.975033] usb 2-2: new SuperSpeed Gen 1 USB device number 12 using xhci_hcd
[75297.027104] usb 2-2: device descriptor read/8, error -110
[75297.130901] usb 2-2: new SuperSpeed Gen 1 USB device number 12 using xhci_hcd
[75302.147051] usb 2-2: device descriptor read/8, error -110
[75302.273148] usb usb2-port2: attempt power cycle
[75302.387833] usb 1-2: new high-speed USB device number 15 using xhci_hcd
[75307.892782] usb 1-2: device descriptor read/64, error -110
[75323.764570] usb 1-2: device descriptor read/64, error -110
[75323.866683] usb usb1-port2: attempt power cycle
[75324.023613] usb 2-2: new SuperSpeed Gen 1 USB device number 13 using xhci_hcd
[75325.372492] usb 3-3: new low-speed USB device number 2 using xhci_hcd
[75325.536108] usb 3-3: New USB device found, idVendor=046d, idProduct=c326, bcdDevice=79.00
[75325.536113] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75325.536116] usb 3-3: Product: USB Keyboard
[75325.536118] usb 3-3: Manufacturer: Logitech
[75325.580073] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-3/3-3:1.0/0003:046D:C326.0009/input/input31
[75325.632967] hid-generic 0003:046D:C326.0009: input,hidraw2: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:0c:00.3-3/input0
[75325.647182] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-3/3-3:1.1/0003:046D:C326.000A/input/input32
[75325.699784] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-3/3-3:1.1/0003:046D:C326.000A/input/input33
[75325.700156] hid-generic 0003:046D:C326.000A: input,hiddev98,hidraw3: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:0c:00.3-3/input1
[75329.282642] usb 2-2: device descriptor read/8, error -110
[75329.387301] usb 2-2: new SuperSpeed Gen 1 USB device number 13 using xhci_hcd
[75334.402526] usb 2-2: device descriptor read/8, error -110
[75334.847331] usb 1-2: new high-speed USB device number 16 using xhci_hcd
[75377.240261] usb 2-2: new SuperSpeed Gen 1 USB device number 16 using xhci_hcd
[75382.529825] usb 2-2: device descriptor read/8, error -110
[75382.633640] usb 2-2: new SuperSpeed Gen 1 USB device number 16 using xhci_hcd
[75387.650724] usb 2-2: device descriptor read/8, error -110
[75387.889558] usb 1-2: new high-speed USB device number 17 using xhci_hcd
[75393.396536] usb 1-2: device descriptor read/64, error -110
[75409.267302] usb 1-2: device descriptor read/64, error -110
[75409.587331] usb 2-2: new SuperSpeed Gen 1 USB device number 17 using xhci_hcd
[75414.785365] usb 2-2: device descriptor read/8, error -110
[75414.889169] usb 2-2: new SuperSpeed Gen 1 USB device number 17 using xhci_hcd
[75415.009285] usb usb2-port2: attempt power cycle
[75417.066152] usb 3-4: new high-speed USB device number 3 using xhci_hcd
[75417.197037] usb 3-4: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[75417.197043] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75417.197045] usb 3-4: Product: USB2.0 Hub
[75417.197047] usb 3-4: Manufacturer: VIA Labs, Inc.
[75417.239340] hub 3-4:1.0: USB hub found
[75417.240161] hub 3-4:1.0: 4 ports detected
[75417.350404] usb 4-4: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[75417.447228] usb 4-4: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[75417.447234] usb 4-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75417.447236] usb 4-4: Product: USB3.0 Hub
[75417.447238] usb 4-4: Manufacturer: VIA Labs, Inc.
[75417.479393] hub 4-4:1.0: USB hub found
[75417.479586] hub 4-4:1.0: 4 ports detected
[75417.557166] usb 3-4.1: new high-speed USB device number 4 using xhci_hcd
[75417.647781] usb 3-4.1: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[75417.647787] usb 3-4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75417.647789] usb 3-4.1: Product: USB2.0 Hub
[75417.647791] usb 3-4.1: Manufacturer: VIA Labs, Inc.
[75417.687381] hub 3-4.1:1.0: USB hub found
[75417.688925] hub 3-4.1:1.0: 4 ports detected
[75417.777132] usb 3-4.3: new high-speed USB device number 5 using xhci_hcd
[75417.868965] usb 3-4.3: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[75417.868971] usb 3-4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75417.868974] usb 3-4.3: Product: USB2.0 Hub
[75417.868976] usb 3-4.3: Manufacturer: VIA Labs, Inc.
[75417.911454] hub 3-4.3:1.0: USB hub found
[75417.912866] hub 3-4.3:1.0: 4 ports detected
[75417.974379] usb 4-4.1: new SuperSpeed Gen 1 USB device number 3 using xhci_hcd
[75418.071223] usb 4-4.1: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[75418.071255] usb 4-4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75418.071307] usb 4-4.1: Product: USB3.0 Hub
[75418.071323] usb 4-4.1: Manufacturer: VIA Labs, Inc.
[75418.103324] hub 4-4.1:1.0: USB hub found
[75418.103467] hub 4-4.1:1.0: 4 ports detected
[75418.146121] usb 3-4.1.3: new full-speed USB device number 6 using xhci_hcd
[75418.238163] usb 3-4.1.3: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[75418.238169] usb 3-4.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[75418.238171] usb 3-4.1.3: Product: Controller
[75418.238174] usb 3-4.1.3: Manufacturer: Microsoft
[75418.238175] usb 3-4.1.3: SerialNumber: 7EED8DBD807F
[75418.312131] usb 3-4.4: new high-speed USB device number 7 using xhci_hcd
[75418.327571] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.1/3-4.1.3/3-4.1.3:1.0/input/input34
[75418.422967] usb 3-4.4: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[75418.422972] usb 3-4.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75418.422974] usb 3-4.4: Product: USB2.0 Hub
[75418.422976] usb 3-4.4: Manufacturer: VIA Labs, Inc.
[75418.487372] hub 3-4.4:1.0: USB hub found
[75418.488832] hub 3-4.4:1.0: 4 ports detected
[75418.528486] usb 4-4.3: new SuperSpeed Gen 1 USB device number 4 using xhci_hcd
[75418.631076] usb 4-4.3: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[75418.631082] usb 4-4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75418.631084] usb 4-4.3: Product: USB3.0 Hub
[75418.631086] usb 4-4.3: Manufacturer: VIA Labs, Inc.
[75418.663382] hub 4-4.3:1.0: USB hub found
[75418.664202] hub 4-4.3:1.0: 4 ports detected
[75418.778515] usb 4-4.4: new SuperSpeed Gen 1 USB device number 5 using xhci_hcd
[75418.875860] usb 4-4.4: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[75418.875865] usb 4-4.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75418.875868] usb 4-4.4: Product: USB3.0 Hub
[75418.875870] usb 4-4.4: Manufacturer: VIA Labs, Inc.
[75418.903458] hub 4-4.4:1.0: USB hub found
[75418.903622] hub 4-4.4:1.0: 4 ports detected
[75422.263977] usb 3-4.1.3: USB disconnect, device number 6
[75423.350051] usb 3-4.3.1: new full-speed USB device number 8 using xhci_hcd
[75423.445824] usb 3-4.3.1: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[75423.445829] usb 3-4.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[75423.445832] usb 3-4.3.1: Product: Controller
[75423.445833] usb 3-4.3.1: Manufacturer: Microsoft
[75423.445835] usb 3-4.3.1: SerialNumber: 7EED8DBD807F
[75423.511450] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.3/3-4.3.1/3-4.3.1:1.0/input/input35
[75425.919239] usb 3-3: USB disconnect, device number 2
[75429.671106] usb 3-4.1.2: new low-speed USB device number 9 using xhci_hcd
[75429.809790] usb 3-4.1.2: New USB device found, idVendor=046d, idProduct=c326, bcdDevice=79.00
[75429.809795] usb 3-4.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75429.809798] usb 3-4.1.2: Product: USB Keyboard
[75429.809800] usb 3-4.1.2: Manufacturer: Logitech
[75429.885541] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.1/3-4.1.2/3-4.1.2:1.0/0003:046D:C326.000B/input/input36
[75429.938299] hid-generic 0003:046D:C326.000B: input,hidraw2: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:0c:00.3-4.1.2/input0
[75429.944564] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.1/3-4.1.2/3-4.1.2:1.1/0003:046D:C326.000C/input/input37
[75429.996201] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.1/3-4.1.2/3-4.1.2:1.1/0003:046D:C326.000C/input/input38
[75429.996812] hid-generic 0003:046D:C326.000C: input,hiddev98,hidraw3: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:0c:00.3-4.1.2/input1
[75434.744904] usb 3-4.1.3: new full-speed USB device number 10 using xhci_hcd
[75434.851526] usb 3-4.1.3: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.07
[75434.851532] usb 3-4.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75434.851535] usb 3-4.1.3: Product: USB Receiver
[75434.851539] usb 3-4.1.3: Manufacturer: Logitech
[75434.986004] logitech-djreceiver 0003:046D:C52B.000F: hiddev99,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:0c:00.3-4.1.3/input2
[75435.099608] input: Logitech T400 as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.1/3-4.1.3/3-4.1.3:1.2/0003:046D:C52B.000F/0003:046D:4026.0010/input/input39
[75435.100931] logitech-hidpp-device 0003:046D:4026.0010: input,hidraw5: USB HID v1.11 Keyboard [Logitech T400] on usb-0000:0c:00.3-4.1.3/input2:1
[75448.203398] logitech-hidpp-device 0003:046D:4026.0010: HID++ 2.0 device connected.
[75465.783913] usb 3-4.3.1: USB disconnect, device number 8
[75470.077388] usb 3-4.3.1: new full-speed USB device number 11 using xhci_hcd
[75470.169409] usb 3-4.3.1: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[75470.169415] usb 3-4.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[75470.169418] usb 3-4.3.1: Product: Controller
[75470.169420] usb 3-4.3.1: Manufacturer: Microsoft
[75470.169422] usb 3-4.3.1: SerialNumber: 7EED8DBD807F
[75470.263502] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.3/3-4.3.1/3-4.3.1:1.0/input/input40
[75482.679825] usb 3-4.3.1: USB disconnect, device number 11
[75487.229123] usb 3-4.3.1: new full-speed USB device number 12 using xhci_hcd
[75487.323294] usb 3-4.3.1: New USB device found, idVendor=054c, idProduct=09cc, bcdDevice= 1.00
[75487.323299] usb 3-4.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[75487.323302] usb 3-4.3.1: Product: Wireless Controller
[75487.323304] usb 3-4.3.1: Manufacturer: Sony Interactive Entertainment
[75487.620284] input: Sony Interactive Entertainment Wireless Controller Touchpad as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.3/3-4.3.1/3-4.3.1:1.3/0003:054C:09CC.0011/input/input42
[75487.624279] input: Sony Interactive Entertainment Wireless Controller Motion Sensors as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.3/3-4.3.1/3-4.3.1:1.3/0003:054C:09CC.0011/input/input43
[75487.677472] input: Sony Interactive Entertainment Wireless Controller as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.3/3-4.3.1/3-4.3.1:1.3/0003:054C:09CC.0011/input/input41
[75487.677918] sony 0003:054C:09CC.0011: input,hidraw6: USB HID v81.11 Gamepad [Sony Interactive Entertainment Wireless Controller] on usb-0000:0c:00.3-4.3.1/input3
[75487.774818] gsd-media-keys[2160]: segfault at 1 ip 00007fa39524a4cd sp 00007ffec7cb1ca0 error 4 in libglib-2.0.so.0.6101.0[7fa3951f7000+82000]
[75487.774831] Code: 04 4c 8b 3b 8d 48 ff 48 89 c5 49 89 ce 49 c1 e6 04 4d 01 f7 4d 8b 27 4d 85 e4 0f 84 cd 00 00 00 49 8b 44 24 08 48 85 c0 74 43 <48> 8b 10 49 89 54 24 08 49 89 c4 49 8b 47 08 48 85 c0 74 08 48 83
[75494.656207] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75497.271835] usb 3-4.3.1: USB disconnect, device number 12
[75499.776131] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75502.353035] usb 3-4.3.1: new full-speed USB device number 13 using xhci_hcd
[75502.458306] usb 3-4.3.1: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[75502.458314] usb 3-4.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[75502.458318] usb 3-4.3.1: Product: Controller
[75502.458322] usb 3-4.3.1: Manufacturer: Microsoft
[75502.458324] usb 3-4.3.1: SerialNumber: 7EED8DC35E19
[75502.552231] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.3/3-4.3.1/3-4.3.1:1.0/input/input44
[75504.897040] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75506.235929] usb 3-4.3.1: USB disconnect, device number 13
[75510.017800] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75510.781805] usb 3-4.3.2: new full-speed USB device number 14 using xhci_hcd
[75510.873381] usb 3-4.3.2: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[75510.873387] usb 3-4.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[75510.873390] usb 3-4.3.2: Product: Controller
[75510.873393] usb 3-4.3.2: Manufacturer: Microsoft
[75510.873394] usb 3-4.3.2: SerialNumber: 7EED8DC35E19
[75510.967592] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.3/3-4.3.2/3-4.3.2:1.0/input/input45
[75515.137021] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75520.259889] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75520.823898] usb 3-4.3.2: USB disconnect, device number 14
[75525.372574] usb 3-4.3.2: new full-speed USB device number 15 using xhci_hcd
[75525.378587] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75525.467105] usb 3-4.3.2: New USB device found, idVendor=045e, idProduct=02ea, bcdDevice= 3.01
[75525.467111] usb 3-4.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[75525.467113] usb 3-4.3.2: Product: Controller
[75525.467115] usb 3-4.3.2: Manufacturer: Microsoft
[75525.467117] usb 3-4.3.2: SerialNumber: 30334F5230303734323033383330
[75525.559786] input: Microsoft X-Box One S pad as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.3/3-4.3.2/3-4.3.2:1.0/input/input46
[75530.497513] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75532.855907] usb 3-4.3.2: USB disconnect, device number 15
[75535.615599] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75540.736937] uvcvideo: Failed to set UVC probe control : -110 (exp. 26).
[75572.544874] usb 3-3: new full-speed USB device number 16 using xhci_hcd
[75572.695265] usb 3-3: New USB device found, idVendor=045e, idProduct=02ea, bcdDevice= 3.01
[75572.695271] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[75572.695274] usb 3-3: Product: Controller
[75572.695275] usb 3-3: Manufacturer: Microsoft
[75572.695277] usb 3-3: SerialNumber: 30334F5230303734323033383330
[75572.708401] input: Microsoft X-Box One S pad as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-3/3-3:1.0/input/input47
[75581.256914] usb 3-3: USB disconnect, device number 16
[75589.630659] usb 3-4.3.1: new full-speed USB device number 17 using xhci_hcd
[75589.722792] usb 3-4.3.1: New USB device found, idVendor=045e, idProduct=02ea, bcdDevice= 3.01
[75589.722797] usb 3-4.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[75589.722800] usb 3-4.3.1: Product: Controller
[75589.722802] usb 3-4.3.1: Manufacturer: Microsoft
[75589.722804] usb 3-4.3.1: SerialNumber: 30334F5230303734323033383330
[75589.815825] input: Microsoft X-Box One S pad as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.3/3-4.3.1/3-4.3.1:1.0/input/input48
[75592.247913] usb 3-4.3.1: USB disconnect, device number 17
[75603.971178] usb 3-4.3.1: new full-speed USB device number 18 using xhci_hcd
[75604.061634] usb 3-4.3.1: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[75604.061640] usb 3-4.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[75604.061643] usb 3-4.3.1: Product: Controller
[75604.061645] usb 3-4.3.1: Manufacturer: Microsoft
[75604.061647] usb 3-4.3.1: SerialNumber: 7EED8DC35E19
[75604.151699] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.3/3-4.3.1/3-4.3.1:1.0/input/input49
[77543.993767] usb 3-4.3.1: USB disconnect, device number 18
[77550.337672] usb 3-4.3.1: new full-speed USB device number 19 using xhci_hcd
[77550.451816] usb 3-4.3.1: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[77550.451822] usb 3-4.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[77550.451825] usb 3-4.3.1: Product: Controller
[77550.451827] usb 3-4.3.1: Manufacturer: Microsoft
[77550.451830] usb 3-4.3.1: SerialNumber: 7EED8DC35E19
[77550.521402] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb3/3-4/3-4.3/3-4.3.1/3-4.3.1:1.0/input/input50

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

* Re: The issue with page allocation 5.3 rc1-rc2 (seems drm culprit here)
  2019-08-09 18:55         ` Mikhail Gavrilov
@ 2019-08-10 16:08           ` Mikhail Gavrilov
  0 siblings, 0 replies; 9+ messages in thread
From: Mikhail Gavrilov @ 2019-08-10 16:08 UTC (permalink / raw)
  To: Alex Deucher
  Cc: Michel Dänzer, Hillf Danton, Dave Airlie,
	Linux List Kernel Mailing, amd-gfx list,
	Linux Memory Management List, dri-devel, Deucher, Alexander,
	Harry Wentland, Koenig, Christian

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

On Fri, 9 Aug 2019 at 23:55, Mikhail Gavrilov
<mikhail.v.gavrilov@gmail.com> wrote:
> Finally initial problem "gnome-shell: page allocation failure:
> order:4, mode:0x40cc0(GFP_KERNEL|__GFP_COMP),
> nodemask=(null),cpuset=/,mems_allowed=0" did not happens anymore with
> latest version of the patch (I tested more than 23 hours)
>
> But I hit a new problem:
>
> [73808.088801] ------------[ cut here ]------------
> [73808.088806] DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock)
> [73808.088813] WARNING: CPU: 8 PID: 1348877 at
> kernel/locking/mutex.c:757 __ww_mutex_lock.constprop.0+0xb0f/0x10c0

[pruned]

> So I needed to report it separately (in another thread) or we continue here?

Today after reboot issue "DEBUG LOCKS
WARN_ON(ww_ctx->contending_lock)" happened again.

--
Best Regards,
Mike Gavrilov.

[-- Attachment #2: dmesg2.txt --]
[-- Type: text/plain, Size: 5875 bytes --]


[ 5406.584851] ------------[ cut here ]------------
[ 5406.584855] DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock)
[ 5406.584862] WARNING: CPU: 2 PID: 4865 at kernel/locking/mutex.c:757 __ww_mutex_lock.constprop.0+0xb0f/0x10c0
[ 5406.584865] Modules linked in: macvtap macvlan tap rfcomm xt_CHECKSUM xt_MASQUERADE nf_nat_tftp nf_conntrack_tftp tun bridge stp llc nf_conntrack_netbios_ns nf_conntrack_broadcast xt_CT ip6t_REJECT nf_reject_ipv6 ip6t_rpfilter ipt_REJECT nf_reject_ipv4 xt_conntrack ebtable_nat ip6table_nat ip6table_mangle ip6table_raw ip6table_security iptable_nat nf_nat iptable_mangle iptable_raw iptable_security nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c ip_set nfnetlink ebtable_filter ebtables ip6table_filter ip6_tables iptable_filter cmac bnep sunrpc vfat fat snd_hda_codec_realtek snd_hda_codec_generic edac_mce_amd ledtrig_audio kvm_amd snd_hda_codec_hdmi snd_hda_intel kvm rtwpci snd_hda_codec rtw88 irqbypass snd_hda_core snd_usb_audio mac80211 snd_usbmidi_lib crct10dif_pclmul uvcvideo snd_hwdep snd_rawmidi crc32_pclmul btusb videobuf2_vmalloc videobuf2_memops snd_seq videobuf2_v4l2 btrtl btbcm ghash_clmulni_intel snd_seq_device btintel videobuf2_common xpad eeepc_wmi joydev ff_memless
[ 5406.584895]  bluetooth cfg80211 snd_pcm asus_wmi videodev snd_timer sparse_keymap video wmi_bmof snd ecdh_generic mc ecc soundcore ccp k10temp sp5100_tco rfkill libarc4 i2c_piix4 gpio_amdpt gpio_generic acpi_cpufreq binfmt_misc ip_tables hid_logitech_hidpp amdgpu crc32c_intel amd_iommu_v2 gpu_sched ttm drm_kms_helper igb drm nvme dca hid_logitech_dj i2c_algo_bit nvme_core wmi pinctrl_amd
[ 5406.584915] CPU: 2 PID: 4865 Comm: firefox:cs0 Not tainted 5.3.0-0.rc3.git1.2.fc31.x86_64 #1
[ 5406.584917] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[ 5406.584920] RIP: 0010:__ww_mutex_lock.constprop.0+0xb0f/0x10c0
[ 5406.584922] Code: 28 00 74 28 e8 42 29 a6 ff 85 c0 74 1f 8b 05 f8 6a e0 00 85 c0 75 15 48 c7 c6 70 35 32 92 48 c7 c7 f0 67 30 92 e8 e9 84 5c ff <0f> 0b 4d 89 74 24 28 b8 dd ff ff ff 65 48 8b 14 25 40 8e 01 00 48
[ 5406.584924] RSP: 0018:ffffb738cca4f760 EFLAGS: 00010286
[ 5406.584926] RAX: 0000000000000000 RBX: ffff8e1732e13300 RCX: 0000000000000000
[ 5406.584927] RDX: 0000000000000002 RSI: 0000000000000001 RDI: 0000000000000246
[ 5406.584929] RBP: ffffb738cca4f820 R08: 0000000000000000 R09: 0000000000000000
[ 5406.584931] R10: ffffffff93d3f740 R11: 0000000093d3f373 R12: ffffb738cca4fb90
[ 5406.584932] R13: ffffb738cca4f7c0 R14: ffff8e172e0fb258 R15: ffff8e172e0fb260
[ 5406.584934] FS:  00007fc2d5c6b700(0000) GS:ffff8e18ba400000(0000) knlGS:0000000000000000
[ 5406.584935] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 5406.584937] CR2: 00007ff54bbd0000 CR3: 00000005ad12a000 CR4: 00000000003406e0
[ 5406.584938] Call Trace:
[ 5406.584943]  ? _raw_spin_unlock_irq+0x29/0x40
[ 5406.584951]  ? ttm_mem_evict_first+0x1ed/0x4f0 [ttm]
[ 5406.584955]  ? ww_mutex_lock_interruptible+0x43/0xb0
[ 5406.584957]  ww_mutex_lock_interruptible+0x43/0xb0
[ 5406.584961]  ttm_mem_evict_first+0x1ed/0x4f0 [ttm]
[ 5406.584969]  ttm_bo_mem_space+0x229/0x2c0 [ttm]
[ 5406.584974]  ttm_bo_validate+0xe5/0x190 [ttm]
[ 5406.584979]  ? lockdep_hardirqs_on+0xf0/0x180
[ 5406.585033]  amdgpu_cs_bo_validate+0xaa/0x1b0 [amdgpu]
[ 5406.585082]  amdgpu_cs_validate+0x3b/0x260 [amdgpu]
[ 5406.585131]  amdgpu_cs_list_validate+0x110/0x180 [amdgpu]
[ 5406.585184]  amdgpu_cs_ioctl+0x5a9/0x1d10 [amdgpu]
[ 5406.585189]  ? sched_clock+0x5/0x10
[ 5406.585247]  ? amdgpu_cs_find_mapping+0x120/0x120 [amdgpu]
[ 5406.585260]  drm_ioctl_kernel+0xaa/0xf0 [drm]
[ 5406.585271]  drm_ioctl+0x208/0x390 [drm]
[ 5406.585316]  ? amdgpu_cs_find_mapping+0x120/0x120 [amdgpu]
[ 5406.585319]  ? sched_clock_cpu+0xc/0xc0
[ 5406.585322]  ? lockdep_hardirqs_on+0xf0/0x180
[ 5406.585366]  amdgpu_drm_ioctl+0x49/0x80 [amdgpu]
[ 5406.585371]  do_vfs_ioctl+0x411/0x750
[ 5406.585375]  ksys_ioctl+0x5e/0x90
[ 5406.585378]  __x64_sys_ioctl+0x16/0x20
[ 5406.585381]  do_syscall_64+0x5c/0xb0
[ 5406.585385]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[ 5406.585387] RIP: 0033:0x7fc30b31007b
[ 5406.585390] Code: 0f 1e fa 48 8b 05 0d 9e 0c 00 64 c7 00 26 00 00 00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d dd 9d 0c 00 f7 d8 64 89 01 48
[ 5406.585392] RSP: 002b:00007fc2d5c6a118 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 5406.585394] RAX: ffffffffffffffda RBX: 00007fc2d5c6aaf0 RCX: 00007fc30b31007b
[ 5406.585396] RDX: 00007fc2d5c6aaf0 RSI: 00000000c0186444 RDI: 000000000000001f
[ 5406.585397] RBP: 00007fc2d5c6aa70 R08: 00007fc2d5c6ad10 R09: 0000000000000030
[ 5406.585398] R10: 00007fc2d5c6ad10 R11: 0000000000000246 R12: 00000000c0186444
[ 5406.585400] R13: 000000000000001f R14: 00007fc2d5c6aaf0 R15: 000000000000001f
[ 5406.585404] irq event stamp: 156924947
[ 5406.585406] hardirqs last  enabled at (156924947): [<ffffffff91b24d19>] _raw_spin_unlock_irq+0x29/0x40
[ 5406.585408] hardirqs last disabled at (156924946): [<ffffffff91b1d188>] __schedule+0xc8/0x900
[ 5406.585411] softirqs last  enabled at (156923776): [<ffffffff91e0035d>] __do_softirq+0x35d/0x45d
[ 5406.585414] softirqs last disabled at (156923765): [<ffffffff910f1e37>] irq_exit+0xf7/0x100
[ 5406.585415] ---[ end trace 2b58e1013c283539 ]---
[ 7417.187431] Youngblood_x64v (14657) used greatest stack depth: 10504 bytes left
[ 7417.190872] Youngblood_x64v (14654) used greatest stack depth: 10248 bytes left
[11664.949437] nf_conntrack: default automatic helper assignment has been turned off for security reasons and CT-based  firewall rule not found. Use the iptables CT target to attach helpers instead.
[15298.698293] perf: interrupt took too long (2503 > 2500), lowering kernel.perf_event_max_sample_rate to 79000
[19656.044113] show_signal_msg: 1 callbacks suppressed

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

* Re: The issue with page allocation 5.3 rc1-rc2 (seems drm culprit here)
       [not found] <20190805032114.8740-1-hdanton@sina.com>
@ 2019-08-05 17:14 ` Mikhail Gavrilov
  0 siblings, 0 replies; 9+ messages in thread
From: Mikhail Gavrilov @ 2019-08-05 17:14 UTC (permalink / raw)
  To: Hillf Danton
  Cc: Dave Airlie, Deucher, Alexander, Koenig, Christian,
	Harry Wentland, amd-gfx list, Linux Memory Management List,
	Linux List Kernel Mailing, dri-devel

On Mon, 5 Aug 2019 at 08:21, Hillf Danton <hdanton@sina.com> wrote:
>
>
>
> Try to fix the failure above using vmalloc + kmalloc.
>
> --- a/drivers/gpu/drm/amd/display/dc/core/dc.c
> +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
> @@ -1174,8 +1174,12 @@ struct dc_state *dc_create_state(struct
>         struct dc_state *context = kzalloc(sizeof(struct dc_state),
>                                            GFP_KERNEL);
>
> -       if (!context)
> -               return NULL;
> +       if (!context) {
> +               context = kvzalloc(sizeof(struct dc_state),
> +                                          GFP_KERNEL);
> +               if (!context)
> +                       return NULL;
> +       }
>         /* Each context must have their own instance of VBA and in order to
>          * initialize and obtain IP and SOC the base DML instance from DC is
>          * initially copied into every context
> @@ -1195,8 +1199,13 @@ struct dc_state *dc_copy_state(struct dc
>         struct dc_state *new_ctx = kmemdup(src_ctx,
>                         sizeof(struct dc_state), GFP_KERNEL);
>
> -       if (!new_ctx)
> -               return NULL;
> +       if (!new_ctx) {
> +               new_ctx = kvmalloc(sizeof(*new_ctx), GFP_KERNEL);
> +               if (new_ctx)
> +                       *new_ctx = *src_ctx;
> +               else
> +                       return NULL;
> +       }
>
>         for (i = 0; i < MAX_PIPES; i++) {
>                         struct pipe_ctx *cur_pipe = &new_ctx->res_ctx.pipe_ctx[i];
> @@ -1230,7 +1239,7 @@ static void dc_state_free(struct kref *k
>  {
>         struct dc_state *context = container_of(kref, struct dc_state, refcount);
>         dc_resource_state_destruct(context);
> -       kfree(context);
> +       kvfree(context);
>  }
>
>  void dc_release_state(struct dc_state *context)
> --

Unfortunately couldn't check this patch because, with the patch, the
kernel did not compile.
Here is compile error messages:

drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c: In function
'dc_create_state':
drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:1178:13: error:
implicit declaration of function 'kvzalloc'; did you mean 'kzalloc'?
[-Werror=implicit-function-declaration]
 1178 |   context = kvzalloc(sizeof(struct dc_state),
      |             ^~~~~~~~
      |             kzalloc
drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:1178:11: warning:
assignment to 'struct dc_state *' from 'int' makes pointer from
integer without a cast [-Wint-conversion]
 1178 |   context = kvzalloc(sizeof(struct dc_state),
      |           ^
drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c: In function 'dc_copy_state':
drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:1203:13: error:
implicit declaration of function 'kvmalloc'; did you mean 'kmalloc'?
[-Werror=implicit-function-declaration]
 1203 |   new_ctx = kvmalloc(sizeof(*new_ctx), GFP_KERNEL);
      |             ^~~~~~~~
      |             kmalloc
drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:1203:11: warning:
assignment to 'struct dc_state *' from 'int' makes pointer from
integer without a cast [-Wint-conversion]
 1203 |   new_ctx = kvmalloc(sizeof(*new_ctx), GFP_KERNEL);
      |           ^
drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c: In function 'dc_state_free':
drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:1242:2: error:
implicit declaration of function 'kvfree'; did you mean 'kzfree'?
[-Werror=implicit-function-declaration]
 1242 |  kvfree(context);
      |  ^~~~~~
      |  kzfree
cc1: some warnings being treated as errors
make[4]: *** [scripts/Makefile.build:274:
drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.o] Error 1
make[4]: *** Waiting for unfinished jobs....
make[3]: *** [scripts/Makefile.build:490: drivers/gpu/drm/amd/amdgpu] Error 2
make[3]: *** Waiting for unfinished jobs....
make: *** [Makefile:1084: drivers] Error 2


--
Best Regards,
Mike Gavrilov.

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

* Re: The issue with page allocation 5.3 rc1-rc2 (seems drm culprit here)
  2019-08-04 22:23 Mikhail Gavrilov
@ 2019-08-05  1:03 ` Dave Airlie
  0 siblings, 0 replies; 9+ messages in thread
From: Dave Airlie @ 2019-08-05  1:03 UTC (permalink / raw)
  To: Mikhail Gavrilov, Deucher, Alexander, Koenig, Christian, Harry Wentland
  Cc: amd-gfx list, Linux Memory Management List,
	Linux List Kernel Mailing, dri-devel

On Mon, 5 Aug 2019 at 08:23, Mikhail Gavrilov
<mikhail.v.gavrilov@gmail.com> wrote:
>
> Hi folks,
> Two weeks ago when commit 22051d9c4a57 coming to my system.
> Started happen randomly errors:
> "gnome-shell: page allocation failure: order:4,
> mode:0x40cc0(GFP_KERNEL|__GFP_COMP),
> nodemask=(null),cpuset=/,mems_allowed=0"
> Symptoms:
> The screen goes out as in energy saving.
> And it is impossible to wake the computer in a few minutes.
>
> I am making bisect and looks like the first bad commit is 476e955dd679.
> Here full bisect logs: https://mega.nz/#F!kgYFxAIb!v1tcHANPy2ns1lh4LQLeIg
>
> I wrote about my find to the amd-gfx mailing list, but no one answer me.
> Until yesterday, I thought it was a bug in the amdgpu driver.
> But yesterday, after the next occurrence of an error, the system hangs
> completely already with another error.

Does it happen if you disable CONFIG_DRM_AMD_DC_DCN2_0, I'm assuming
you don't have a navi gpu.

I think some struct grew too large in the navi merge, hopefully amd
care, else we have to disable navi before release.

I've directed this at the main AMD devs who might be helpful.

Dave.

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

* The issue with page allocation 5.3 rc1-rc2 (seems drm culprit here)
@ 2019-08-04 22:23 Mikhail Gavrilov
  2019-08-05  1:03 ` Dave Airlie
  0 siblings, 1 reply; 9+ messages in thread
From: Mikhail Gavrilov @ 2019-08-04 22:23 UTC (permalink / raw)
  To: amd-gfx list, linux-mm, Linux List Kernel Mailing, dri-devel

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

Hi folks,
Two weeks ago when commit 22051d9c4a57 coming to my system.
Started happen randomly errors:
"gnome-shell: page allocation failure: order:4,
mode:0x40cc0(GFP_KERNEL|__GFP_COMP),
nodemask=(null),cpuset=/,mems_allowed=0"
Symptoms:
The screen goes out as in energy saving.
And it is impossible to wake the computer in a few minutes.

I am making bisect and looks like the first bad commit is 476e955dd679.
Here full bisect logs: https://mega.nz/#F!kgYFxAIb!v1tcHANPy2ns1lh4LQLeIg

I wrote about my find to the amd-gfx mailing list, but no one answer me.
Until yesterday, I thought it was a bug in the amdgpu driver.
But yesterday, after the next occurrence of an error, the system hangs
completely already with another error.

[ 3225.317560] BUG: unable to handle page fault for address: 000000000000c9f4
[ 3225.317562] #PF: supervisor read access in kernel mode
[ 3225.317563] #PF: error_code(0x0000) - not-present page
[ 3225.317565] PGD 0 P4D 0
[ 3225.317567] Oops: 0000 [#1] SMP NOPTI
[ 3225.317571] CPU: 2 PID: 12717 Comm: Xorg Tainted: G        W
 5.3.0-0.rc2.git4.1.fc31.x86_64 #1
[ 3225.317572] Hardware name: System manufacturer System Product
Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[ 3225.317625] RIP: 0010:dc_resource_state_copy_construct+0x18/0xf0 [amdgpu]
[ 3225.317627] Code: 00 49 83 c4 01 44 39 e0 7f b5 5b 5d 41 5c 41 5d
c3 c3 0f 1f 44 00 00 41 56 ba f8 c9 00 00 41 55 41 54 49 89 f4 55 4c
89 e5 53 <44> 8b ae f4 c9 00 00 48 89 fe 4c 89 e7 e8 16 86 48 f7 49 8d
84 24
[ 3225.317630] RSP: 0018:ffffb439c3e377d0 EFLAGS: 00010246
[ 3225.317631] RAX: ffff9b0ba19a0000 RBX: ffffffffc08380b0 RCX: 0000000000000006
[ 3225.317633] RDX: 000000000000c9f8 RSI: 0000000000000000 RDI: ffff9b0ab7fc0000
[ 3225.317635] RBP: 0000000000000000 R08: 000002eef3c694b7 R09: 0000000000000000
[ 3225.317636] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[ 3225.317638] R13: ffff9b0bb5381000 R14: ffff9b09acc68598 R15: ffff9b09acc68540
[ 3225.317640] FS:  00007fdde56cbf00(0000) GS:ffff9b0bba400000(0000)
knlGS:0000000000000000
[ 3225.317641] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3225.317643] CR2: 000000000000c9f4 CR3: 00000007382ee000 CR4: 00000000003406e0
[ 3225.317644] Call Trace:
[ 3225.317714]  amdgpu_dm_atomic_commit_tail.cold+0xad/0xe1 [amdgpu]
[ 3225.317719]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.317723]  ? debug_check_no_obj_freed+0x107/0x1d8
[ 3225.317786]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.317850]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.317855]  ? kfree+0x1b6/0x3b0
[ 3225.317918]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.317923]  ? __lock_acquire+0x247/0x1910
[ 3225.317928]  ? find_held_lock+0x32/0x90
[ 3225.317931]  ? mark_held_locks+0x50/0x80
[ 3225.317934]  ? _raw_spin_unlock_irq+0x29/0x40
[ 3225.317937]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.317939]  ? _raw_spin_unlock_irq+0x29/0x40
[ 3225.317942]  ? wait_for_completion_timeout+0x75/0x190
[ 3225.317954]  ? commit_tail+0x3c/0x70 [drm_kms_helper]
[ 3225.317960]  commit_tail+0x3c/0x70 [drm_kms_helper]
[ 3225.317968]  drm_atomic_helper_commit+0xe3/0x150 [drm_kms_helper]
[ 3225.317975]  drm_atomic_helper_disable_plane+0x82/0xb0 [drm_kms_helper]
[ 3225.317994]  drm_mode_cursor_universal+0x12c/0x240 [drm]
[ 3225.318011]  drm_mode_cursor_common+0xd8/0x230 [drm]
[ 3225.318026]  ? drm_mode_setplane+0x1a0/0x1a0 [drm]
[ 3225.318038]  drm_mode_cursor_ioctl+0x4d/0x70 [drm]
[ 3225.318049]  drm_ioctl_kernel+0xaa/0xf0 [drm]
[ 3225.318061]  drm_ioctl+0x208/0x390 [drm]
[ 3225.318075]  ? drm_mode_setplane+0x1a0/0x1a0 [drm]
[ 3225.318079]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.318145]  amdgpu_drm_ioctl+0x49/0x80 [amdgpu]
[ 3225.318164]  do_vfs_ioctl+0x411/0x750
[ 3225.318175]  ksys_ioctl+0x5e/0x90
[ 3225.318179]  __x64_sys_ioctl+0x16/0x20
[ 3225.318188]  do_syscall_64+0x5c/0xb0
[ 3225.318191]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[ 3225.318194] RIP: 0033:0x7fdde5b4007b
[ 3225.318203] Code: 0f 1e fa 48 8b 05 0d 9e 0c 00 64 c7 00 26 00 00
00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00
00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d dd 9d 0c 00 f7 d8 64 89
01 48
[ 3225.318209] RSP: 002b:00007ffec481a6d8 EFLAGS: 00000246 ORIG_RAX:
0000000000000010
[ 3225.318213] RAX: ffffffffffffffda RBX: 00007ffec481a710 RCX: 00007fdde5b4007b
[ 3225.318215] RDX: 00007ffec481a710 RSI: 00000000c01c64a3 RDI: 000000000000000e
[ 3225.318217] RBP: 00000000c01c64a3 R08: 0000000000000080 R09: 0000000000000000
[ 3225.318218] R10: 0000000000000004 R11: 0000000000000246 R12: 00000000000006f1
[ 3225.318220] R13: 000000000000000e R14: 000056201b5b5490 R15: 000056201bbe7820
[ 3225.318225] Modules linked in: macvtap macvlan tap rfcomm
xt_CHECKSUM xt_MASQUERADE nf_nat_tftp nf_conntrack_tftp tun bridge stp
llc nf_conntrack_netbios_ns nf_conntrack_broadcast xt_CT ip6t_REJECT
nf_reject_ipv6 ip6t_rpfilter ipt_REJECT nf_reject_ipv4 xt_conntrack
ebtable_nat ip6table_nat ip6table_mangle ip6table_raw
ip6table_security iptable_nat nf_nat iptable_mangle iptable_raw
iptable_security nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c
ip_set nfnetlink ebtable_filter ebtables ip6table_filter ip6_tables
iptable_filter cmac bnep sunrpc vfat fat snd_hda_codec_realtek
edac_mce_amd snd_hda_codec_generic ledtrig_audio kvm_amd rtwpci
snd_hda_codec_hdmi rtw88 kvm snd_hda_intel snd_usb_audio snd_hda_codec
mac80211 snd_hda_core snd_usbmidi_lib irqbypass snd_rawmidi uvcvideo
snd_hwdep snd_seq videobuf2_vmalloc videobuf2_memops btusb
videobuf2_v4l2 crct10dif_pclmul snd_seq_device videobuf2_common btrtl
crc32_pclmul eeepc_wmi snd_pcm btbcm btintel asus_wmi xpad snd_timer
sparse_keymap
[ 3225.318261]  videodev ff_memless bluetooth joydev
ghash_clmulni_intel cfg80211 video snd mc k10temp wmi_bmof soundcore
ecdh_generic sp5100_tco ecc rfkill ccp i2c_piix4 libarc4 gpio_amdpt
gpio_generic acpi_cpufreq binfmt_misc ip_tables hid_logitech_hidpp
amdgpu amd_iommu_v2 gpu_sched ttm drm_kms_helper drm igb crc32c_intel
dca i2c_algo_bit hid_logitech_dj nvme nvme_core wmi pinctrl_amd
[ 3225.318283] CR2: 000000000000c9f4

Every time when I see "SMP NOPTI" error I think that something wrong
happens with memory management.
So I decided to ask for help on the linux-mm mailing list.
Anyway for unknown reasons AMD developers ignored me.

Thanks.

--
Best Regards,
Mike Gavrilov.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: dmesg.txt --]
[-- Type: text/plain; charset="US-ASCII"; name="dmesg.txt", Size: 229742 bytes --]

[    0.000000] Linux version 5.3.0-0.rc2.git4.1.fc31.x86_64 (mockbuild@bkernel03.phx2.fedoraproject.org) (gcc version 9.1.1 20190605 (Red Hat 9.1.1-2) (GCC)) #1 SMP Fri Aug 2 13:10:34 UTC 2019
[    0.000000] Command line: BOOT_IMAGE=(hd2,gpt2)/boot/vmlinuz-5.3.0-0.rc2.git4.1.fc31.x86_64 root=UUID=cb6dee31-3eff-4a36-aa1b-890117330f8c ro resume=UUID=9c126bde-fad1-467c-8a1b-472db1d9a6a8 rhgb log_buf_len=16M sysrq_always_enabled=1 nmi_watchdog=1 pci=noaer memblock=debug amdgpu.lockup_timeout=-1
[    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: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20b000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b020000-0x00000000d8ae7fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000d8ae8000-0x00000000db3e6fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000db3e7000-0x00000000db40ffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000db410000-0x00000000db8c5fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000db8c6000-0x00000000dc3c6fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dc3c7000-0x00000000deffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd100000-0x00000000fd1fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000081f37ffff] usable
[    0.000000] memblock_reserve: [0x00000000cf716018-0x00000000cf716977] efi_memblock_x86_reserve_range+0x173/0x194
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] memblock_reserve: [0x00000000cf732018-0x00000000cf743057] setup_arch+0x3c5/0xcb2
[    0.000000] memblock_reserve: [0x00000000cf718018-0x00000000cf731057] setup_arch+0x3c5/0xcb2
[    0.000000] e820: update [mem 0xcf732018-0xcf743057] usable ==> usable
[    0.000000] e820: update [mem 0xcf732018-0xcf743057] usable ==> usable
[    0.000000] e820: update [mem 0xcf718018-0xcf731057] usable ==> usable
[    0.000000] e820: update [mem 0xcf718018-0xcf731057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000a20b000-0x000000000affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000b020000-0x00000000cf718017] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf718018-0x00000000cf731057] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf731058-0x00000000cf732017] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf732018-0x00000000cf743057] usable
[    0.000000] reserve setup_data: [mem 0x00000000cf743058-0x00000000d8ae7fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000d8ae8000-0x00000000db3e6fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000db3e7000-0x00000000db40ffff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000db410000-0x00000000db8c5fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000db8c6000-0x00000000dc3c6fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000dc3c7000-0x00000000deffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000df000000-0x00000000dfffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd100000-0x00000000fd1fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000081f37ffff] usable
[    0.000000] efi: EFI v2.60 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0xdb3ef000  ACPI=0xdb3ef000  SMBIOS=0xdc289000  SMBIOS 3.0=0xdc288000  ESRT=0xd62fcc18  MEMATTR=0xd6355018 
[    0.000000] memblock_reserve: [0x00000000d6355018-0x00000000d6355687] efi_memattr_init+0x75/0x8f
[    0.000000] secureboot: Secure boot disabled
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] last_pfn = 0x81f380 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF write-through
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFE0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000820000000 aka 33280M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[    0.000000] last_pfn = 0xdf000 max_arch_pfn = 0x400000000
[    0.000000] memblock_reserve: [0x00000007b0400000-0x00000007b040cfff] setup_arch+0x5e9/0xcb2
[    0.000000] memblock_add: [0x0000000000001000-0x000000000009ffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x0000000000100000-0x0000000009cfffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x000000000a000000-0x000000000a1fffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x000000000a20b000-0x000000000affffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x000000000b020000-0x00000000cf718017] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf718018-0x00000000cf731057] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf731058-0x00000000cf732017] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf732018-0x00000000cf743057] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000cf743058-0x00000000d8ae7fff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x00000000dc3c7000-0x00000000deffffff] e820__memblock_setup+0x44/0x63
[    0.000000] memblock_add: [0x0000000100000000-0x000000081f37ffff] e820__memblock_setup+0x44/0x63
[    0.000000] MEMBLOCK configuration:
[    0.000000]  memory size = 0x00000007fa715000 reserved size = 0x00000000056a7050
[    0.000000]  memory.cnt  = 0x7
[    0.000000]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes flags: 0x0
[    0.000000]  memory[0x1]	[0x0000000000100000-0x0000000009cfffff], 0x0000000009c00000 bytes flags: 0x0
[    0.000000]  memory[0x2]	[0x000000000a000000-0x000000000a1fffff], 0x0000000000200000 bytes flags: 0x0
[    0.000000]  memory[0x3]	[0x000000000a20b000-0x000000000affffff], 0x0000000000df5000 bytes flags: 0x0
[    0.000000]  memory[0x4]	[0x000000000b020000-0x00000000d8ae7fff], 0x00000000cdac8000 bytes flags: 0x0
[    0.000000]  memory[0x5]	[0x00000000dc3c7000-0x00000000deffffff], 0x0000000002c39000 bytes flags: 0x0
[    0.000000]  memory[0x6]	[0x0000000100000000-0x000000081f37ffff], 0x000000071f380000 bytes flags: 0x0
[    0.000000]  reserved.cnt  = 0x7
[    0.000000]  reserved[0x0]	[0x0000000000000000-0x0000000000000fff], 0x0000000000001000 bytes flags: 0x0
[    0.000000]  reserved[0x1]	[0x0000000059f09000-0x000000005c176fff], 0x000000000226e000 bytes flags: 0x0
[    0.000000]  reserved[0x2]	[0x00000000cf716018-0x00000000cf716977], 0x0000000000000960 bytes flags: 0x0
[    0.000000]  reserved[0x3]	[0x00000000cf718018-0x00000000cf731057], 0x0000000000019040 bytes flags: 0x0
[    0.000000]  reserved[0x4]	[0x00000000cf732018-0x00000000cf743057], 0x0000000000011040 bytes flags: 0x0
[    0.000000]  reserved[0x5]	[0x00000000d6355018-0x00000000d6355687], 0x0000000000000670 bytes flags: 0x0
[    0.000000]  reserved[0x6]	[0x00000007ad000000-0x00000007b040cfff], 0x000000000340d000 bytes flags: 0x0
[    0.000000] memblock_reserve: [0x000000000009d400-0x00000000000fffff] setup_arch+0x60d/0xcb2
[    0.000000] esrt: Reserving ESRT space from 0x00000000d62fcc18 to 0x00000000d62fcc50.
[    0.000000] memblock_reserve: [0x00000000d62fcc18-0x00000000d62fcc4f] efi_mem_reserve+0x22/0x30
[    0.000000] memblock_reserve: [0x000000000009ca40-0x000000000009d3ff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_reserve: [0x000000000003f000-0x000000000003ffff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x0000000001000000-0x000000000101ffff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x00000000cfc68000-0x00000000d62fbfff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x00000000d7f03000-0x00000000d8ae7fff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x00000000dc3c7000-0x00000000deffffff] efi_reserve_boot_services+0x76/0xc1
[    0.000000] memblock_reserve: [0x0000000000001000-0x000000000000ffff] setup_bios_corruption_check+0x133/0x1ab
[    0.000000] check: Scanning 1 areas for low memory corruption
[    0.000000] memblock_reserve: [0x0000000000096000-0x000000000009bfff] reserve_real_mode+0x7b/0x8d
[    0.000000] memblock_reserve: [0x0000000000000000-0x000000000000ffff] setup_arch+0x658/0xcb2
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x7b0401000, 0x7b0401fff] PGTABLE
[    0.000000] BRK [0x7b0402000, 0x7b0402fff] PGTABLE
[    0.000000] BRK [0x7b0403000, 0x7b0403fff] PGTABLE
[    0.000000] BRK [0x7b0404000, 0x7b0404fff] PGTABLE
[    0.000000] BRK [0x7b0405000, 0x7b0405fff] PGTABLE
[    0.000000] BRK [0x7b0406000, 0x7b0406fff] PGTABLE
[    0.000000] BRK [0x7b0407000, 0x7b0407fff] PGTABLE
[    0.000000] BRK [0x7b0408000, 0x7b0408fff] PGTABLE
[    0.000000] BRK [0x7b0409000, 0x7b0409fff] PGTABLE
[    0.000000] BRK [0x7b040a000, 0x7b040afff] PGTABLE
[    0.000000] BRK [0x7b040b000, 0x7b040bfff] PGTABLE
[    0.000000] BRK [0x7b040c000, 0x7b040cfff] PGTABLE
[    0.000000] memblock_alloc_try_nid: 16777216 bytes align=0x4 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 setup_log_buf+0xa4/0x187
[    0.000000] memblock_reserve: [0x000000081e380000-0x000000081f37ffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] printk: log_buf_len: 16777216 bytes
[    0.000000] printk: early log buf free: 248384(94%)
[    0.000000] RAMDISK: [mem 0x59f09000-0x5c176fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000DB3EF000 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000DB3EF098 0000AC (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000DB3FDB78 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000DB3EF1E0 00E998 (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.000000] ACPI: FACS 0x00000000DB8ADD80 000040
[    0.000000] ACPI: APIC 0x00000000DB3FDC90 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000DB3FDDF0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x00000000DB3FDE38 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DB3FDED8 0000FC (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
[    0.000000] ACPI: SSDT 0x00000000DB3FDFD8 008C98 (v02 AMD    AMD ALIB 00000002 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x00000000DB406C70 00322C (v01 AMD    AMD AOD  00000001 INTL 20120913)
[    0.000000] ACPI: MCFG 0x00000000DB409EA0 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.000000] ACPI: SSDT 0x00000000DB40F098 0000BF (v01 AMD    AMD PT   00001000 INTL 20120913)
[    0.000000] ACPI: HPET 0x00000000DB409F38 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.000000] ACPI: SSDT 0x00000000DB409F70 000024 (v01 AMDFCH FCHZP    00001000 INTL 20120913)
[    0.000000] ACPI: UEFI 0x00000000DB409F98 000042 (v01 ALASKA A M I    00000002      01000013)
[    0.000000] ACPI: IVRS 0x00000000DB409FE0 0000D0 (v02 AMD    AMD IVRS 00000001 AMD  00000000)
[    0.000000] ACPI: SSDT 0x00000000DB40A0B0 002314 (v01 AMD    AMD CPU  00000001 AMD  00000001)
[    0.000000] ACPI: CRAT 0x00000000DB40C3C8 000F50 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
[    0.000000] ACPI: CDIT 0x00000000DB40D318 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x00000000DB40D348 001D4A (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000081f37ffff]
[    0.000000] memblock_reserve: [0x000000081e355000-0x000000081e37ffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] NODE_DATA(0) allocated [mem 0x81e355000-0x81e37ffff]
[    0.000000] MEMBLOCK configuration:
[    0.000000]  memory size = 0x00000007fa715000 reserved size = 0x000000001061d648
[    0.000000]  memory.cnt  = 0x7
[    0.000000]  memory[0x0]	[0x0000000000001000-0x000000000009ffff], 0x000000000009f000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x1]	[0x0000000000100000-0x0000000009cfffff], 0x0000000009c00000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x2]	[0x000000000a000000-0x000000000a1fffff], 0x0000000000200000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x3]	[0x000000000a20b000-0x000000000affffff], 0x0000000000df5000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x4]	[0x000000000b020000-0x00000000d8ae7fff], 0x00000000cdac8000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x5]	[0x00000000dc3c7000-0x00000000deffffff], 0x0000000002c39000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x6]	[0x0000000100000000-0x000000081f37ffff], 0x000000071f380000 bytes on node 0 flags: 0x0
[    0.000000]  reserved.cnt  = 0x11
[    0.000000]  reserved[0x0]	[0x0000000000000000-0x000000000000ffff], 0x0000000000010000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x1]	[0x000000000003f000-0x000000000003ffff], 0x0000000000001000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x2]	[0x0000000000096000-0x000000000009bfff], 0x0000000000006000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x3]	[0x000000000009ca40-0x00000000000fffff], 0x00000000000635c0 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x4]	[0x0000000001000000-0x000000000101ffff], 0x0000000000020000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x5]	[0x0000000059f09000-0x000000005c176fff], 0x000000000226e000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x6]	[0x00000000cf716018-0x00000000cf716977], 0x0000000000000960 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x7]	[0x00000000cf718018-0x00000000cf731057], 0x0000000000019040 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x8]	[0x00000000cf732018-0x00000000cf743057], 0x0000000000011040 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x9]	[0x00000000cfc68000-0x00000000d62fbfff], 0x0000000006694000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xa]	[0x00000000d62fcc18-0x00000000d62fcc4f], 0x0000000000000038 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xb]	[0x00000000d6355018-0x00000000d6355687], 0x0000000000000670 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xc]	[0x00000000d7f03000-0x00000000d8ae7fff], 0x0000000000be5000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xd]	[0x00000000dc3c7000-0x00000000deffffff], 0x0000000002c39000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xe]	[0x00000007ad000000-0x00000007b040cfff], 0x000000000340d000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xf]	[0x000000081e355000-0x000000081e37ffff], 0x000000000002b000 bytes flags: 0x0
[    0.000000]  reserved[0x10]	[0x000000081e380000-0x000000081f37ffff], 0x0000000001000000 bytes on node 0 flags: 0x0
[    0.000000] memblock_alloc_try_nid: 16384 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 memory_present+0x3e/0x107
[    0.000000] memblock_reserve: [0x000000081e351000-0x000000081e354fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x44/0x67
[    0.000000] memblock_reserve: [0x000000081e350000-0x000000081e350fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=0 from=0x0000000000000000 max_addr=0x0000000000000000 sparse_index_alloc+0x44/0x67
[    0.000000] memblock_reserve: [0x000000081e34f000-0x000000081e34ffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 10240 bytes align=0x40 nid=0 from=0x0000000818000000 max_addr=0x0000000820000000 sparse_init_nid+0x8a/0x42e
[    0.000000] memblock_reserve: [0x000000081e34c800-0x000000081e34efff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid_raw: 536870912 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 sparse_init_nid+0x13a/0x42e
[    0.000000] memblock_reserve: [0x00000007fe34c000-0x000000081e34bfff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.0+0xc/0x24
[    0.000000] memblock_reserve: [0x00000007fe34b000-0x00000007fe34bfff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid_raw: 4096 bytes align=0x1000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_alloc_block_zero.constprop.0+0xc/0x24
[    0.000000] memblock_reserve: [0x00000007fe34a000-0x00000007fe34afff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid_raw: 2097152 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 vmemmap_populate+0x12a/0x2d1
[    0.000000] memblock_reserve: [0x00000007fe000000-0x00000007fe1fffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000]    memblock_free: [0x000000081e200000-0x000000081e34bfff] sparse_init_nid+0x38e/0x42e
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000081f37ffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000009cfffff]
[    0.000000]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.000000]   node   0: [mem 0x000000000a20b000-0x000000000affffff]
[    0.000000]   node   0: [mem 0x000000000b020000-0x00000000d8ae7fff]
[    0.000000]   node   0: [mem 0x00000000dc3c7000-0x00000000deffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000081f37ffff]
[    0.000000] Zeroed struct page in unavailable ranges: 19563 pages
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000081f37ffff]
[    0.000000] On node 0 totalpages: 8365845
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 26 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13968 pages used for memmap
[    0.000000]   DMA32 zone: 893942 pages, LIFO batch:63
[    0.000000]   Normal zone: 116686 pages used for memmap
[    0.000000]   Normal zone: 7467904 pages, LIFO batch:63
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.000000] memblock_alloc_try_nid: 73 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 acpi_parse_hpet+0xca/0x132
[    0.000000] memblock_reserve: [0x000000081e34c780-0x000000081e34c7c8] memblock_alloc_range_nid+0xad/0x129
[    0.000000] smpboot: Allowing 32 CPUs, 16 hotplug CPUs
[    0.000000] memblock_alloc_try_nid: 150 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 io_apic_init_mappings+0x38/0x1c2
[    0.000000] memblock_reserve: [0x000000081e34c6c0-0x000000081e34c755] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 2176 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 e820__reserve_resources+0x2c/0x163
[    0.000000] memblock_reserve: [0x000000081e34be40-0x000000081e34c6bf] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bdc0-0x000000081e34be27] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bd40-0x000000081e34bda7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bcc0-0x000000081e34bd27] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bc40-0x000000081e34bca7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bbc0-0x000000081e34bc27] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bb40-0x000000081e34bba7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34bac0-0x000000081e34bb27] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34ba40-0x000000081e34baa7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b9c0-0x000000081e34ba27] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b940-0x000000081e34b9a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b8c0-0x000000081e34b927] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b840-0x000000081e34b8a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b7c0-0x000000081e34b827] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b740-0x000000081e34b7a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b6c0-0x000000081e34b727] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b640-0x000000081e34b6a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b5c0-0x000000081e34b627] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b540-0x000000081e34b5a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b4c0-0x000000081e34b527] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b440-0x000000081e34b4a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b3c0-0x000000081e34b427] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b340-0x000000081e34b3a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b2c0-0x000000081e34b327] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b240-0x000000081e34b2a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b1c0-0x000000081e34b227] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b140-0x000000081e34b1a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b0c0-0x000000081e34b127] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34b040-0x000000081e34b0a7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 104 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 firmware_map_add_early+0x2a/0x5e
[    0.000000] memblock_reserve: [0x000000081e34afc0-0x000000081e34b027] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34af80-0x000000081e34af9f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34af40-0x000000081e34af5f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34af00-0x000000081e34af1f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0x09d00000-0x09ffffff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34aec0-0x000000081e34aedf] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0x0a200000-0x0a20afff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ae80-0x000000081e34ae9f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ae40-0x000000081e34ae5f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0xcf718000-0xcf718fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ae00-0x000000081e34ae1f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0xcf731000-0xcf731fff]
[    0.000000] PM: Registered nosave memory: [mem 0xcf732000-0xcf732fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34adc0-0x000000081e34addf] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0xcf743000-0xcf743fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ad80-0x000000081e34ad9f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0xd8ae8000-0xdb3e6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb3e7000-0xdb40ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb410000-0xdb8c5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb8c6000-0xdc3c6fff]
[    0.000000] memblock_alloc_try_nid: 32 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 __register_nosave_region+0x7a/0xf7
[    0.000000] memblock_reserve: [0x000000081e34ad40-0x000000081e34ad5f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] PM: Registered nosave memory: [mem 0xdf000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfd0fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfd100000-0xfd1fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfd200000-0xfe9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd6000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] [mem 0xe0000000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] memblock_alloc_try_nid: 274 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xcb/0x59b
[    0.000000] memblock_reserve: [0x000000081e34ac00-0x000000081e34ad11] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 274 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xdf/0x59b
[    0.000000] memblock_reserve: [0x000000081e34aac0-0x000000081e34abd1] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 274 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 start_kernel+0xf3/0x59b
[    0.000000] memblock_reserve: [0x000000081e34a980-0x000000081e34aa91] memblock_alloc_range_nid+0xad/0x129
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_alloc_info+0x3b/0x6c
[    0.000000] memblock_reserve: [0x000000081e349000-0x000000081e349fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_embed_first_chunk+0x71/0x2ee
[    0.000000] memblock_reserve: [0x000000081e348000-0x000000081e348fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 67108864 bytes align=0x200000 nid=0 from=0x0000000001000000 max_addr=0x0000000000000000 pcpu_fc_alloc+0xfa/0x14f
[    0.000000] memblock_reserve: [0x00000007fa000000-0x00000007fdffffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000]    memblock_free: [0x00000007fa1f9000-0x00000007fa1fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fa3f9000-0x00000007fa3fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fa5f9000-0x00000007fa5fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fa7f9000-0x00000007fa7fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fa9f9000-0x00000007fa9fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fabf9000-0x00000007fabfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fadf9000-0x00000007fadfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007faff9000-0x00000007faffffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fb1f9000-0x00000007fb1fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fb3f9000-0x00000007fb3fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fb5f9000-0x00000007fb5fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fb7f9000-0x00000007fb7fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fb9f9000-0x00000007fb9fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fbbf9000-0x00000007fbbfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fbdf9000-0x00000007fbdfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fbff9000-0x00000007fbffffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fc1f9000-0x00000007fc1fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fc3f9000-0x00000007fc3fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fc5f9000-0x00000007fc5fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fc7f9000-0x00000007fc7fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fc9f9000-0x00000007fc9fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fcbf9000-0x00000007fcbfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fcdf9000-0x00000007fcdfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fcff9000-0x00000007fcffffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fd1f9000-0x00000007fd1fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fd3f9000-0x00000007fd3fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fd5f9000-0x00000007fd5fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fd7f9000-0x00000007fd7fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fd9f9000-0x00000007fd9fffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fdbf9000-0x00000007fdbfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fddf9000-0x00000007fddfffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000]    memblock_free: [0x00000007fdff9000-0x00000007fdffffff] pcpu_embed_first_chunk+0x207/0x2ee
[    0.000000] percpu: Embedded 505 pages/cpu s2031616 r8192 d28672 u2097152
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x2f2/0x7cb
[    0.000000] memblock_reserve: [0x000000081e34a940-0x000000081e34a947] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x325/0x7cb
[    0.000000] memblock_reserve: [0x000000081e34a900-0x000000081e34a907] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 128 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x345/0x7cb
[    0.000000] memblock_reserve: [0x000000081e34a880-0x000000081e34a8ff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 256 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x37f/0x7cb
[    0.000000] memblock_reserve: [0x000000081e34a780-0x000000081e34a87f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] pcpu-alloc: s2031616 r8192 d28672 u2097152 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 
[    0.000000] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 
[    0.000000] pcpu-alloc: [0] 16 [0] 17 [0] 18 [0] 19 [0] 20 [0] 21 [0] 22 [0] 23 
[    0.000000] pcpu-alloc: [0] 24 [0] 25 [0] 26 [0] 27 [0] 28 [0] 29 [0] 30 [0] 31 
[    0.000000] memblock_alloc_try_nid: 336 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_setup_first_chunk+0x641/0x7cb
[    0.000000] memblock_reserve: [0x000000081e34a600-0x000000081e34a74f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 121 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x78/0x249
[    0.000000] memblock_reserve: [0x000000081e34a580-0x000000081e34a5f8] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 256 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xcf/0x249
[    0.000000] memblock_reserve: [0x000000081e34a480-0x000000081e34a57f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 264 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x10e/0x249
[    0.000000] memblock_reserve: [0x000000081e34a340-0x000000081e34a447] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 64 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x12e/0x249
[    0.000000] memblock_reserve: [0x000000081e34a300-0x000000081e34a33f] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 121 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x78/0x249
[    0.000000] memblock_reserve: [0x000000081e34a280-0x000000081e34a2f8] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 896 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0xcf/0x249
[    0.000000] memblock_reserve: [0x000000081e347c80-0x000000081e347fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 904 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x10e/0x249
[    0.000000] memblock_reserve: [0x000000081e3478c0-0x000000081e347c47] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 224 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 pcpu_alloc_first_chunk+0x12e/0x249
[    0.000000] memblock_reserve: [0x000000081e34a180-0x000000081e34a25f] memblock_alloc_range_nid+0xad/0x129
[    0.000000]    memblock_free: [0x000000081e349000-0x000000081e349fff] pcpu_embed_first_chunk+0x2a9/0x2ee
[    0.000000]    memblock_free: [0x000000081e348000-0x000000081e348fff] pcpu_embed_first_chunk+0x2dc/0x2ee
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a140-0x000000081e34a147] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a100-0x000000081e34a107] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a0c0-0x000000081e34a0c7] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a080-0x000000081e34a087] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 8 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_bootmem_cpumask_var+0x28/0x56
[    0.000000] memblock_reserve: [0x000000081e34a040-0x000000081e34a047] memblock_alloc_range_nid+0xad/0x129
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8235101
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=(hd2,gpt2)/boot/vmlinuz-5.3.0-0.rc2.git4.1.fc31.x86_64 root=UUID=cb6dee31-3eff-4a36-aa1b-890117330f8c ro resume=UUID=9c126bde-fad1-467c-8a1b-472db1d9a6a8 rhgb log_buf_len=16M sysrq_always_enabled=1 nmi_watchdog=1 pci=noaer memblock=debug amdgpu.lockup_timeout=-1
[    0.000000] sysrq: sysrq always enabled.
[    0.000000] memblock_alloc_try_nid: 33554432 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_large_system_hash+0x181/0x2c5
[    0.000000] memblock_reserve: [0x00000007f8000000-0x00000007f9ffffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] memblock_alloc_try_nid: 16777216 bytes align=0x40 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 alloc_large_system_hash+0x181/0x2c5
[    0.000000] memblock_reserve: [0x00000007f7000000-0x00000007f7ffffff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e349000-0x000000081e349fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e348000-0x000000081e348fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e346000-0x000000081e346fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e345000-0x000000081e345fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e344000-0x000000081e344fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 4096 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 spp_getpage+0x6a/0x94
[    0.000000] memblock_reserve: [0x000000081e343000-0x000000081e343fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] memblock_alloc_try_nid: 67108864 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x00000000ffffffff swiotlb_init+0x4d/0xac
[    0.000000] memblock_reserve: [0x00000000cb716000-0x00000000cf715fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 131072 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0x6f/0x13d
[    0.000000] memblock_reserve: [0x000000081e323000-0x000000081e342fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] memblock_alloc_try_nid: 262144 bytes align=0x1000 nid=-1 from=0x0000000000000000 max_addr=0x0000000000000000 swiotlb_init_with_tbl+0xa6/0x13d
[    0.000000] memblock_reserve: [0x000000081e2e3000-0x000000081e322fff] memblock_alloc_range_nid+0xad/0x129
[    0.000000] Memory: 32490544K/33463380K available (14339K kernel code, 3255K rwdata, 4664K rodata, 4948K init, 18256K bss, 972836K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 40457 entries in 159 pages
[    0.000000] Running RCU self tests
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu: 	RCU lockdep checking is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[    0.000000] rcu: 	RCU callback double-/use-after-free debug enabled.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 524544, nr_irqs: 1224, preallocated irqs: 16
[    0.000000] random: crng done (trusting CPU's manufacturer)
[    0.000000] Console: colour dummy device 80x25
[    0.000000] printk: console [tty0] enabled
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8192
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     32768
[    0.000000] ... MAX_LOCKDEP_CHAINS:      65536
[    0.000000] ... CHAINHASH_SIZE:          32768
[    0.000000]  memory used by lock dependency info: 6749 kB
[    0.000000]  per task-struct memory footprint: 2688 bytes
[    0.000000] kmemleak: Kernel memory leak detector disabled
[    0.000000] ACPI: Core revision 20190703
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.001000] Switched APIC routing to physical flat.
[    0.001000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.007000] tsc: PIT calibration matches HPET. 1 loops
[    0.007000] tsc: Detected 3692.557 MHz processor
[    0.000008] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6a73bf38f60, max_idle_ns: 881590962054 ns
[    0.000025] Calibrating delay loop (skipped), value calculated using timer frequency.. 7385.11 BogoMIPS (lpj=3692557)
[    0.000039] pid_max: default: 32768 minimum: 301
[    0.000186] __memblock_free_late: [0x00000000dc3c7000-0x00000000deffffff] efi_free_boot_services+0x12c/0x200
[    0.004177] __memblock_free_late: [0x00000000d7f03000-0x00000000d8ae7fff] efi_free_boot_services+0x12c/0x200
[    0.005974] __memblock_free_late: [0x00000000cfc68000-0x00000000d62fbfff] efi_free_boot_services+0x12c/0x200
[    0.014008] __memblock_free_late: [0x0000000001000000-0x000000000101ffff] efi_free_boot_services+0x12c/0x200
[    0.014040] __memblock_free_late: [0x000000000003f000-0x000000000003ffff] efi_free_boot_services+0x12c/0x200
[    0.015032] ---[ User Space ]---
[    0.015038] 0x0000000000000000-0x0000000000008000          32K     RW                     x  pte
[    0.015052] 0x0000000000008000-0x000000000003f000         220K                               pte
[    0.015064] 0x000000000003f000-0x0000000000040000           4K                               pte
[    0.015076] 0x0000000000040000-0x00000000000a0000         384K     RW                     x  pte
[    0.015091] 0x00000000000a0000-0x0000000000200000        1408K                               pte
[    0.015103] 0x0000000000200000-0x0000000001000000          14M                               pmd
[    0.015115] 0x0000000001000000-0x0000000001020000         128K                               pte
[    0.015129] 0x0000000001020000-0x0000000001200000        1920K                               pte
[    0.015143] 0x0000000001200000-0x0000000040000000        1006M                               pmd
[    0.015155] 0x0000000040000000-0x00000000c0000000           2G                               pud
[    0.015167] 0x00000000c0000000-0x00000000cfc00000         252M                               pmd
[    0.015179] 0x00000000cfc00000-0x00000000cfc68000         416K                               pte
[    0.015193] 0x00000000cfc68000-0x00000000cfe00000        1632K                               pte
[    0.015205] 0x00000000cfe00000-0x00000000d6200000         100M                               pmd
[    0.015218] 0x00000000d6200000-0x00000000d62fc000        1008K                               pte
[    0.015231] 0x00000000d62fc000-0x00000000d6400000        1040K     RW                     x  pte
[    0.015243] 0x00000000d6400000-0x00000000d7c00000          24M     RW         PSE         x  pmd
[    0.015256] 0x00000000d7c00000-0x00000000d7c0a000          40K     RW                     x  pte
[    0.015273] 0x00000000d7c0a000-0x00000000d7f03000        3044K                               pte
[    0.015286] 0x00000000d7f03000-0x00000000d8000000        1012K                               pte
[    0.015298] 0x00000000d8000000-0x00000000d8a00000          10M                               pmd
[    0.015311] 0x00000000d8a00000-0x00000000d8ae8000         928K                               pte
[    0.015324] 0x00000000d8ae8000-0x00000000d8c00000        1120K                               pte
[    0.015336] 0x00000000d8c00000-0x00000000db800000          44M                               pmd
[    0.015348] 0x00000000db800000-0x00000000db8c6000         792K                               pte
[    0.015362] 0x00000000db8c6000-0x00000000dba00000        1256K     RW                     NX pte
[    0.015374] 0x00000000dba00000-0x00000000dc200000           8M     RW         PSE         NX pmd
[    0.015389] 0x00000000dc200000-0x00000000dc33f000        1276K     RW                     NX pte
[    0.015402] 0x00000000dc33f000-0x00000000dc342000          12K     ro                     x  pte
[    0.015414] 0x00000000dc342000-0x00000000dc347000          20K     RW                     NX pte
[    0.015427] 0x00000000dc347000-0x00000000dc348000           4K     ro                     x  pte
[    0.015439] 0x00000000dc348000-0x00000000dc34d000          20K     RW                     NX pte
[    0.015452] 0x00000000dc34d000-0x00000000dc351000          16K     ro                     x  pte
[    0.015468] 0x00000000dc351000-0x00000000dc356000          20K     RW                     NX pte
[    0.015482] 0x00000000dc356000-0x00000000dc357000           4K     ro                     x  pte
[    0.015495] 0x00000000dc357000-0x00000000dc35b000          16K     RW                     NX pte
[    0.015508] 0x00000000dc35b000-0x00000000dc35c000           4K     ro                     x  pte
[    0.015521] 0x00000000dc35c000-0x00000000dc361000          20K     RW                     NX pte
[    0.015534] 0x00000000dc361000-0x00000000dc36e000          52K     ro                     x  pte
[    0.015547] 0x00000000dc36e000-0x00000000dc375000          28K     RW                     NX pte
[    0.015560] 0x00000000dc375000-0x00000000dc378000          12K     ro                     x  pte
[    0.015573] 0x00000000dc378000-0x00000000dc37d000          20K     RW                     NX pte
[    0.015586] 0x00000000dc37d000-0x00000000dc37e000           4K     ro                     x  pte
[    0.015599] 0x00000000dc37e000-0x00000000dc383000          20K     RW                     NX pte
[    0.015612] 0x00000000dc383000-0x00000000dc384000           4K     ro                     x  pte
[    0.015625] 0x00000000dc384000-0x00000000dc389000          20K     RW                     NX pte
[    0.015638] 0x00000000dc389000-0x00000000dc38a000           4K     ro                     x  pte
[    0.015651] 0x00000000dc38a000-0x00000000dc38f000          20K     RW                     NX pte
[    0.015664] 0x00000000dc38f000-0x00000000dc390000           4K     ro                     x  pte
[    0.015677] 0x00000000dc390000-0x00000000dc395000          20K     RW                     NX pte
[    0.015690] 0x00000000dc395000-0x00000000dc396000           4K     ro                     x  pte
[    0.015703] 0x00000000dc396000-0x00000000dc39b000          20K     RW                     NX pte
[    0.015716] 0x00000000dc39b000-0x00000000dc39c000           4K     ro                     x  pte
[    0.015729] 0x00000000dc39c000-0x00000000dc3a0000          16K     RW                     NX pte
[    0.015742] 0x00000000dc3a0000-0x00000000dc3aa000          40K     ro                     x  pte
[    0.015755] 0x00000000dc3aa000-0x00000000dc3b3000          36K     RW                     NX pte
[    0.015768] 0x00000000dc3b3000-0x00000000dc3b9000          24K     ro                     x  pte
[    0.015781] 0x00000000dc3b9000-0x00000000dc3be000          20K     RW                     NX pte
[    0.016026] 0x00000000dc3be000-0x00000000dc3c2000          16K     ro                     x  pte
[    0.016039] 0x00000000dc3c2000-0x00000000dc3c7000          20K     RW                     NX pte
[    0.016052] 0x00000000dc3c7000-0x00000000dc400000         228K                               pte
[    0.016064] 0x00000000dc400000-0x00000000df000000          44M                               pmd
[    0.016077] 0x00000000df000000-0x00000000f8000000         400M                               pmd
[    0.016089] 0x00000000f8000000-0x00000000fc000000          64M     RW         PSE         x  pmd
[    0.016102] 0x00000000fc000000-0x00000000fd000000          16M                               pmd
[    0.016116] 0x00000000fd000000-0x00000000fd100000           1M                               pte
[    0.016129] 0x00000000fd100000-0x00000000fd200000           1M     RW     PCD             x  pte
[    0.016143] 0x00000000fd200000-0x00000000fea00000          24M                               pmd
[    0.016154] 0x00000000fea00000-0x00000000fea10000          64K     RW     PCD             x  pte
[    0.016170] 0x00000000fea10000-0x00000000feb80000        1472K                               pte
[    0.016183] 0x00000000feb80000-0x00000000fec02000         520K     RW     PCD             x  pte
[    0.016196] 0x00000000fec02000-0x00000000fec10000          56K                               pte
[    0.016208] 0x00000000fec10000-0x00000000fec11000           4K     RW     PCD             x  pte
[    0.016221] 0x00000000fec11000-0x00000000fec30000         124K                               pte
[    0.016233] 0x00000000fec30000-0x00000000fec31000           4K     RW     PCD             x  pte
[    0.016247] 0x00000000fec31000-0x00000000fed00000         828K                               pte
[    0.016259] 0x00000000fed00000-0x00000000fed01000           4K     RW     PCD             x  pte
[    0.016272] 0x00000000fed01000-0x00000000fed40000         252K                               pte
[    0.016284] 0x00000000fed40000-0x00000000fed45000          20K     RW     PCD             x  pte
[    0.016298] 0x00000000fed45000-0x00000000fed80000         236K                               pte
[    0.016310] 0x00000000fed80000-0x00000000fed90000          64K     RW     PCD             x  pte
[    0.016323] 0x00000000fed90000-0x00000000fedc2000         200K                               pte
[    0.016335] 0x00000000fedc2000-0x00000000fedd0000          56K     RW     PCD             x  pte
[    0.016348] 0x00000000fedd0000-0x00000000fedd4000          16K                               pte
[    0.016360] 0x00000000fedd4000-0x00000000fedd6000           8K     RW     PCD             x  pte
[    0.016373] 0x00000000fedd6000-0x00000000fee00000         168K                               pte
[    0.016387] 0x00000000fee00000-0x00000000fef00000           1M     RW     PCD             x  pte
[    0.016401] 0x00000000fef00000-0x00000000ff000000           1M                               pte
[    0.016413] 0x00000000ff000000-0x0000000100000000          16M     RW     PCD PSE         x  pmd
[    0.016427] 0x0000000100000000-0x00000007c0000000          27G                               pud
[    0.016440] 0x00000007c0000000-0x00000007f6c00000         876M                               pmd
[    0.016455] 0x00000007f6c00000-0x00000007f6dc6000        1816K                               pte
[    0.016467] 0x00000007f6dc6000-0x00000007f6dc8000           8K     RW                     NX pte
[    0.016481] 0x00000007f6dc8000-0x00000007f6e00000         224K                               pte
[    0.016493] 0x00000007f6e00000-0x0000000800000000         146M                               pmd
[    0.016507] 0x0000000800000000-0x0000008000000000         480G                               pud
[    0.016523] 0x0000008000000000-0xffff800000000000   17179737600G                               pgd
[    0.016535] ---[ Kernel Space ]---
[    0.016540] 0xffff800000000000-0xffff808000000000         512G                               pgd
[    0.016552] ---[ LDT remap ]---
[    0.016557] 0xffff808000000000-0xffff810000000000         512G                               pgd
[    0.016569] ---[ Low Kernel Mapping ]---
[    0.016575] 0xffff810000000000-0xffff818000000000         512G                               pgd
[    0.016587] ---[ vmalloc() Area ]---
[    0.016593] 0xffff818000000000-0xffff820000000000         512G                               pgd
[    0.016604] ---[ Vmemmap ]---
[    0.016610] 0xffff820000000000-0xffff9b0000000000          25T                               pgd
[    0.016622] 0xffff9b0000000000-0xffff9b03c0000000          15G                               pud
[    0.016638] 0xffff9b03c0000000-0xffff9b03c0200000           2M     RW                 GLB NX pte
[    0.016651] 0xffff9b03c0200000-0xffff9b03c9c00000         154M     RW         PSE     GLB NX pmd
[    0.016666] 0xffff9b03c9c00000-0xffff9b03c9d00000           1M     RW                 GLB NX pte
[    0.016681] 0xffff9b03c9d00000-0xffff9b03c9e00000           1M                               pte
[    0.016692] 0xffff9b03c9e00000-0xffff9b03ca000000           2M                               pmd
[    0.016704] 0xffff9b03ca000000-0xffff9b03ca200000           2M     RW         PSE     GLB NX pmd
[    0.016717] 0xffff9b03ca200000-0xffff9b03ca20b000          44K                               pte
[    0.016733] 0xffff9b03ca20b000-0xffff9b03ca400000        2004K     RW                 GLB NX pte
[    0.016746] 0xffff9b03ca400000-0xffff9b03cb000000          12M     RW         PSE     GLB NX pmd
[    0.016759] 0xffff9b03cb000000-0xffff9b03cb020000         128K                               pte
[    0.016774] 0xffff9b03cb020000-0xffff9b03cb200000        1920K     RW                 GLB NX pte
[    0.016789] 0xffff9b03cb200000-0xffff9b0400000000         846M     RW         PSE     GLB NX pmd
[    0.016803] 0xffff9b0400000000-0xffff9b0480000000           2G     RW         PSE     GLB NX pud
[    0.016817] 0xffff9b0480000000-0xffff9b0498a00000         394M     RW         PSE     GLB NX pmd
[    0.016832] 0xffff9b0498a00000-0xffff9b0498ae8000         928K     RW                 GLB NX pte
[    0.016846] 0xffff9b0498ae8000-0xffff9b0498c00000        1120K                               pte
[    0.016858] 0xffff9b0498c00000-0xffff9b049c200000          54M                               pmd
[    0.016873] 0xffff9b049c200000-0xffff9b049c3c7000        1820K                               pte
[    0.016886] 0xffff9b049c3c7000-0xffff9b049c400000         228K     RW                 GLB NX pte
[    0.016899] 0xffff9b049c400000-0xffff9b049f000000          44M     RW         PSE     GLB NX pmd
[    0.016913] 0xffff9b049f000000-0xffff9b04c0000000         528M                               pmd
[    0.016925] 0xffff9b04c0000000-0xffff9b0bc0000000          28G     RW         PSE     GLB NX pud
[    0.016940] 0xffff9b0bc0000000-0xffff9b0bdf200000         498M     RW         PSE     GLB NX pmd
[    0.016955] 0xffff9b0bdf200000-0xffff9b0bdf380000        1536K     RW                 GLB NX pte
[    0.016969] 0xffff9b0bdf380000-0xffff9b0bdf400000         512K                               pte
[    0.016982] 0xffff9b0bdf400000-0xffff9b0c00000000         524M                               pmd
[    0.016996] 0xffff9b0c00000000-0xffff9b8000000000         464G                               pud
[    0.017009] 0xffff9b8000000000-0xffffb40000000000       25088G                               pgd
[    0.017027] 0xffffb40000000000-0xffffb439c0000000         231G                               pud
[    0.017039] 0xffffb439c0000000-0xffffb439c0005000          20K     RW                 GLB NX pte
[    0.017052] 0xffffb439c0005000-0xffffb439c0006000           4K                               pte
[    0.017064] 0xffffb439c0006000-0xffffb439c0007000           4K     RW                 GLB NX pte
[    0.017077] 0xffffb439c0007000-0xffffb439c0008000           4K                               pte
[    0.017089] 0xffffb439c0008000-0xffffb439c000c000          16K     RW                 GLB NX pte
[    0.017102] 0xffffb439c000c000-0xffffb439c000d000           4K                               pte
[    0.017113] 0xffffb439c000d000-0xffffb439c000e000           4K     RW                 GLB NX pte
[    0.017127] 0xffffb439c000e000-0xffffb439c0010000           8K                               pte
[    0.017138] 0xffffb439c0010000-0xffffb439c001f000          60K     RW                 GLB NX pte
[    0.017151] 0xffffb439c001f000-0xffffb439c0020000           4K                               pte
[    0.017163] 0xffffb439c0020000-0xffffb439c002a000          40K     RW                 GLB NX pte
[    0.017176] 0xffffb439c002a000-0xffffb439c0030000          24K                               pte
[    0.017188] 0xffffb439c0030000-0xffffb439c0033000          12K     RW                 GLB NX pte
[    0.017201] 0xffffb439c0033000-0xffffb439c0034000           4K                               pte
[    0.017213] 0xffffb439c0034000-0xffffb439c0036000           8K     RW                 GLB NX pte
[    0.017226] 0xffffb439c0036000-0xffffb439c0038000           8K                               pte
[    0.017238] 0xffffb439c0038000-0xffffb439c003b000          12K     RW                 GLB NX pte
[    0.017251] 0xffffb439c003b000-0xffffb439c003c000           4K                               pte
[    0.017263] 0xffffb439c003c000-0xffffb439c003d000           4K     RW     PCD         GLB NX pte
[    0.017276] 0xffffb439c003d000-0xffffb439c0080000         268K                               pte
[    0.017289] 0xffffb439c0080000-0xffffb439c0100000         512K     RW     PCD         GLB NX pte
[    0.017304] 0xffffb439c0100000-0xffffb439c0200000           1M                               pte
[    0.017320] 0xffffb439c0200000-0xffffb43a00000000        1022M                               pmd
[    0.017335] 0xffffb43a00000000-0xffffb48000000000         280G                               pud
[    0.017350] 0xffffb48000000000-0xffffdb8000000000          39T                               pgd
[    0.017361] 0xffffdb8000000000-0xffffdb9640000000          89G                               pud
[    0.017373] 0xffffdb9640000000-0xffffdb9643800000          56M     RW         PSE     GLB NX pmd
[    0.017385] 0xffffdb9643800000-0xffffdb9644000000           8M                               pmd
[    0.017397] 0xffffdb9644000000-0xffffdb9660800000         456M     RW         PSE     GLB NX pmd
[    0.017411] 0xffffdb9660800000-0xffffdb9680000000         504M                               pmd
[    0.017424] 0xffffdb9680000000-0xffffdc0000000000         422G                               pud
[    0.017436] 0xffffdc0000000000-0xfffffe0000000000          34T                               pgd
[    0.017447] ---[ CPU entry Area ]---
[    0.017452] 0xfffffe0000000000-0xfffffe0000002000           8K     ro                 GLB NX pte
[    0.017465] 0xfffffe0000002000-0xfffffe0000003000           4K     RW                 GLB NX pte
[    0.017477] 0xfffffe0000003000-0xfffffe0000006000          12K     ro                 GLB NX pte
[    0.017489] 0xfffffe0000006000-0xfffffe0000007000           4K                               pte
[    0.017500] 0xfffffe0000007000-0xfffffe0000008000           4K     RW                 GLB NX pte
[    0.017513] 0xfffffe0000008000-0xfffffe0000009000           4K                               pte
[    0.017524] 0xfffffe0000009000-0xfffffe000000a000           4K     RW                 GLB NX pte
[    0.017536] 0xfffffe000000a000-0xfffffe000000d000          12K                               pte
[    0.017547] 0xfffffe000000d000-0xfffffe000000e000           4K     RW                 GLB NX pte
[    0.017559] 0xfffffe000000e000-0xfffffe000000f000           4K                               pte
[    0.017571] 0xfffffe000000f000-0xfffffe0000010000           4K     RW                 GLB NX pte
[    0.017583] 0xfffffe0000010000-0xfffffe0000011000           4K                               pte
[    0.017594] 0xfffffe0000011000-0xfffffe0000012000           4K     RW                 GLB NX pte
[    0.017606] 0xfffffe0000012000-0xfffffe0000034000         136K                               pte
[    0.017618] 0xfffffe0000034000-0xfffffe0000035000           4K     ro                 GLB NX pte
[    0.017630] 0xfffffe0000035000-0xfffffe0000036000           4K     RW                 GLB NX pte
[    0.017642] 0xfffffe0000036000-0xfffffe0000039000          12K     ro                 GLB NX pte
[    0.017654] 0xfffffe0000039000-0xfffffe000003a000           4K                               pte
[    0.017666] 0xfffffe000003a000-0xfffffe000003b000           4K     RW                 GLB NX pte
[    0.017678] 0xfffffe000003b000-0xfffffe000003c000           4K                               pte
[    0.017689] 0xfffffe000003c000-0xfffffe000003d000           4K     RW                 GLB NX pte
[    0.017701] 0xfffffe000003d000-0xfffffe0000040000          12K                               pte
[    0.017712] 0xfffffe0000040000-0xfffffe0000041000           4K     RW                 GLB NX pte
[    0.017725] 0xfffffe0000041000-0xfffffe0000042000           4K                               pte
[    0.017736] 0xfffffe0000042000-0xfffffe0000043000           4K     RW                 GLB NX pte
[    0.017748] 0xfffffe0000043000-0xfffffe0000044000           4K                               pte
[    0.017759] 0xfffffe0000044000-0xfffffe0000045000           4K     RW                 GLB NX pte
[    0.017772] 0xfffffe0000045000-0xfffffe0000067000         136K                               pte
[    0.017783] 0xfffffe0000067000-0xfffffe0000068000           4K     ro                 GLB NX pte
[    0.017795] 0xfffffe0000068000-0xfffffe0000069000           4K     RW                 GLB NX pte
[    0.017807] 0xfffffe0000069000-0xfffffe000006c000          12K     ro                 GLB NX pte
[    0.017819] 0xfffffe000006c000-0xfffffe000006d000           4K                               pte
[    0.017831] 0xfffffe000006d000-0xfffffe000006e000           4K     RW                 GLB NX pte
[    0.017843] 0xfffffe000006e000-0xfffffe000006f000           4K                               pte
[    0.017854] 0xfffffe000006f000-0xfffffe0000070000           4K     RW                 GLB NX pte
[    0.017866] 0xfffffe0000070000-0xfffffe0000073000          12K                               pte
[    0.017877] 0xfffffe0000073000-0xfffffe0000074000           4K     RW                 GLB NX pte
[    0.017890] 0xfffffe0000074000-0xfffffe0000075000           4K                               pte
[    0.017901] 0xfffffe0000075000-0xfffffe0000076000           4K     RW                 GLB NX pte
[    0.017913] 0xfffffe0000076000-0xfffffe0000077000           4K                               pte
[    0.017924] 0xfffffe0000077000-0xfffffe0000078000           4K     RW                 GLB NX pte
[    0.017937] 0xfffffe0000078000-0xfffffe000009a000         136K                               pte
[    0.017948] 0xfffffe000009a000-0xfffffe000009b000           4K     ro                 GLB NX pte
[    0.017960] 0xfffffe000009b000-0xfffffe000009c000           4K     RW                 GLB NX pte
[    0.017972] 0xfffffe000009c000-0xfffffe000009f000          12K     ro                 GLB NX pte
[    0.017985] 0xfffffe000009f000-0xfffffe00000a0000           4K                               pte
[    0.017996] 0xfffffe00000a0000-0xfffffe00000a1000           4K     RW                 GLB NX pte
[    0.018008] 0xfffffe00000a1000-0xfffffe00000a2000           4K                               pte
[    0.018025] 0xfffffe00000a2000-0xfffffe00000a3000           4K     RW                 GLB NX pte
[    0.018038] 0xfffffe00000a3000-0xfffffe00000a6000          12K                               pte
[    0.018049] 0xfffffe00000a6000-0xfffffe00000a7000           4K     RW                 GLB NX pte
[    0.018061] 0xfffffe00000a7000-0xfffffe00000a8000           4K                               pte
[    0.018072] 0xfffffe00000a8000-0xfffffe00000a9000           4K     RW                 GLB NX pte
[    0.018085] 0xfffffe00000a9000-0xfffffe00000aa000           4K                               pte
[    0.018096] 0xfffffe00000aa000-0xfffffe00000ab000           4K     RW                 GLB NX pte
[    0.018108] 0xfffffe00000ab000-0xfffffe00000cd000         136K                               pte
[    0.018119] 0xfffffe00000cd000-0xfffffe00000ce000           4K     ro                 GLB NX pte
[    0.018132] 0xfffffe00000ce000-0xfffffe00000cf000           4K     RW                 GLB NX pte
[    0.018144] 0xfffffe00000cf000-0xfffffe00000d2000          12K     ro                 GLB NX pte
[    0.018156] 0xfffffe00000d2000-0xfffffe00000d3000           4K                               pte
[    0.018167] 0xfffffe00000d3000-0xfffffe00000d4000           4K     RW                 GLB NX pte
[    0.018179] 0xfffffe00000d4000-0xfffffe00000d5000           4K                               pte
[    0.018191] 0xfffffe00000d5000-0xfffffe00000d6000           4K     RW                 GLB NX pte
[    0.018203] 0xfffffe00000d6000-0xfffffe00000d9000          12K                               pte
[    0.018214] 0xfffffe00000d9000-0xfffffe00000da000           4K     RW                 GLB NX pte
[    0.018226] 0xfffffe00000da000-0xfffffe00000db000           4K                               pte
[    0.018237] 0xfffffe00000db000-0xfffffe00000dc000           4K     RW                 GLB NX pte
[    0.018250] 0xfffffe00000dc000-0xfffffe00000dd000           4K                               pte
[    0.018261] 0xfffffe00000dd000-0xfffffe00000de000           4K     RW                 GLB NX pte
[    0.018273] 0xfffffe00000de000-0xfffffe0000100000         136K                               pte
[    0.018284] 0xfffffe0000100000-0xfffffe0000101000           4K     ro                 GLB NX pte
[    0.018297] 0xfffffe0000101000-0xfffffe0000102000           4K     RW                 GLB NX pte
[    0.018309] 0xfffffe0000102000-0xfffffe0000105000          12K     ro                 GLB NX pte
[    0.018321] 0xfffffe0000105000-0xfffffe0000106000           4K                               pte
[    0.018332] 0xfffffe0000106000-0xfffffe0000107000           4K     RW                 GLB NX pte
[    0.018345] 0xfffffe0000107000-0xfffffe0000108000           4K                               pte
[    0.018356] 0xfffffe0000108000-0xfffffe0000109000           4K     RW                 GLB NX pte
[    0.018368] 0xfffffe0000109000-0xfffffe000010c000          12K                               pte
[    0.018379] 0xfffffe000010c000-0xfffffe000010d000           4K     RW                 GLB NX pte
[    0.018391] 0xfffffe000010d000-0xfffffe000010e000           4K                               pte
[    0.018402] 0xfffffe000010e000-0xfffffe000010f000           4K     RW                 GLB NX pte
[    0.018415] 0xfffffe000010f000-0xfffffe0000110000           4K                               pte
[    0.018426] 0xfffffe0000110000-0xfffffe0000111000           4K     RW                 GLB NX pte
[    0.018438] 0xfffffe0000111000-0xfffffe0000133000         136K                               pte
[    0.018450] 0xfffffe0000133000-0xfffffe0000134000           4K     ro                 GLB NX pte
[    0.018462] 0xfffffe0000134000-0xfffffe0000135000           4K     RW                 GLB NX pte
[    0.018474] 0xfffffe0000135000-0xfffffe0000138000          12K     ro                 GLB NX pte
[    0.018486] 0xfffffe0000138000-0xfffffe0000139000           4K                               pte
[    0.018497] 0xfffffe0000139000-0xfffffe000013a000           4K     RW                 GLB NX pte
[    0.018510] 0xfffffe000013a000-0xfffffe000013b000           4K                               pte
[    0.018521] 0xfffffe000013b000-0xfffffe000013c000           4K     RW                 GLB NX pte
[    0.018533] 0xfffffe000013c000-0xfffffe000013f000          12K                               pte
[    0.018544] 0xfffffe000013f000-0xfffffe0000140000           4K     RW                 GLB NX pte
[    0.018556] 0xfffffe0000140000-0xfffffe0000141000           4K                               pte
[    0.018568] 0xfffffe0000141000-0xfffffe0000142000           4K     RW                 GLB NX pte
[    0.018580] 0xfffffe0000142000-0xfffffe0000143000           4K                               pte
[    0.018591] 0xfffffe0000143000-0xfffffe0000144000           4K     RW                 GLB NX pte
[    0.018603] 0xfffffe0000144000-0xfffffe0000166000         136K                               pte
[    0.018615] 0xfffffe0000166000-0xfffffe0000167000           4K     ro                 GLB NX pte
[    0.018627] 0xfffffe0000167000-0xfffffe0000168000           4K     RW                 GLB NX pte
[    0.018639] 0xfffffe0000168000-0xfffffe000016b000          12K     ro                 GLB NX pte
[    0.018651] 0xfffffe000016b000-0xfffffe000016c000           4K                               pte
[    0.018663] 0xfffffe000016c000-0xfffffe000016d000           4K     RW                 GLB NX pte
[    0.018675] 0xfffffe000016d000-0xfffffe000016e000           4K                               pte
[    0.018686] 0xfffffe000016e000-0xfffffe000016f000           4K     RW                 GLB NX pte
[    0.018698] 0xfffffe000016f000-0xfffffe0000172000          12K                               pte
[    0.018709] 0xfffffe0000172000-0xfffffe0000173000           4K     RW                 GLB NX pte
[    0.018722] 0xfffffe0000173000-0xfffffe0000174000           4K                               pte
[    0.018733] 0xfffffe0000174000-0xfffffe0000175000           4K     RW                 GLB NX pte
[    0.018745] 0xfffffe0000175000-0xfffffe0000176000           4K                               pte
[    0.018756] 0xfffffe0000176000-0xfffffe0000177000           4K     RW                 GLB NX pte
[    0.018769] 0xfffffe0000177000-0xfffffe0000199000         136K                               pte
[    0.018780] 0xfffffe0000199000-0xfffffe000019a000           4K     ro                 GLB NX pte
[    0.018792] 0xfffffe000019a000-0xfffffe000019b000           4K     RW                 GLB NX pte
[    0.018804] 0xfffffe000019b000-0xfffffe000019e000          12K     ro                 GLB NX pte
[    0.018816] 0xfffffe000019e000-0xfffffe000019f000           4K                               pte
[    0.018828] 0xfffffe000019f000-0xfffffe00001a0000           4K     RW                 GLB NX pte
[    0.018840] 0xfffffe00001a0000-0xfffffe00001a1000           4K                               pte
[    0.018851] 0xfffffe00001a1000-0xfffffe00001a2000           4K     RW                 GLB NX pte
[    0.018863] 0xfffffe00001a2000-0xfffffe00001a5000          12K                               pte
[    0.018874] 0xfffffe00001a5000-0xfffffe00001a6000           4K     RW                 GLB NX pte
[    0.018887] 0xfffffe00001a6000-0xfffffe00001a7000           4K                               pte
[    0.018898] 0xfffffe00001a7000-0xfffffe00001a8000           4K     RW                 GLB NX pte
[    0.018910] 0xfffffe00001a8000-0xfffffe00001a9000           4K                               pte
[    0.018921] 0xfffffe00001a9000-0xfffffe00001aa000           4K     RW                 GLB NX pte
[    0.018934] 0xfffffe00001aa000-0xfffffe00001cc000         136K                               pte
[    0.018945] 0xfffffe00001cc000-0xfffffe00001cd000           4K     ro                 GLB NX pte
[    0.018957] 0xfffffe00001cd000-0xfffffe00001ce000           4K     RW                 GLB NX pte
[    0.018969] 0xfffffe00001ce000-0xfffffe00001d1000          12K     ro                 GLB NX pte
[    0.018982] 0xfffffe00001d1000-0xfffffe00001d2000           4K                               pte
[    0.018993] 0xfffffe00001d2000-0xfffffe00001d3000           4K     RW                 GLB NX pte
[    0.019005] 0xfffffe00001d3000-0xfffffe00001d4000           4K                               pte
[    0.019016] 0xfffffe00001d4000-0xfffffe00001d5000           4K     RW                 GLB NX pte
[    0.019025] 0xfffffe00001d5000-0xfffffe00001d8000          12K                               pte
[    0.019037] 0xfffffe00001d8000-0xfffffe00001d9000           4K     RW                 GLB NX pte
[    0.019049] 0xfffffe00001d9000-0xfffffe00001da000           4K                               pte
[    0.019060] 0xfffffe00001da000-0xfffffe00001db000           4K     RW                 GLB NX pte
[    0.019072] 0xfffffe00001db000-0xfffffe00001dc000           4K                               pte
[    0.019083] 0xfffffe00001dc000-0xfffffe00001dd000           4K     RW                 GLB NX pte
[    0.019096] 0xfffffe00001dd000-0xfffffe00001ff000         136K                               pte
[    0.019107] 0xfffffe00001ff000-0xfffffe0000200000           4K     ro                 GLB NX pte
[    0.019119] 0xfffffe0000200000-0xfffffe0000201000           4K     RW                 GLB NX pte
[    0.019132] 0xfffffe0000201000-0xfffffe0000204000          12K     ro                 GLB NX pte
[    0.019144] 0xfffffe0000204000-0xfffffe0000205000           4K                               pte
[    0.019155] 0xfffffe0000205000-0xfffffe0000206000           4K     RW                 GLB NX pte
[    0.019167] 0xfffffe0000206000-0xfffffe0000207000           4K                               pte
[    0.019178] 0xfffffe0000207000-0xfffffe0000208000           4K     RW                 GLB NX pte
[    0.019191] 0xfffffe0000208000-0xfffffe000020b000          12K                               pte
[    0.019202] 0xfffffe000020b000-0xfffffe000020c000           4K     RW                 GLB NX pte
[    0.019214] 0xfffffe000020c000-0xfffffe000020d000           4K                               pte
[    0.019225] 0xfffffe000020d000-0xfffffe000020e000           4K     RW                 GLB NX pte
[    0.019238] 0xfffffe000020e000-0xfffffe000020f000           4K                               pte
[    0.019249] 0xfffffe000020f000-0xfffffe0000210000           4K     RW                 GLB NX pte
[    0.019261] 0xfffffe0000210000-0xfffffe0000232000         136K                               pte
[    0.019272] 0xfffffe0000232000-0xfffffe0000233000           4K     ro                 GLB NX pte
[    0.019285] 0xfffffe0000233000-0xfffffe0000234000           4K     RW                 GLB NX pte
[    0.019297] 0xfffffe0000234000-0xfffffe0000237000          12K     ro                 GLB NX pte
[    0.019309] 0xfffffe0000237000-0xfffffe0000238000           4K                               pte
[    0.019320] 0xfffffe0000238000-0xfffffe0000239000           4K     RW                 GLB NX pte
[    0.019332] 0xfffffe0000239000-0xfffffe000023a000           4K                               pte
[    0.019344] 0xfffffe000023a000-0xfffffe000023b000           4K     RW                 GLB NX pte
[    0.019356] 0xfffffe000023b000-0xfffffe000023e000          12K                               pte
[    0.019367] 0xfffffe000023e000-0xfffffe000023f000           4K     RW                 GLB NX pte
[    0.019379] 0xfffffe000023f000-0xfffffe0000240000           4K                               pte
[    0.019390] 0xfffffe0000240000-0xfffffe0000241000           4K     RW                 GLB NX pte
[    0.019403] 0xfffffe0000241000-0xfffffe0000242000           4K                               pte
[    0.019414] 0xfffffe0000242000-0xfffffe0000243000           4K     RW                 GLB NX pte
[    0.019426] 0xfffffe0000243000-0xfffffe0000265000         136K                               pte
[    0.019437] 0xfffffe0000265000-0xfffffe0000266000           4K     ro                 GLB NX pte
[    0.019450] 0xfffffe0000266000-0xfffffe0000267000           4K     RW                 GLB NX pte
[    0.019462] 0xfffffe0000267000-0xfffffe000026a000          12K     ro                 GLB NX pte
[    0.019474] 0xfffffe000026a000-0xfffffe000026b000           4K                               pte
[    0.019485] 0xfffffe000026b000-0xfffffe000026c000           4K     RW                 GLB NX pte
[    0.019498] 0xfffffe000026c000-0xfffffe000026d000           4K                               pte
[    0.019509] 0xfffffe000026d000-0xfffffe000026e000           4K     RW                 GLB NX pte
[    0.019521] 0xfffffe000026e000-0xfffffe0000271000          12K                               pte
[    0.019532] 0xfffffe0000271000-0xfffffe0000272000           4K     RW                 GLB NX pte
[    0.019544] 0xfffffe0000272000-0xfffffe0000273000           4K                               pte
[    0.019556] 0xfffffe0000273000-0xfffffe0000274000           4K     RW                 GLB NX pte
[    0.019568] 0xfffffe0000274000-0xfffffe0000275000           4K                               pte
[    0.019579] 0xfffffe0000275000-0xfffffe0000276000           4K     RW                 GLB NX pte
[    0.019591] 0xfffffe0000276000-0xfffffe0000298000         136K                               pte
[    0.019603] 0xfffffe0000298000-0xfffffe0000299000           4K     ro                 GLB NX pte
[    0.019615] 0xfffffe0000299000-0xfffffe000029a000           4K     RW                 GLB NX pte
[    0.019627] 0xfffffe000029a000-0xfffffe000029d000          12K     ro                 GLB NX pte
[    0.019639] 0xfffffe000029d000-0xfffffe000029e000           4K                               pte
[    0.019650] 0xfffffe000029e000-0xfffffe000029f000           4K     RW                 GLB NX pte
[    0.019663] 0xfffffe000029f000-0xfffffe00002a0000           4K                               pte
[    0.019674] 0xfffffe00002a0000-0xfffffe00002a1000           4K     RW                 GLB NX pte
[    0.019686] 0xfffffe00002a1000-0xfffffe00002a4000          12K                               pte
[    0.019697] 0xfffffe00002a4000-0xfffffe00002a5000           4K     RW                 GLB NX pte
[    0.019709] 0xfffffe00002a5000-0xfffffe00002a6000           4K                               pte
[    0.019721] 0xfffffe00002a6000-0xfffffe00002a7000           4K     RW                 GLB NX pte
[    0.019733] 0xfffffe00002a7000-0xfffffe00002a8000           4K                               pte
[    0.019744] 0xfffffe00002a8000-0xfffffe00002a9000           4K     RW                 GLB NX pte
[    0.019756] 0xfffffe00002a9000-0xfffffe00002cb000         136K                               pte
[    0.019768] 0xfffffe00002cb000-0xfffffe00002cc000           4K     ro                 GLB NX pte
[    0.019780] 0xfffffe00002cc000-0xfffffe00002cd000           4K     RW                 GLB NX pte
[    0.019792] 0xfffffe00002cd000-0xfffffe00002d0000          12K     ro                 GLB NX pte
[    0.019804] 0xfffffe00002d0000-0xfffffe00002d1000           4K                               pte
[    0.019815] 0xfffffe00002d1000-0xfffffe00002d2000           4K     RW                 GLB NX pte
[    0.019828] 0xfffffe00002d2000-0xfffffe00002d3000           4K                               pte
[    0.019839] 0xfffffe00002d3000-0xfffffe00002d4000           4K     RW                 GLB NX pte
[    0.019851] 0xfffffe00002d4000-0xfffffe00002d7000          12K                               pte
[    0.019862] 0xfffffe00002d7000-0xfffffe00002d8000           4K     RW                 GLB NX pte
[    0.019875] 0xfffffe00002d8000-0xfffffe00002d9000           4K                               pte
[    0.019886] 0xfffffe00002d9000-0xfffffe00002da000           4K     RW                 GLB NX pte
[    0.019898] 0xfffffe00002da000-0xfffffe00002db000           4K                               pte
[    0.019909] 0xfffffe00002db000-0xfffffe00002dc000           4K     RW                 GLB NX pte
[    0.019922] 0xfffffe00002dc000-0xfffffe00002fe000         136K                               pte
[    0.019933] 0xfffffe00002fe000-0xfffffe00002ff000           4K     ro                 GLB NX pte
[    0.019945] 0xfffffe00002ff000-0xfffffe0000300000           4K     RW                 GLB NX pte
[    0.019957] 0xfffffe0000300000-0xfffffe0000303000          12K     ro                 GLB NX pte
[    0.019969] 0xfffffe0000303000-0xfffffe0000304000           4K                               pte
[    0.019981] 0xfffffe0000304000-0xfffffe0000305000           4K     RW                 GLB NX pte
[    0.019993] 0xfffffe0000305000-0xfffffe0000306000           4K                               pte
[    0.020004] 0xfffffe0000306000-0xfffffe0000307000           4K     RW                 GLB NX pte
[    0.020025] 0xfffffe0000307000-0xfffffe000030a000          12K                               pte
[    0.020037] 0xfffffe000030a000-0xfffffe000030b000           4K     RW                 GLB NX pte
[    0.020049] 0xfffffe000030b000-0xfffffe000030c000           4K                               pte
[    0.020060] 0xfffffe000030c000-0xfffffe000030d000           4K     RW                 GLB NX pte
[    0.020072] 0xfffffe000030d000-0xfffffe000030e000           4K                               pte
[    0.020083] 0xfffffe000030e000-0xfffffe000030f000           4K     RW                 GLB NX pte
[    0.020096] 0xfffffe000030f000-0xfffffe0000331000         136K                               pte
[    0.020107] 0xfffffe0000331000-0xfffffe0000332000           4K     ro                 GLB NX pte
[    0.020119] 0xfffffe0000332000-0xfffffe0000333000           4K     RW                 GLB NX pte
[    0.020132] 0xfffffe0000333000-0xfffffe0000336000          12K     ro                 GLB NX pte
[    0.020144] 0xfffffe0000336000-0xfffffe0000337000           4K                               pte
[    0.020155] 0xfffffe0000337000-0xfffffe0000338000           4K     RW                 GLB NX pte
[    0.020167] 0xfffffe0000338000-0xfffffe0000339000           4K                               pte
[    0.020178] 0xfffffe0000339000-0xfffffe000033a000           4K     RW                 GLB NX pte
[    0.020191] 0xfffffe000033a000-0xfffffe000033d000          12K                               pte
[    0.020202] 0xfffffe000033d000-0xfffffe000033e000           4K     RW                 GLB NX pte
[    0.020214] 0xfffffe000033e000-0xfffffe000033f000           4K                               pte
[    0.020225] 0xfffffe000033f000-0xfffffe0000340000           4K     RW                 GLB NX pte
[    0.020237] 0xfffffe0000340000-0xfffffe0000341000           4K                               pte
[    0.020249] 0xfffffe0000341000-0xfffffe0000342000           4K     RW                 GLB NX pte
[    0.020261] 0xfffffe0000342000-0xfffffe0000364000         136K                               pte
[    0.020272] 0xfffffe0000364000-0xfffffe0000365000           4K     ro                 GLB NX pte
[    0.020284] 0xfffffe0000365000-0xfffffe0000366000           4K     RW                 GLB NX pte
[    0.020297] 0xfffffe0000366000-0xfffffe0000369000          12K     ro                 GLB NX pte
[    0.020309] 0xfffffe0000369000-0xfffffe000036a000           4K                               pte
[    0.020320] 0xfffffe000036a000-0xfffffe000036b000           4K     RW                 GLB NX pte
[    0.020332] 0xfffffe000036b000-0xfffffe000036c000           4K                               pte
[    0.020344] 0xfffffe000036c000-0xfffffe000036d000           4K     RW                 GLB NX pte
[    0.020360] 0xfffffe000036d000-0xfffffe0000370000          12K                               pte
[    0.020371] 0xfffffe0000370000-0xfffffe0000371000           4K     RW                 GLB NX pte
[    0.020384] 0xfffffe0000371000-0xfffffe0000372000           4K                               pte
[    0.020395] 0xfffffe0000372000-0xfffffe0000373000           4K     RW                 GLB NX pte
[    0.020407] 0xfffffe0000373000-0xfffffe0000374000           4K                               pte
[    0.020418] 0xfffffe0000374000-0xfffffe0000375000           4K     RW                 GLB NX pte
[    0.020431] 0xfffffe0000375000-0xfffffe0000397000         136K                               pte
[    0.020442] 0xfffffe0000397000-0xfffffe0000398000           4K     ro                 GLB NX pte
[    0.020454] 0xfffffe0000398000-0xfffffe0000399000           4K     RW                 GLB NX pte
[    0.020467] 0xfffffe0000399000-0xfffffe000039c000          12K     ro                 GLB NX pte
[    0.020479] 0xfffffe000039c000-0xfffffe000039d000           4K                               pte
[    0.020490] 0xfffffe000039d000-0xfffffe000039e000           4K     RW                 GLB NX pte
[    0.020503] 0xfffffe000039e000-0xfffffe000039f000           4K                               pte
[    0.020514] 0xfffffe000039f000-0xfffffe00003a0000           4K     RW                 GLB NX pte
[    0.020526] 0xfffffe00003a0000-0xfffffe00003a3000          12K                               pte
[    0.020537] 0xfffffe00003a3000-0xfffffe00003a4000           4K     RW                 GLB NX pte
[    0.020550] 0xfffffe00003a4000-0xfffffe00003a5000           4K                               pte
[    0.020561] 0xfffffe00003a5000-0xfffffe00003a6000           4K     RW                 GLB NX pte
[    0.020573] 0xfffffe00003a6000-0xfffffe00003a7000           4K                               pte
[    0.020585] 0xfffffe00003a7000-0xfffffe00003a8000           4K     RW                 GLB NX pte
[    0.020597] 0xfffffe00003a8000-0xfffffe00003ca000         136K                               pte
[    0.020608] 0xfffffe00003ca000-0xfffffe00003cb000           4K     ro                 GLB NX pte
[    0.020621] 0xfffffe00003cb000-0xfffffe00003cc000           4K     RW                 GLB NX pte
[    0.020633] 0xfffffe00003cc000-0xfffffe00003cf000          12K     ro                 GLB NX pte
[    0.020645] 0xfffffe00003cf000-0xfffffe00003d0000           4K                               pte
[    0.020656] 0xfffffe00003d0000-0xfffffe00003d1000           4K     RW                 GLB NX pte
[    0.020669] 0xfffffe00003d1000-0xfffffe00003d2000           4K                               pte
[    0.020680] 0xfffffe00003d2000-0xfffffe00003d3000           4K     RW                 GLB NX pte
[    0.020692] 0xfffffe00003d3000-0xfffffe00003d6000          12K                               pte
[    0.020704] 0xfffffe00003d6000-0xfffffe00003d7000           4K     RW                 GLB NX pte
[    0.020716] 0xfffffe00003d7000-0xfffffe00003d8000           4K                               pte
[    0.020727] 0xfffffe00003d8000-0xfffffe00003d9000           4K     RW                 GLB NX pte
[    0.020739] 0xfffffe00003d9000-0xfffffe00003da000           4K                               pte
[    0.020751] 0xfffffe00003da000-0xfffffe00003db000           4K     RW                 GLB NX pte
[    0.020763] 0xfffffe00003db000-0xfffffe00003fd000         136K                               pte
[    0.020774] 0xfffffe00003fd000-0xfffffe00003fe000           4K     ro                 GLB NX pte
[    0.020787] 0xfffffe00003fe000-0xfffffe00003ff000           4K     RW                 GLB NX pte
[    0.020799] 0xfffffe00003ff000-0xfffffe0000402000          12K     ro                 GLB NX pte
[    0.020811] 0xfffffe0000402000-0xfffffe0000403000           4K                               pte
[    0.020823] 0xfffffe0000403000-0xfffffe0000404000           4K     RW                 GLB NX pte
[    0.020835] 0xfffffe0000404000-0xfffffe0000405000           4K                               pte
[    0.020846] 0xfffffe0000405000-0xfffffe0000406000           4K     RW                 GLB NX pte
[    0.020858] 0xfffffe0000406000-0xfffffe0000409000          12K                               pte
[    0.020870] 0xfffffe0000409000-0xfffffe000040a000           4K     RW                 GLB NX pte
[    0.020882] 0xfffffe000040a000-0xfffffe000040b000           4K                               pte
[    0.020893] 0xfffffe000040b000-0xfffffe000040c000           4K     RW                 GLB NX pte
[    0.020906] 0xfffffe000040c000-0xfffffe000040d000           4K                               pte
[    0.020917] 0xfffffe000040d000-0xfffffe000040e000           4K     RW                 GLB NX pte
[    0.020929] 0xfffffe000040e000-0xfffffe0000430000         136K                               pte
[    0.020941] 0xfffffe0000430000-0xfffffe0000431000           4K     ro                 GLB NX pte
[    0.020953] 0xfffffe0000431000-0xfffffe0000432000           4K     RW                 GLB NX pte
[    0.021025] 0xfffffe0000432000-0xfffffe0000435000          12K     ro                 GLB NX pte
[    0.021038] 0xfffffe0000435000-0xfffffe0000436000           4K                               pte
[    0.021049] 0xfffffe0000436000-0xfffffe0000437000           4K     RW                 GLB NX pte
[    0.021062] 0xfffffe0000437000-0xfffffe0000438000           4K                               pte
[    0.021073] 0xfffffe0000438000-0xfffffe0000439000           4K     RW                 GLB NX pte
[    0.021086] 0xfffffe0000439000-0xfffffe000043c000          12K                               pte
[    0.021097] 0xfffffe000043c000-0xfffffe000043d000           4K     RW                 GLB NX pte
[    0.021110] 0xfffffe000043d000-0xfffffe000043e000           4K                               pte
[    0.021121] 0xfffffe000043e000-0xfffffe000043f000           4K     RW                 GLB NX pte
[    0.021134] 0xfffffe000043f000-0xfffffe0000440000           4K                               pte
[    0.021145] 0xfffffe0000440000-0xfffffe0000441000           4K     RW                 GLB NX pte
[    0.021158] 0xfffffe0000441000-0xfffffe0000463000         136K                               pte
[    0.021170] 0xfffffe0000463000-0xfffffe0000464000           4K     ro                 GLB NX pte
[    0.021182] 0xfffffe0000464000-0xfffffe0000465000           4K     RW                 GLB NX pte
[    0.021195] 0xfffffe0000465000-0xfffffe0000468000          12K     ro                 GLB NX pte
[    0.021207] 0xfffffe0000468000-0xfffffe0000469000           4K                               pte
[    0.021219] 0xfffffe0000469000-0xfffffe000046a000           4K     RW                 GLB NX pte
[    0.021231] 0xfffffe000046a000-0xfffffe000046b000           4K                               pte
[    0.021243] 0xfffffe000046b000-0xfffffe000046c000           4K     RW                 GLB NX pte
[    0.021255] 0xfffffe000046c000-0xfffffe000046f000          12K                               pte
[    0.021266] 0xfffffe000046f000-0xfffffe0000470000           4K     RW                 GLB NX pte
[    0.021279] 0xfffffe0000470000-0xfffffe0000471000           4K                               pte
[    0.021290] 0xfffffe0000471000-0xfffffe0000472000           4K     RW                 GLB NX pte
[    0.021303] 0xfffffe0000472000-0xfffffe0000473000           4K                               pte
[    0.021314] 0xfffffe0000473000-0xfffffe0000474000           4K     RW                 GLB NX pte
[    0.021327] 0xfffffe0000474000-0xfffffe0000496000         136K                               pte
[    0.021339] 0xfffffe0000496000-0xfffffe0000497000           4K     ro                 GLB NX pte
[    0.021351] 0xfffffe0000497000-0xfffffe0000498000           4K     RW                 GLB NX pte
[    0.021364] 0xfffffe0000498000-0xfffffe000049b000          12K     ro                 GLB NX pte
[    0.021376] 0xfffffe000049b000-0xfffffe000049c000           4K                               pte
[    0.021388] 0xfffffe000049c000-0xfffffe000049d000           4K     RW                 GLB NX pte
[    0.021400] 0xfffffe000049d000-0xfffffe000049e000           4K                               pte
[    0.021412] 0xfffffe000049e000-0xfffffe000049f000           4K     RW                 GLB NX pte
[    0.021424] 0xfffffe000049f000-0xfffffe00004a2000          12K                               pte
[    0.021436] 0xfffffe00004a2000-0xfffffe00004a3000           4K     RW                 GLB NX pte
[    0.022025] 0xfffffe00004a3000-0xfffffe00004a4000           4K                               pte
[    0.022037] 0xfffffe00004a4000-0xfffffe00004a5000           4K     RW                 GLB NX pte
[    0.022049] 0xfffffe00004a5000-0xfffffe00004a6000           4K                               pte
[    0.022061] 0xfffffe00004a6000-0xfffffe00004a7000           4K     RW                 GLB NX pte
[    0.022074] 0xfffffe00004a7000-0xfffffe00004c9000         136K                               pte
[    0.022085] 0xfffffe00004c9000-0xfffffe00004ca000           4K     ro                 GLB NX pte
[    0.022098] 0xfffffe00004ca000-0xfffffe00004cb000           4K     RW                 GLB NX pte
[    0.022110] 0xfffffe00004cb000-0xfffffe00004ce000          12K     ro                 GLB NX pte
[    0.022123] 0xfffffe00004ce000-0xfffffe00004cf000           4K                               pte
[    0.022134] 0xfffffe00004cf000-0xfffffe00004d0000           4K     RW                 GLB NX pte
[    0.022147] 0xfffffe00004d0000-0xfffffe00004d1000           4K                               pte
[    0.022158] 0xfffffe00004d1000-0xfffffe00004d2000           4K     RW                 GLB NX pte
[    0.022171] 0xfffffe00004d2000-0xfffffe00004d5000          12K                               pte
[    0.022186] 0xfffffe00004d5000-0xfffffe00004d6000           4K     RW                 GLB NX pte
[    0.022200] 0xfffffe00004d6000-0xfffffe00004d7000           4K                               pte
[    0.022212] 0xfffffe00004d7000-0xfffffe00004d8000           4K     RW                 GLB NX pte
[    0.022225] 0xfffffe00004d8000-0xfffffe00004d9000           4K                               pte
[    0.022237] 0xfffffe00004d9000-0xfffffe00004da000           4K     RW                 GLB NX pte
[    0.022250] 0xfffffe00004da000-0xfffffe00004fc000         136K                               pte
[    0.022262] 0xfffffe00004fc000-0xfffffe00004fd000           4K     ro                 GLB NX pte
[    0.022275] 0xfffffe00004fd000-0xfffffe00004fe000           4K     RW                 GLB NX pte
[    0.022288] 0xfffffe00004fe000-0xfffffe0000501000          12K     ro                 GLB NX pte
[    0.022301] 0xfffffe0000501000-0xfffffe0000502000           4K                               pte
[    0.022313] 0xfffffe0000502000-0xfffffe0000503000           4K     RW                 GLB NX pte
[    0.022325] 0xfffffe0000503000-0xfffffe0000504000           4K                               pte
[    0.022337] 0xfffffe0000504000-0xfffffe0000505000           4K     RW                 GLB NX pte
[    0.022350] 0xfffffe0000505000-0xfffffe0000508000          12K                               pte
[    0.022362] 0xfffffe0000508000-0xfffffe0000509000           4K     RW                 GLB NX pte
[    0.022375] 0xfffffe0000509000-0xfffffe000050a000           4K                               pte
[    0.022387] 0xfffffe000050a000-0xfffffe000050b000           4K     RW                 GLB NX pte
[    0.022400] 0xfffffe000050b000-0xfffffe000050c000           4K                               pte
[    0.022412] 0xfffffe000050c000-0xfffffe000050d000           4K     RW                 GLB NX pte
[    0.022425] 0xfffffe000050d000-0xfffffe000052f000         136K                               pte
[    0.022437] 0xfffffe000052f000-0xfffffe0000530000           4K     ro                 GLB NX pte
[    0.022450] 0xfffffe0000530000-0xfffffe0000531000           4K     RW                 GLB NX pte
[    0.022463] 0xfffffe0000531000-0xfffffe0000534000          12K     ro                 GLB NX pte
[    0.022476] 0xfffffe0000534000-0xfffffe0000535000           4K                               pte
[    0.022488] 0xfffffe0000535000-0xfffffe0000536000           4K     RW                 GLB NX pte
[    0.022501] 0xfffffe0000536000-0xfffffe0000537000           4K                               pte
[    0.022513] 0xfffffe0000537000-0xfffffe0000538000           4K     RW                 GLB NX pte
[    0.022526] 0xfffffe0000538000-0xfffffe000053b000          12K                               pte
[    0.022538] 0xfffffe000053b000-0xfffffe000053c000           4K     RW                 GLB NX pte
[    0.022551] 0xfffffe000053c000-0xfffffe000053d000           4K                               pte
[    0.022563] 0xfffffe000053d000-0xfffffe000053e000           4K     RW                 GLB NX pte
[    0.022576] 0xfffffe000053e000-0xfffffe000053f000           4K                               pte
[    0.022587] 0xfffffe000053f000-0xfffffe0000540000           4K     RW                 GLB NX pte
[    0.022601] 0xfffffe0000540000-0xfffffe0000562000         136K                               pte
[    0.022613] 0xfffffe0000562000-0xfffffe0000563000           4K     ro                 GLB NX pte
[    0.022626] 0xfffffe0000563000-0xfffffe0000564000           4K     RW                 GLB NX pte
[    0.022639] 0xfffffe0000564000-0xfffffe0000567000          12K     ro                 GLB NX pte
[    0.022652] 0xfffffe0000567000-0xfffffe0000568000           4K                               pte
[    0.022663] 0xfffffe0000568000-0xfffffe0000569000           4K     RW                 GLB NX pte
[    0.022676] 0xfffffe0000569000-0xfffffe000056a000           4K                               pte
[    0.022688] 0xfffffe000056a000-0xfffffe000056b000           4K     RW                 GLB NX pte
[    0.022701] 0xfffffe000056b000-0xfffffe000056e000          12K                               pte
[    0.022713] 0xfffffe000056e000-0xfffffe000056f000           4K     RW                 GLB NX pte
[    0.022726] 0xfffffe000056f000-0xfffffe0000570000           4K                               pte
[    0.022738] 0xfffffe0000570000-0xfffffe0000571000           4K     RW                 GLB NX pte
[    0.022751] 0xfffffe0000571000-0xfffffe0000572000           4K                               pte
[    0.022763] 0xfffffe0000572000-0xfffffe0000573000           4K     RW                 GLB NX pte
[    0.022776] 0xfffffe0000573000-0xfffffe0000595000         136K                               pte
[    0.022788] 0xfffffe0000595000-0xfffffe0000596000           4K     ro                 GLB NX pte
[    0.022801] 0xfffffe0000596000-0xfffffe0000597000           4K     RW                 GLB NX pte
[    0.022814] 0xfffffe0000597000-0xfffffe000059a000          12K     ro                 GLB NX pte
[    0.022827] 0xfffffe000059a000-0xfffffe000059b000           4K                               pte
[    0.022839] 0xfffffe000059b000-0xfffffe000059c000           4K     RW                 GLB NX pte
[    0.022852] 0xfffffe000059c000-0xfffffe000059d000           4K                               pte
[    0.022864] 0xfffffe000059d000-0xfffffe000059e000           4K     RW                 GLB NX pte
[    0.022877] 0xfffffe000059e000-0xfffffe00005a1000          12K                               pte
[    0.022889] 0xfffffe00005a1000-0xfffffe00005a2000           4K     RW                 GLB NX pte
[    0.022902] 0xfffffe00005a2000-0xfffffe00005a3000           4K                               pte
[    0.022914] 0xfffffe00005a3000-0xfffffe00005a4000           4K     RW                 GLB NX pte
[    0.022927] 0xfffffe00005a4000-0xfffffe00005a5000           4K                               pte
[    0.022938] 0xfffffe00005a5000-0xfffffe00005a6000           4K     RW                 GLB NX pte
[    0.022952] 0xfffffe00005a6000-0xfffffe00005c8000         136K                               pte
[    0.022964] 0xfffffe00005c8000-0xfffffe00005c9000           4K     ro                 GLB NX pte
[    0.022977] 0xfffffe00005c9000-0xfffffe00005ca000           4K     RW                 GLB NX pte
[    0.022990] 0xfffffe00005ca000-0xfffffe00005cd000          12K     ro                 GLB NX pte
[    0.023003] 0xfffffe00005cd000-0xfffffe00005ce000           4K                               pte
[    0.023014] 0xfffffe00005ce000-0xfffffe00005cf000           4K     RW                 GLB NX pte
[    0.023025] 0xfffffe00005cf000-0xfffffe00005d0000           4K                               pte
[    0.023037] 0xfffffe00005d0000-0xfffffe00005d1000           4K     RW                 GLB NX pte
[    0.023050] 0xfffffe00005d1000-0xfffffe00005d4000          12K                               pte
[    0.023062] 0xfffffe00005d4000-0xfffffe00005d5000           4K     RW                 GLB NX pte
[    0.023075] 0xfffffe00005d5000-0xfffffe00005d6000           4K                               pte
[    0.023087] 0xfffffe00005d6000-0xfffffe00005d7000           4K     RW                 GLB NX pte
[    0.023100] 0xfffffe00005d7000-0xfffffe00005d8000           4K                               pte
[    0.023112] 0xfffffe00005d8000-0xfffffe00005d9000           4K     RW                 GLB NX pte
[    0.023125] 0xfffffe00005d9000-0xfffffe00005fb000         136K                               pte
[    0.023137] 0xfffffe00005fb000-0xfffffe00005fc000           4K     ro                 GLB NX pte
[    0.023150] 0xfffffe00005fc000-0xfffffe00005fd000           4K     RW                 GLB NX pte
[    0.023163] 0xfffffe00005fd000-0xfffffe0000600000          12K     ro                 GLB NX pte
[    0.023176] 0xfffffe0000600000-0xfffffe0000601000           4K                               pte
[    0.023188] 0xfffffe0000601000-0xfffffe0000602000           4K     RW                 GLB NX pte
[    0.023201] 0xfffffe0000602000-0xfffffe0000603000           4K                               pte
[    0.023213] 0xfffffe0000603000-0xfffffe0000604000           4K     RW                 GLB NX pte
[    0.023226] 0xfffffe0000604000-0xfffffe0000607000          12K                               pte
[    0.023238] 0xfffffe0000607000-0xfffffe0000608000           4K     RW                 GLB NX pte
[    0.023251] 0xfffffe0000608000-0xfffffe0000609000           4K                               pte
[    0.023263] 0xfffffe0000609000-0xfffffe000060a000           4K     RW                 GLB NX pte
[    0.023276] 0xfffffe000060a000-0xfffffe000060b000           4K                               pte
[    0.023288] 0xfffffe000060b000-0xfffffe000060c000           4K     RW                 GLB NX pte
[    0.023301] 0xfffffe000060c000-0xfffffe000062e000         136K                               pte
[    0.023313] 0xfffffe000062e000-0xfffffe000062f000           4K     ro                 GLB NX pte
[    0.023326] 0xfffffe000062f000-0xfffffe0000630000           4K     RW                 GLB NX pte
[    0.023339] 0xfffffe0000630000-0xfffffe0000633000          12K     ro                 GLB NX pte
[    0.023352] 0xfffffe0000633000-0xfffffe0000634000           4K                               pte
[    0.023364] 0xfffffe0000634000-0xfffffe0000635000           4K     RW                 GLB NX pte
[    0.023377] 0xfffffe0000635000-0xfffffe0000636000           4K                               pte
[    0.023388] 0xfffffe0000636000-0xfffffe0000637000           4K     RW                 GLB NX pte
[    0.023401] 0xfffffe0000637000-0xfffffe000063a000          12K                               pte
[    0.023413] 0xfffffe000063a000-0xfffffe000063b000           4K     RW                 GLB NX pte
[    0.023426] 0xfffffe000063b000-0xfffffe000063c000           4K                               pte
[    0.023438] 0xfffffe000063c000-0xfffffe000063d000           4K     RW                 GLB NX pte
[    0.023451] 0xfffffe000063d000-0xfffffe000063e000           4K                               pte
[    0.023463] 0xfffffe000063e000-0xfffffe000063f000           4K     RW                 GLB NX pte
[    0.023479] 0xfffffe000063f000-0xfffffe0000800000        1796K                               pte
[    0.023493] 0xfffffe0000800000-0xfffffe0040000000        1016M                               pmd
[    0.023507] 0xfffffe0040000000-0xfffffe8000000000         511G                               pud
[    0.023519] 0xfffffe8000000000-0xffffff0000000000         512G                               pgd
[    0.023531] ---[ ESPfix Area ]---
[    0.023539] 0xffffff0000000000-0xffffff7500000000         468G                               pud
[    0.023551] 0xffffff7500000000-0xffffff7500002000           8K                               pte
[    0.023563] 0xffffff7500002000-0xffffff7500003000           4K     ro                 GLB NX pte
[    0.023576] 0xffffff7500003000-0xffffff7500012000          60K                               pte
[    0.023588] 0xffffff7500012000-0xffffff7500013000           4K     ro                 GLB NX pte
[    0.023601] 0xffffff7500013000-0xffffff7500022000          60K                               pte
[    0.023613] 0xffffff7500022000-0xffffff7500023000           4K     ro                 GLB NX pte
[    0.023626] 0xffffff7500023000-0xffffff7500032000          60K                               pte
[    0.023638] 0xffffff7500032000-0xffffff7500033000           4K     ro                 GLB NX pte
[    0.023651] 0xffffff7500033000-0xffffff7500042000          60K                               pte
[    0.023663] 0xffffff7500042000-0xffffff7500043000           4K     ro                 GLB NX pte
[    0.023676] 0xffffff7500043000-0xffffff7500052000          60K                               pte
[    0.023688] 0xffffff7500052000-0xffffff7500053000           4K     ro                 GLB NX pte
[    0.023701] 0xffffff7500053000-0xffffff7500062000          60K                               pte
[    0.023713] 0xffffff7500062000-0xffffff7500063000           4K     ro                 GLB NX pte
[    0.023726] 0xffffff7500063000-0xffffff7500072000          60K                               pte
[    0.030848] ... 131059 entries skipped ... 
[    0.030854] ---[ EFI Runtime Services ]---
[    0.030860] 0xffffffef00000000-0xfffffffec0000000          63G                               pud
[    0.030873] 0xfffffffec0000000-0xfffffffeee000000         736M                               pmd
[    0.030884] 0xfffffffeee000000-0xfffffffeee008000          32K     RW                     x  pte
[    0.030897] 0xfffffffeee008000-0xfffffffeee03f000         220K                               pte
[    0.030908] 0xfffffffeee03f000-0xfffffffeee040000           4K                               pte
[    0.030920] 0xfffffffeee040000-0xfffffffeee0a0000         384K     RW                     x  pte
[    0.030935] 0xfffffffeee0a0000-0xfffffffeee200000        1408K                               pte
[    0.030946] 0xfffffffeee200000-0xfffffffeee220000         128K                               pte
[    0.030958] 0xfffffffeee220000-0xfffffffeee268000         288K                               pte
[    0.030972] 0xfffffffeee268000-0xfffffffeee400000        1632K                               pte
[    0.030984] 0xfffffffeee400000-0xfffffffef4800000         100M                               pmd
[    0.030996] 0xfffffffef4800000-0xfffffffef48fc000        1008K                               pte
[    0.031009] 0xfffffffef48fc000-0xfffffffef4a00000        1040K     RW                     x  pte
[    0.031022] 0xfffffffef4a00000-0xfffffffef6200000          24M     RW         PSE         x  pmd
[    0.031037] 0xfffffffef6200000-0xfffffffef620a000          40K     RW                     x  pte
[    0.031051] 0xfffffffef620a000-0xfffffffef6303000         996K                               pte
[    0.031063] 0xfffffffef6303000-0xfffffffef6400000        1012K                               pte
[    0.031075] 0xfffffffef6400000-0xfffffffef6e00000          10M                               pmd
[    0.031088] 0xfffffffef6e00000-0xfffffffef6ee8000         928K                               pte
[    0.031102] 0xfffffffef6ee8000-0xfffffffef70c6000        1912K                               pte
[    0.031115] 0xfffffffef70c6000-0xfffffffef7200000        1256K     RW                     NX pte
[    0.031128] 0xfffffffef7200000-0xfffffffef7a00000           8M     RW         PSE         NX pmd
[    0.031142] 0xfffffffef7a00000-0xfffffffef7b3f000        1276K     RW                     NX pte
[    0.031154] 0xfffffffef7b3f000-0xfffffffef7b42000          12K     ro                     x  pte
[    0.031167] 0xfffffffef7b42000-0xfffffffef7b47000          20K     RW                     NX pte
[    0.031179] 0xfffffffef7b47000-0xfffffffef7b48000           4K     ro                     x  pte
[    0.031192] 0xfffffffef7b48000-0xfffffffef7b4d000          20K     RW                     NX pte
[    0.031204] 0xfffffffef7b4d000-0xfffffffef7b51000          16K     ro                     x  pte
[    0.031217] 0xfffffffef7b51000-0xfffffffef7b56000          20K     RW                     NX pte
[    0.031229] 0xfffffffef7b56000-0xfffffffef7b57000           4K     ro                     x  pte
[    0.031241] 0xfffffffef7b57000-0xfffffffef7b5b000          16K     RW                     NX pte
[    0.031254] 0xfffffffef7b5b000-0xfffffffef7b5c000           4K     ro                     x  pte
[    0.031266] 0xfffffffef7b5c000-0xfffffffef7b61000          20K     RW                     NX pte
[    0.031279] 0xfffffffef7b61000-0xfffffffef7b6e000          52K     ro                     x  pte
[    0.031291] 0xfffffffef7b6e000-0xfffffffef7b75000          28K     RW                     NX pte
[    0.031303] 0xfffffffef7b75000-0xfffffffef7b78000          12K     ro                     x  pte
[    0.031316] 0xfffffffef7b78000-0xfffffffef7b7d000          20K     RW                     NX pte
[    0.031328] 0xfffffffef7b7d000-0xfffffffef7b7e000           4K     ro                     x  pte
[    0.031341] 0xfffffffef7b7e000-0xfffffffef7b83000          20K     RW                     NX pte
[    0.031353] 0xfffffffef7b83000-0xfffffffef7b84000           4K     ro                     x  pte
[    0.031365] 0xfffffffef7b84000-0xfffffffef7b89000          20K     RW                     NX pte
[    0.031378] 0xfffffffef7b89000-0xfffffffef7b8a000           4K     ro                     x  pte
[    0.031390] 0xfffffffef7b8a000-0xfffffffef7b8f000          20K     RW                     NX pte
[    0.031402] 0xfffffffef7b8f000-0xfffffffef7b90000           4K     ro                     x  pte
[    0.031415] 0xfffffffef7b90000-0xfffffffef7b95000          20K     RW                     NX pte
[    0.031427] 0xfffffffef7b95000-0xfffffffef7b96000           4K     ro                     x  pte
[    0.031440] 0xfffffffef7b96000-0xfffffffef7b9b000          20K     RW                     NX pte
[    0.031452] 0xfffffffef7b9b000-0xfffffffef7b9c000           4K     ro                     x  pte
[    0.031464] 0xfffffffef7b9c000-0xfffffffef7ba0000          16K     RW                     NX pte
[    0.031477] 0xfffffffef7ba0000-0xfffffffef7baa000          40K     ro                     x  pte
[    0.031489] 0xfffffffef7baa000-0xfffffffef7bb3000          36K     RW                     NX pte
[    0.031502] 0xfffffffef7bb3000-0xfffffffef7bb9000          24K     ro                     x  pte
[    0.031514] 0xfffffffef7bb9000-0xfffffffef7bbe000          20K     RW                     NX pte
[    0.031526] 0xfffffffef7bbe000-0xfffffffef7bc2000          16K     ro                     x  pte
[    0.031539] 0xfffffffef7bc2000-0xfffffffef7bc7000          20K     RW                     NX pte
[    0.031552] 0xfffffffef7bc7000-0xfffffffef7c00000         228K                               pte
[    0.031563] 0xfffffffef7c00000-0xfffffffefa800000          44M                               pmd
[    0.031575] 0xfffffffefa800000-0xfffffffefe800000          64M     RW         PSE         x  pmd
[    0.031589] 0xfffffffefe800000-0xfffffffefe900000           1M                               pte
[    0.031602] 0xfffffffefe900000-0xfffffffefea10000        1088K     RW     PCD             x  pte
[    0.031616] 0xfffffffefea10000-0xfffffffefeb80000        1472K                               pte
[    0.031628] 0xfffffffefeb80000-0xfffffffefec02000         520K     RW     PCD             x  pte
[    0.031641] 0xfffffffefec02000-0xfffffffefec10000          56K                               pte
[    0.031652] 0xfffffffefec10000-0xfffffffefec11000           4K     RW     PCD             x  pte
[    0.031665] 0xfffffffefec11000-0xfffffffefec30000         124K                               pte
[    0.031676] 0xfffffffefec30000-0xfffffffefec31000           4K     RW     PCD             x  pte
[    0.031690] 0xfffffffefec31000-0xfffffffefed00000         828K                               pte
[    0.031701] 0xfffffffefed00000-0xfffffffefed01000           4K     RW     PCD             x  pte
[    0.031714] 0xfffffffefed01000-0xfffffffefed40000         252K                               pte
[    0.031725] 0xfffffffefed40000-0xfffffffefed45000          20K     RW     PCD             x  pte
[    0.031738] 0xfffffffefed45000-0xfffffffefed80000         236K                               pte
[    0.031749] 0xfffffffefed80000-0xfffffffefed90000          64K     RW     PCD             x  pte
[    0.031762] 0xfffffffefed90000-0xfffffffefedc2000         200K                               pte
[    0.031774] 0xfffffffefedc2000-0xfffffffefedd0000          56K     RW     PCD             x  pte
[    0.031786] 0xfffffffefedd0000-0xfffffffefedd4000          16K                               pte
[    0.031797] 0xfffffffefedd4000-0xfffffffefedd6000           8K     RW     PCD             x  pte
[    0.031810] 0xfffffffefedd6000-0xfffffffefee00000         168K                               pte
[    0.031823] 0xfffffffefee00000-0xfffffffefef00000           1M     RW     PCD             x  pte
[    0.031837] 0xfffffffefef00000-0xfffffffeff000000           1M                               pte
[    0.031848] 0xfffffffeff000000-0xffffffff00000000          16M     RW     PCD PSE         x  pmd
[    0.031861] 0xffffffff00000000-0xffffffff80000000           2G                               pud
[    0.031872] ---[ High Kernel Mapping ]---
[    0.031880] 0xffffffff80000000-0xffffffffb7000000         880M                               pmd
[    0.031891] 0xffffffffb7000000-0xffffffffba600000          54M     RW         PSE     GLB x  pmd
[    0.031904] 0xffffffffba600000-0xffffffffc0000000          90M                               pmd
[    0.031915] ---[ Modules ]---
[    0.031922] 0xffffffffc0000000-0xffffffffff000000        1008M                               pmd
[    0.031933] ---[ End Modules ]---
[    0.031938] 0xffffffffff000000-0xffffffffff200000           2M                               pmd
[    0.031955] 0xffffffffff200000-0xffffffffff578000        3552K                               pte
[    0.031966] ---[ Fixmap Area ]---
[    0.031972] 0xffffffffff578000-0xffffffffff5fa000         520K                               pte
[    0.031984] 0xffffffffff5fa000-0xffffffffff5fd000          12K     RW PWT PCD         GLB NX pte
[    0.031996] 0xffffffffff5fd000-0xffffffffff600000          12K                               pte
[    0.032007] 0xffffffffff600000-0xffffffffff601000           4K USR ro                 GLB NX pte
[    0.032025] 0xffffffffff601000-0xffffffffff800000        2044K                               pte
[    0.032037] 0xffffffffff800000-0x0000000000000000           8M                               pmd
[    0.032117] LSM: Security Framework initializing
[    0.032138] Yama: becoming mindful.
[    0.032155] SELinux:  Initializing.
[    0.032189] *** VALIDATE SELinux ***
[    0.032276] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.032330] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.032693] *** VALIDATE proc ***
[    0.032837] *** VALIDATE cgroup1 ***
[    0.032844] *** VALIDATE cgroup2 ***
[    0.032933] LVT offset 1 assigned for vector 0xf9
[    0.032999] LVT offset 2 assigned for vector 0xf4
[    0.033019] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.033026] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.033038] Spectre V2 : Mitigation: Full AMD retpoline
[    0.033045] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.033056] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.033067] Spectre V2 : User space: Vulnerable
[    0.033074] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.033284] Freeing SMP alternatives memory: 28K
[    0.035024] smpboot: CPU0: AMD Ryzen 7 2700X Eight-Core Processor (family: 0x17, model: 0x8, stepping: 0x2)
[    0.035024] Performance Events: Fam17h core perfctr, AMD PMU driver.
[    0.035024] ... version:                0
[    0.035024] ... bit width:              48
[    0.035024] ... generic registers:      6
[    0.035024] ... value mask:             0000ffffffffffff
[    0.035024] ... max period:             00007fffffffffff
[    0.035024] ... fixed-purpose events:   0
[    0.035024] ... event mask:             000000000000003f
[    0.035024] rcu: Hierarchical SRCU implementation.
[    0.035079] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.035635] smp: Bringing up secondary CPUs ...
[    0.035900] x86: Booting SMP configuration:
[    0.035912] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
[    0.057114] smp: Brought up 1 node, 16 CPUs
[    0.057114] smpboot: Max logical packages: 2
[    0.057114] smpboot: Total of 16 processors activated (118161.82 BogoMIPS)
[    0.059528] devtmpfs: initialized
[    0.059528] x86/mm: Memory block size: 128MB
[    0.071914] PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
[    0.071914] PM: Registering ACPI NVS region [mem 0xdb410000-0xdb8c5fff] (4939776 bytes)
[    0.074387] DMA-API: preallocated 65536 debug entries
[    0.074396] DMA-API: debugging enabled by kernel config
[    0.074405] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.074423] futex hash table entries: 8192 (order: 8, 1048576 bytes, linear)
[    0.074882] pinctrl core: initialized pinctrl subsystem

[    0.075152] *************************************************************
[    0.075161] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.075170] **                                                         **
[    0.075178] **  IOMMU DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL  **
[    0.075187] **                                                         **
[    0.075199] ** This means that this kernel is built to expose internal **
[    0.075208] ** IOMMU data structures, which may compromise security on **
[    0.075217] ** your system.                                            **
[    0.075225] **                                                         **
[    0.075234] ** If you see this message and you are not debugging the   **
[    0.075242] ** kernel, report this immediately to your vendor!         **
[    0.075251] **                                                         **
[    0.075260] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.075268] *************************************************************
[    0.075328] PM: RTC time: 22:41:39, date: 2019-08-03
[    0.075628] NET: Registered protocol family 16
[    0.075876] audit: initializing netlink subsys (disabled)
[    0.075922] audit: type=2000 audit(1564872099.082:1): state=initialized audit_enabled=0 res=1
[    0.076199] cpuidle: using governor menu
[    0.076357] ACPI: bus type PCI registered
[    0.076357] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.076357] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.076357] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.076357] PCI: Using configuration type 1 for base access
[    0.086369] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.086369] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.151024] cryptomgr_test (102) used greatest stack depth: 13936 bytes left
[    0.151703] kworker/u64:0 (105) used greatest stack depth: 13192 bytes left
[    0.173174] cryptd: max_cpu_qlen set to 1000
[    0.182143] alg: No test for lzo-rle (lzo-rle-generic)
[    0.182171] alg: No test for lzo-rle (lzo-rle-scomp)
[    0.182171] alg: No test for 842 (842-generic)
[    0.182171] alg: No test for 842 (842-scomp)
[    0.187191] fbcon: Taking over console
[    0.187409] ACPI: Added _OSI(Module Device)
[    0.187409] ACPI: Added _OSI(Processor Device)
[    0.187409] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.187409] ACPI: Added _OSI(Processor Aggregator Device)
[    0.187409] ACPI: Added _OSI(Linux-Dell-Video)
[    0.187409] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.187409] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.220316] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    0.225924] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.233367] ACPI: EC: EC started
[    0.233379] ACPI: EC: interrupt blocked
[    0.233720] ACPI: \_SB_.PCI0.SBRG.EC0_: Used as first EC
[    0.233729] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x2, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.233740] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions
[    0.233750] ACPI: Interpreter enabled
[    0.233785] ACPI: (supports S0 S3 S4 S5)
[    0.233791] ACPI: Using IOAPIC for interrupt routing
[    0.235059] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.235849] ACPI: Enabled 3 GPEs in block 00 to 1F
[    0.262111] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.262132] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.262610] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME LTR]
[    0.263061] acpi PNP0A08:00: _OSC: OS now controls [PCIeCapability]
[    0.263101] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.264034] PCI host bridge to bus 0000:00
[    0.264042] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.264052] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.264061] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.264071] pci_bus 0000:00: root bus resource [io  0x0d00-0xefff window]
[    0.264080] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.264091] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.264101] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
[    0.264111] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[    0.264122] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.264155] pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
[    0.264419] pci 0000:00:00.2: [1022:1451] type 00 class 0x080600
[    0.264639] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.264817] pci 0000:00:01.1: [1022:1453] type 01 class 0x060400
[    0.264953] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.266280] pci 0000:00:01.3: [1022:1453] type 01 class 0x060400
[    0.266769] pci 0000:00:01.3: enabling Extended Tags
[    0.266869] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[    0.267137] pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
[    0.267326] pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
[    0.267501] pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
[    0.267837] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.268107] pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
[    0.268301] pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
[    0.268473] pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
[    0.268748] pci 0000:00:07.1: enabling Extended Tags
[    0.268841] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    0.269109] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.269283] pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
[    0.269754] pci 0000:00:08.1: enabling Extended Tags
[    0.269850] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.270157] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.270492] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.270826] pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
[    0.270986] pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
[    0.271152] pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
[    0.271314] pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
[    0.271475] pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
[    0.271638] pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
[    0.271800] pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
[    0.271961] pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
[    0.272835] pci 0000:01:00.0: [8086:2700] type 00 class 0x010802
[    0.272863] pci 0000:01:00.0: reg 0x10: [mem 0xfcf10000-0xfcf13fff 64bit]
[    0.272897] pci 0000:01:00.0: reg 0x30: [mem 0xfcf00000-0xfcf0ffff pref]
[    0.273096] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.273108] pci 0000:00:01.1:   bridge window [mem 0xfcf00000-0xfcffffff]
[    0.273869] pci 0000:02:00.0: [1022:43d0] type 00 class 0x0c0330
[    0.273900] pci 0000:02:00.0: reg 0x10: [mem 0xfcba0000-0xfcba7fff 64bit]
[    0.273946] pci 0000:02:00.0: enabling Extended Tags
[    0.274013] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.274161] pci 0000:02:00.1: [1022:43c8] type 00 class 0x010601
[    0.274218] pci 0000:02:00.1: reg 0x24: [mem 0xfcb80000-0xfcb9ffff]
[    0.274233] pci 0000:02:00.1: reg 0x30: [mem 0xfcb00000-0xfcb7ffff pref]
[    0.274247] pci 0000:02:00.1: enabling Extended Tags
[    0.274299] pci 0000:02:00.1: PME# supported from D3hot D3cold
[    0.274423] pci 0000:02:00.2: [1022:43c6] type 01 class 0x060400
[    0.274477] pci 0000:02:00.2: enabling Extended Tags
[    0.274537] pci 0000:02:00.2: PME# supported from D3hot D3cold
[    0.274700] pci 0000:00:01.3: PCI bridge to [bus 02-08]
[    0.274711] pci 0000:00:01.3:   bridge window [io  0xc000-0xdfff]
[    0.274720] pci 0000:00:01.3:   bridge window [mem 0xfc900000-0xfcbfffff]
[    0.274968] pci 0000:03:00.0: [1022:43c7] type 01 class 0x060400
[    0.275030] pci 0000:03:00.0: enabling Extended Tags
[    0.275101] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.275262] pci 0000:03:01.0: [1022:43c7] type 01 class 0x060400
[    0.275321] pci 0000:03:01.0: enabling Extended Tags
[    0.275391] pci 0000:03:01.0: PME# supported from D3hot D3cold
[    0.275553] pci 0000:03:02.0: [1022:43c7] type 01 class 0x060400
[    0.275612] pci 0000:03:02.0: enabling Extended Tags
[    0.275682] pci 0000:03:02.0: PME# supported from D3hot D3cold
[    0.275841] pci 0000:03:03.0: [1022:43c7] type 01 class 0x060400
[    0.275899] pci 0000:03:03.0: enabling Extended Tags
[    0.275969] pci 0000:03:03.0: PME# supported from D3hot D3cold
[    0.276134] pci 0000:03:04.0: [1022:43c7] type 01 class 0x060400
[    0.276192] pci 0000:03:04.0: enabling Extended Tags
[    0.276262] pci 0000:03:04.0: PME# supported from D3hot D3cold
[    0.276445] pci 0000:02:00.2: PCI bridge to [bus 03-08]
[    0.276457] pci 0000:02:00.2:   bridge window [io  0xc000-0xdfff]
[    0.276467] pci 0000:02:00.2:   bridge window [mem 0xfc900000-0xfcafffff]
[    0.276599] pci 0000:04:00.0: [8086:1539] type 00 class 0x020000
[    0.276653] pci 0000:04:00.0: reg 0x10: [mem 0xfca00000-0xfca1ffff]
[    0.276694] pci 0000:04:00.0: reg 0x18: [io  0xd000-0xd01f]
[    0.276718] pci 0000:04:00.0: reg 0x1c: [mem 0xfca20000-0xfca23fff]
[    0.276918] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    0.277140] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.277152] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.277162] pci 0000:03:00.0:   bridge window [mem 0xfca00000-0xfcafffff]
[    0.277256] pci 0000:05:00.0: [10ec:b822] type 00 class 0x028000
[    0.277307] pci 0000:05:00.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.277348] pci 0000:05:00.0: reg 0x18: [mem 0xfc900000-0xfc90ffff 64bit]
[    0.277535] pci 0000:05:00.0: supports D1 D2
[    0.277542] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.277769] pci 0000:03:01.0: PCI bridge to [bus 05]
[    0.277780] pci 0000:03:01.0:   bridge window [io  0xc000-0xcfff]
[    0.277790] pci 0000:03:01.0:   bridge window [mem 0xfc900000-0xfc9fffff]
[    0.277857] pci 0000:03:02.0: PCI bridge to [bus 06]
[    0.277951] pci 0000:03:03.0: PCI bridge to [bus 07]
[    0.278046] pci 0000:03:04.0: PCI bridge to [bus 08]
[    0.278852] pci 0000:09:00.0: [1002:14a0] type 01 class 0x060400
[    0.278884] pci 0000:09:00.0: reg 0x10: [mem 0xfcd00000-0xfcd03fff]
[    0.278987] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
[    0.279169] pci 0000:00:03.1: PCI bridge to [bus 09-0b]
[    0.279180] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.279189] pci 0000:00:03.1:   bridge window [mem 0xfcc00000-0xfcdfffff]
[    0.279200] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.279273] pci 0000:0a:00.0: [1002:14a1] type 01 class 0x060400
[    0.279383] pci 0000:0a:00.0: PME# supported from D0 D3hot D3cold
[    0.279520] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.279532] pci 0000:09:00.0:   bridge window [io  0xe000-0xefff]
[    0.279542] pci 0000:09:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.279554] pci 0000:09:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.279620] pci 0000:0b:00.0: [1002:66af] type 00 class 0x030000
[    0.279654] pci 0000:0b:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.279673] pci 0000:0b:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref]
[    0.279689] pci 0000:0b:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    0.279703] pci 0000:0b:00.0: reg 0x24: [mem 0xfcc00000-0xfcc7ffff]
[    0.279718] pci 0000:0b:00.0: reg 0x30: [mem 0xfcc80000-0xfcc9ffff pref]
[    0.279748] pci 0000:0b:00.0: BAR 0: assigned to efifb
[    0.279813] pci 0000:0b:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.279941] pci 0000:0b:00.1: [1002:ab20] type 00 class 0x040300
[    0.279967] pci 0000:0b:00.1: reg 0x10: [mem 0xfcca0000-0xfcca3fff]
[    0.280074] pci 0000:0b:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.280213] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.280224] pci 0000:0a:00.0:   bridge window [io  0xe000-0xefff]
[    0.280234] pci 0000:0a:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.280246] pci 0000:0a:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.280866] pci 0000:0c:00.0: [1022:145a] type 00 class 0x130000
[    0.280903] pci 0000:0c:00.0: enabling Extended Tags
[    0.281036] pci 0000:0c:00.2: [1022:1456] type 00 class 0x108000
[    0.281060] pci 0000:0c:00.2: reg 0x18: [mem 0xfc700000-0xfc7fffff]
[    0.281076] pci 0000:0c:00.2: reg 0x24: [mem 0xfc800000-0xfc801fff]
[    0.281090] pci 0000:0c:00.2: enabling Extended Tags
[    0.281232] pci 0000:0c:00.3: [1022:145f] type 00 class 0x0c0330
[    0.281253] pci 0000:0c:00.3: reg 0x10: [mem 0xfc600000-0xfc6fffff 64bit]
[    0.281284] pci 0000:0c:00.3: enabling Extended Tags
[    0.281330] pci 0000:0c:00.3: PME# supported from D0 D3hot D3cold
[    0.281457] pci 0000:00:07.1: PCI bridge to [bus 0c]
[    0.281467] pci 0000:00:07.1:   bridge window [mem 0xfc600000-0xfc8fffff]
[    0.281886] pci 0000:0d:00.0: [1022:1455] type 00 class 0x130000
[    0.281925] pci 0000:0d:00.0: enabling Extended Tags
[    0.282065] pci 0000:0d:00.2: [1022:7901] type 00 class 0x010601
[    0.282105] pci 0000:0d:00.2: reg 0x24: [mem 0xfce08000-0xfce08fff]
[    0.282120] pci 0000:0d:00.2: enabling Extended Tags
[    0.282167] pci 0000:0d:00.2: PME# supported from D3hot D3cold
[    0.282289] pci 0000:0d:00.3: [1022:1457] type 00 class 0x040300
[    0.282308] pci 0000:0d:00.3: reg 0x10: [mem 0xfce00000-0xfce07fff]
[    0.282336] pci 0000:0d:00.3: enabling Extended Tags
[    0.282382] pci 0000:0d:00.3: PME# supported from D0 D3hot D3cold
[    0.282524] pci 0000:00:08.1: PCI bridge to [bus 0d]
[    0.282536] pci 0000:00:08.1:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.283355] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
[    0.283497] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
[    0.283620] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
[    0.283760] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
[    0.283890] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
[    0.284001] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
[    0.284115] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
[    0.284225] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
[    0.286189] ACPI: EC: interrupt unblocked
[    0.286215] ACPI: EC: event unblocked
[    0.286232] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x2, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.286245] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions and events
[    0.286458] pci 0000:0b:00.0: vgaarb: setting as boot VGA device
[    0.286458] pci 0000:0b:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.286458] pci 0000:0b:00.0: vgaarb: bridge control possible
[    0.286458] vgaarb: loaded
[    0.286458] SCSI subsystem initialized
[    0.287028] libata version 3.00 loaded.
[    0.287079] ACPI: bus type USB registered
[    0.287128] usbcore: registered new interface driver usbfs
[    0.287154] usbcore: registered new interface driver hub
[    0.287257] usbcore: registered new device driver usb
[    0.287329] pps_core: LinuxPPS API ver. 1 registered
[    0.287336] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.287351] PTP clock support registered
[    0.287451] EDAC MC: Ver: 3.0.0
[    0.287451] Registered efivars operations
[    0.310408] PCI: Using ACPI for IRQ routing
[    0.314493] PCI: pci_cache_line_size set to 64 bytes
[    0.314574] e820: reserve RAM buffer [mem 0x09d00000-0x0bffffff]
[    0.314581] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.314583] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    0.314585] e820: reserve RAM buffer [mem 0xcf718018-0xcfffffff]
[    0.314586] e820: reserve RAM buffer [mem 0xcf732018-0xcfffffff]
[    0.314588] e820: reserve RAM buffer [mem 0xd8ae8000-0xdbffffff]
[    0.314590] e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
[    0.314591] e820: reserve RAM buffer [mem 0x81f380000-0x81fffffff]
[    0.314910] NetLabel: Initializing
[    0.314917] NetLabel:  domain hash size = 128
[    0.314923] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.314956] NetLabel:  unlabeled traffic allowed by default
[    0.315102] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.315112] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.317208] clocksource: Switched to clocksource tsc-early
[    0.356117] VFS: Disk quotas dquot_6.6.0
[    0.356156] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.356227] *** VALIDATE hugetlbfs ***
[    0.356333] pnp: PnP ACPI init
[    0.356562] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.356587] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.356799] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.357125] system 00:02: [io  0x02a0-0x02af] has been reserved
[    0.357135] system 00:02: [io  0x0230-0x023f] has been reserved
[    0.357145] system 00:02: [io  0x0290-0x029f] has been reserved
[    0.357158] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.357657] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.357667] system 00:03: [io  0x040b] has been reserved
[    0.357676] system 00:03: [io  0x04d6] has been reserved
[    0.357684] system 00:03: [io  0x0c00-0x0c01] has been reserved
[    0.357693] system 00:03: [io  0x0c14] has been reserved
[    0.357701] system 00:03: [io  0x0c50-0x0c51] has been reserved
[    0.357712] system 00:03: [io  0x0c52] has been reserved
[    0.357720] system 00:03: [io  0x0c6c] has been reserved
[    0.357733] system 00:03: [io  0x0c6f] has been reserved
[    0.357741] system 00:03: [io  0x0cd0-0x0cd1] has been reserved
[    0.357750] system 00:03: [io  0x0cd2-0x0cd3] has been reserved
[    0.357759] system 00:03: [io  0x0cd4-0x0cd5] has been reserved
[    0.357768] system 00:03: [io  0x0cd6-0x0cd7] has been reserved
[    0.357777] system 00:03: [io  0x0cd8-0x0cdf] has been reserved
[    0.357785] system 00:03: [io  0x0800-0x089f] has been reserved
[    0.357794] system 00:03: [io  0x0b00-0x0b0f] has been reserved
[    0.357803] system 00:03: [io  0x0b20-0x0b3f] has been reserved
[    0.357812] system 00:03: [io  0x0900-0x090f] has been reserved
[    0.357820] system 00:03: [io  0x0910-0x091f] has been reserved
[    0.357831] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.357841] system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.357851] system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.357861] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.357871] system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.357881] system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.357891] system 00:03: [mem 0xff000000-0xffffffff] has been reserved
[    0.357905] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.358909] pnp: PnP ACPI: found 4 devices
[    0.362177] thermal_sys: Registered thermal governor 'fair_share'
[    0.362178] thermal_sys: Registered thermal governor 'bang_bang'
[    0.362188] thermal_sys: Registered thermal governor 'step_wise'
[    0.362198] thermal_sys: Registered thermal governor 'user_space'
[    0.366762] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.366870] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.366881] pci 0000:00:01.1:   bridge window [mem 0xfcf00000-0xfcffffff]
[    0.366894] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.366903] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.366914] pci 0000:03:00.0:   bridge window [mem 0xfca00000-0xfcafffff]
[    0.366929] pci 0000:03:01.0: PCI bridge to [bus 05]
[    0.366937] pci 0000:03:01.0:   bridge window [io  0xc000-0xcfff]
[    0.366948] pci 0000:03:01.0:   bridge window [mem 0xfc900000-0xfc9fffff]
[    0.366963] pci 0000:03:02.0: PCI bridge to [bus 06]
[    0.366979] pci 0000:03:03.0: PCI bridge to [bus 07]
[    0.366995] pci 0000:03:04.0: PCI bridge to [bus 08]
[    0.367011] pci 0000:02:00.2: PCI bridge to [bus 03-08]
[    0.367019] pci 0000:02:00.2:   bridge window [io  0xc000-0xdfff]
[    0.367030] pci 0000:02:00.2:   bridge window [mem 0xfc900000-0xfcafffff]
[    0.367045] pci 0000:00:01.3: PCI bridge to [bus 02-08]
[    0.367052] pci 0000:00:01.3:   bridge window [io  0xc000-0xdfff]
[    0.367062] pci 0000:00:01.3:   bridge window [mem 0xfc900000-0xfcbfffff]
[    0.367075] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.367083] pci 0000:0a:00.0:   bridge window [io  0xe000-0xefff]
[    0.367093] pci 0000:0a:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.367104] pci 0000:0a:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367118] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.367126] pci 0000:09:00.0:   bridge window [io  0xe000-0xefff]
[    0.367137] pci 0000:09:00.0:   bridge window [mem 0xfcc00000-0xfccfffff]
[    0.367148] pci 0000:09:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367162] pci 0000:00:03.1: PCI bridge to [bus 09-0b]
[    0.367170] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.367179] pci 0000:00:03.1:   bridge window [mem 0xfcc00000-0xfcdfffff]
[    0.367189] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367204] pci 0000:00:07.1: PCI bridge to [bus 0c]
[    0.367213] pci 0000:00:07.1:   bridge window [mem 0xfc600000-0xfc8fffff]
[    0.367226] pci 0000:00:08.1: PCI bridge to [bus 0d]
[    0.367237] pci 0000:00:08.1:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.367252] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.367261] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.367269] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.367278] pci_bus 0000:00: resource 7 [io  0x0d00-0xefff window]
[    0.367286] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.367295] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.367304] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfec2ffff window]
[    0.367314] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
[    0.367323] pci_bus 0000:01: resource 1 [mem 0xfcf00000-0xfcffffff]
[    0.367331] pci_bus 0000:02: resource 0 [io  0xc000-0xdfff]
[    0.367339] pci_bus 0000:02: resource 1 [mem 0xfc900000-0xfcbfffff]
[    0.367348] pci_bus 0000:03: resource 0 [io  0xc000-0xdfff]
[    0.367355] pci_bus 0000:03: resource 1 [mem 0xfc900000-0xfcafffff]
[    0.367364] pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
[    0.367372] pci_bus 0000:04: resource 1 [mem 0xfca00000-0xfcafffff]
[    0.367380] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
[    0.367388] pci_bus 0000:05: resource 1 [mem 0xfc900000-0xfc9fffff]
[    0.367397] pci_bus 0000:09: resource 0 [io  0xe000-0xefff]
[    0.367404] pci_bus 0000:09: resource 1 [mem 0xfcc00000-0xfcdfffff]
[    0.367413] pci_bus 0000:09: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367422] pci_bus 0000:0a: resource 0 [io  0xe000-0xefff]
[    0.367430] pci_bus 0000:0a: resource 1 [mem 0xfcc00000-0xfccfffff]
[    0.367439] pci_bus 0000:0a: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367448] pci_bus 0000:0b: resource 0 [io  0xe000-0xefff]
[    0.367456] pci_bus 0000:0b: resource 1 [mem 0xfcc00000-0xfccfffff]
[    0.367464] pci_bus 0000:0b: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.367474] pci_bus 0000:0c: resource 1 [mem 0xfc600000-0xfc8fffff]
[    0.367483] pci_bus 0000:0d: resource 1 [mem 0xfce00000-0xfcefffff]
[    0.367713] NET: Registered protocol family 2
[    0.368237] tcp_listen_portaddr_hash hash table entries: 16384 (order: 8, 1441792 bytes, linear)
[    0.368505] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.369165] TCP bind hash table entries: 65536 (order: 10, 5242880 bytes, vmalloc)
[    0.369961] TCP: Hash tables configured (established 262144 bind 65536)
[    0.370208] UDP hash table entries: 16384 (order: 9, 3145728 bytes, linear)
[    0.370717] UDP-Lite hash table entries: 16384 (order: 9, 3145728 bytes, linear)
[    0.371299] NET: Registered protocol family 1
[    0.371312] NET: Registered protocol family 44
[    0.371699] pci 0000:0b:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.371738] pci 0000:0b:00.1: D0 power state depends on 0000:0b:00.0
[    0.372052] PCI: CLS 64 bytes, default 64
[    0.372184] Trying to unpack rootfs image as initramfs...
[    0.789544] Freeing initrd memory: 35256K
[    0.789573] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    0.790312] pci 0000:00:01.0: Adding to iommu group 0
[    0.790622] pci 0000:00:01.1: Adding to iommu group 1
[    0.790862] pci 0000:00:01.3: Adding to iommu group 2
[    0.791189] pci 0000:00:02.0: Adding to iommu group 3
[    0.791552] pci 0000:00:03.0: Adding to iommu group 4
[    0.791907] pci 0000:00:03.1: Adding to iommu group 5
[    0.792147] pci 0000:00:04.0: Adding to iommu group 6
[    0.792478] pci 0000:00:07.0: Adding to iommu group 7
[    0.792715] pci 0000:00:07.1: Adding to iommu group 8
[    0.793043] pci 0000:00:08.0: Adding to iommu group 9
[    0.793334] pci 0000:00:08.1: Adding to iommu group 10
[    0.793584] pci 0000:00:14.0: Adding to iommu group 11
[    0.793625] pci 0000:00:14.3: Adding to iommu group 11
[    0.794029] pci 0000:00:18.0: Adding to iommu group 12
[    0.794070] pci 0000:00:18.1: Adding to iommu group 12
[    0.794110] pci 0000:00:18.2: Adding to iommu group 12
[    0.794149] pci 0000:00:18.3: Adding to iommu group 12
[    0.794189] pci 0000:00:18.4: Adding to iommu group 12
[    0.794228] pci 0000:00:18.5: Adding to iommu group 12
[    0.794267] pci 0000:00:18.6: Adding to iommu group 12
[    0.794309] pci 0000:00:18.7: Adding to iommu group 12
[    0.794541] pci 0000:01:00.0: Adding to iommu group 13
[    0.794899] pci 0000:02:00.0: Adding to iommu group 14
[    0.794950] pci 0000:02:00.1: Adding to iommu group 14
[    0.795000] pci 0000:02:00.2: Adding to iommu group 14
[    0.795027] pci 0000:03:00.0: Adding to iommu group 14
[    0.795052] pci 0000:03:01.0: Adding to iommu group 14
[    0.795078] pci 0000:03:02.0: Adding to iommu group 14
[    0.795104] pci 0000:03:03.0: Adding to iommu group 14
[    0.795131] pci 0000:03:04.0: Adding to iommu group 14
[    0.795163] pci 0000:04:00.0: Adding to iommu group 14
[    0.795196] pci 0000:05:00.0: Adding to iommu group 14
[    0.795501] pci 0000:09:00.0: Adding to iommu group 15
[    0.795741] pci 0000:0a:00.0: Adding to iommu group 16
[    0.796170] pci 0000:0b:00.0: Adding to iommu group 17
[    0.796482] pci 0000:0b:00.0: Using iommu direct mapping
[    0.796668] pci 0000:0b:00.1: Adding to iommu group 18
[    0.796891] pci 0000:0c:00.0: Adding to iommu group 19
[    0.797208] pci 0000:0c:00.2: Adding to iommu group 20
[    0.797517] pci 0000:0c:00.3: Adding to iommu group 21
[    0.797755] pci 0000:0d:00.0: Adding to iommu group 22
[    0.798070] pci 0000:0d:00.2: Adding to iommu group 23
[    0.798306] pci 0000:0d:00.3: Adding to iommu group 24
[    0.798495] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[    0.798505] pci 0000:00:00.2: AMD-Vi: Extended features (0xf77ef22294ada):
[    0.798514]  PPR NX GT IA GA PC GA_vAPIC
[    0.798522] AMD-Vi: Interrupt remapping enabled
[    0.798529] AMD-Vi: Virtual APIC enabled
[    0.798671] AMD-Vi: Lazy IO/TLB flushing enabled
[    0.798682] __memblock_free_late: [0x000000081e2e3000-0x000000081e322fff] swiotlb_exit+0xd3/0x167
[    0.798713] __memblock_free_late: [0x000000081e323000-0x000000081e342fff] swiotlb_exit+0x114/0x167
[    0.798734] __memblock_free_late: [0x00000000cb716000-0x00000000cf715fff] swiotlb_exit+0x139/0x167
[    0.804803] amd_uncore: AMD NB counters detected
[    0.804830] amd_uncore: AMD LLC counters detected
[    0.805223] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.807722] check: Scanning for low memory corruption every 60 seconds
[    0.811180] Initialise system trusted keyrings
[    0.811247] Key type blacklist registered
[    0.811320] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[    0.815607] zbud: loaded
[    0.817290] Platform Keyring initialized
[    0.821651] NET: Registered protocol family 38
[    0.821670] Key type asymmetric registered
[    0.821683] Asymmetric key parser 'x509' registered
[    0.821710] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.821836] io scheduler mq-deadline registered
[    0.821844] io scheduler kyber registered
[    0.821914] io scheduler bfq registered
[    0.822414] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.828906] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.828976] efifb: probing for efifb
[    0.829003] efifb: No BGRT, not showing boot graphics
[    0.829010] efifb: framebuffer at 0xe0000000, using 3072k, total 3072k
[    0.829019] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    0.829027] efifb: scrolling: redraw
[    0.829033] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.829301] Console: switching to colour frame buffer device 128x48
[    0.830650] fb0: EFI VGA frame buffer device
[    0.830885] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.830946] ACPI: Power Button [PWRB]
[    0.831031] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.831192] ACPI: Power Button [PWRF]
[    0.831292] Monitor-Mwait will be used to enter C-1 state
[    0.834437] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.855413] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.859518] Non-volatile memory driver v1.3
[    0.859623] Linux agpgart interface v0.103
[    0.862364] ahci 0000:02:00.1: version 3.0
[    0.862533] ahci 0000:02:00.1: SSS flag set, parallel bus scan disabled
[    0.862611] ahci 0000:02:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
[    0.862642] ahci 0000:02:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
[    0.864211] scsi host0: ahci
[    0.864503] scsi host1: ahci
[    0.864700] scsi host2: ahci
[    0.864882] scsi host3: ahci
[    0.865105] scsi host4: ahci
[    0.865314] scsi host5: ahci
[    0.865517] scsi host6: ahci
[    0.865717] scsi host7: ahci
[    0.865817] ata1: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80100 irq 42
[    0.865847] ata2: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80180 irq 42
[    0.865876] ata3: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80200 irq 42
[    0.866393] ata4: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80280 irq 42
[    0.866897] ata5: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80300 irq 42
[    0.867386] ata6: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80380 irq 42
[    0.867865] ata7: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80400 irq 42
[    0.868336] ata8: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80480 irq 42
[    0.869029] ahci 0000:0d:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.869498] ahci 0000:0d:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    0.870258] scsi host8: ahci
[    0.870815] ata9: SATA max UDMA/133 abar m4096@0xfce08000 port 0xfce08100 irq 44
[    0.871516] libphy: Fixed MDIO Bus: probed
[    0.872166] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.872661] ehci-pci: EHCI PCI platform driver
[    0.873160] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.873648] ohci-pci: OHCI PCI platform driver
[    0.874157] uhci_hcd: USB Universal Host Controller Interface driver
[    0.874838] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.875516] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
[    0.931463] xhci_hcd 0000:02:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[    0.932825] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.03
[    0.933343] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.933847] usb usb1: Product: xHCI Host Controller
[    0.934345] usb usb1: Manufacturer: Linux 5.3.0-0.rc2.git4.1.fc31.x86_64 xhci-hcd
[    0.934864] usb usb1: SerialNumber: 0000:02:00.0
[    0.935701] hub 1-0:1.0: USB hub found
[    0.936260] hub 1-0:1.0: 14 ports detected
[    0.974438] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.975028] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[    0.975528] xhci_hcd 0000:02:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.976094] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.976636] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.03
[    0.977131] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.977619] usb usb2: Product: xHCI Host Controller
[    0.978098] usb usb2: Manufacturer: Linux 5.3.0-0.rc2.git4.1.fc31.x86_64 xhci-hcd
[    0.978588] usb usb2: SerialNumber: 0000:02:00.0
[    0.979290] hub 2-0:1.0: USB hub found
[    0.979807] hub 2-0:1.0: 8 ports detected
[    1.001504] xhci_hcd 0000:0c:00.3: xHCI Host Controller
[    1.002048] xhci_hcd 0000:0c:00.3: new USB bus registered, assigned bus number 3
[    1.002639] xhci_hcd 0000:0c:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x0000000000000410
[    1.003700] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.03
[    1.004212] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.004725] usb usb3: Product: xHCI Host Controller
[    1.005233] usb usb3: Manufacturer: Linux 5.3.0-0.rc2.git4.1.fc31.x86_64 xhci-hcd
[    1.005756] usb usb3: SerialNumber: 0000:0c:00.3
[    1.006469] hub 3-0:1.0: USB hub found
[    1.007003] hub 3-0:1.0: 4 ports detected
[    1.007914] xhci_hcd 0000:0c:00.3: xHCI Host Controller
[    1.008516] xhci_hcd 0000:0c:00.3: new USB bus registered, assigned bus number 4
[    1.009073] xhci_hcd 0000:0c:00.3: Host supports USB 3.0 SuperSpeed
[    1.009651] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.010273] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.03
[    1.010858] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.011463] usb usb4: Product: xHCI Host Controller
[    1.012037] usb usb4: Manufacturer: Linux 5.3.0-0.rc2.git4.1.fc31.x86_64 xhci-hcd
[    1.012615] usb usb4: SerialNumber: 0000:0c:00.3
[    1.013382] hub 4-0:1.0: USB hub found
[    1.013952] hub 4-0:1.0: 4 ports detected
[    1.014909] usbcore: registered new interface driver usbserial_generic
[    1.015501] usbserial: USB Serial support registered for generic
[    1.016093] i8042: PNP: No PS/2 controller found.
[    1.016712] mousedev: PS/2 mouse device common for all mice
[    1.017538] rtc_cmos 00:01: RTC can wake from S4
[    1.018419] rtc_cmos 00:01: registered as rtc0
[    1.018964] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.019615] device-mapper: uevent: version 1.0.3
[    1.020291] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
[    1.021432] hidraw: raw HID events driver (C) Jiri Kosina
[    1.022053] usbcore: registered new interface driver usbhid
[    1.022605] usbhid: USB HID core driver
[    1.023326] drop_monitor: Initializing network drop monitor service
[    1.024020] Initializing XFRM netlink socket
[    1.024899] NET: Registered protocol family 10
[    1.031193] Segment Routing with IPv6
[    1.031763] mip6: Mobile IPv6
[    1.032347] NET: Registered protocol family 17
[    1.035688] RAS: Correctable Errors collector initialized.
[    1.036328] microcode: CPU0: patch_level=0x0800820c
[    1.036897] microcode: CPU1: patch_level=0x0800820c
[    1.037490] microcode: CPU2: patch_level=0x0800820c
[    1.038262] microcode: CPU3: patch_level=0x0800820c
[    1.038806] microcode: CPU4: patch_level=0x0800820c
[    1.039593] microcode: CPU5: patch_level=0x0800820c
[    1.040355] microcode: CPU6: patch_level=0x0800820c
[    1.040858] microcode: CPU7: patch_level=0x0800820c
[    1.041353] microcode: CPU8: patch_level=0x0800820c
[    1.041842] microcode: CPU9: patch_level=0x0800820c
[    1.042346] microcode: CPU10: patch_level=0x0800820c
[    1.043042] microcode: CPU11: patch_level=0x0800820c
[    1.043511] microcode: CPU12: patch_level=0x0800820c
[    1.044185] microcode: CPU13: patch_level=0x0800820c
[    1.044826] microcode: CPU14: patch_level=0x0800820c
[    1.045242] microcode: CPU15: patch_level=0x0800820c
[    1.045657] microcode: Microcode Update Driver: v2.2.
[    1.045674] AVX2 version of gcm_enc/dec engaged.
[    1.046486] AES CTR mode by8 optimization enabled
[    1.102964] sched_clock: Marking stable (1109931611, -6975981)->(1239320373, -136364743)
[    1.103737] registered taskstats version 1
[    1.104289] Loading compiled-in X.509 certificates
[    1.127051] Loaded X.509 cert 'Fedora kernel signing key: 78f388893995c28eacd1e6f457905db770ad02fa'
[    1.127569] zswap: loaded using pool lzo/zbud
[    1.138937] Key type big_key registered
[    1.144402] Key type encrypted registered
[    1.146687] ima: No TPM chip found, activating TPM-bypass!
[    1.147113] ima: Allocated hash algorithm: sha256
[    1.147538] No architecture policies found
[    1.148825] PM:   Magic number: 15:703:703
[    1.149410] rtc_cmos 00:01: setting system clock to 2019-08-03T22:41:40 UTC (1564872100)
[    1.173204] ata1: SATA link down (SStatus 0 SControl 300)
[    1.181380] ata9: SATA link down (SStatus 0 SControl 300)
[    1.298044] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[    1.451796] usb 1-2: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    1.452450] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.453065] usb 1-2: Product: USB2.0 Hub
[    1.453589] usb 1-2: Manufacturer: VIA Labs, Inc.
[    1.461722] hub 1-2:1.0: USB hub found
[    1.464653] hub 1-2:1.0: 4 ports detected
[    1.478002] ata2: SATA link down (SStatus 0 SControl 300)
[    1.551281] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[    1.565919] usb 2-1: LPM exit latency is zeroed, disabling LPM.
[    1.567934] usb 2-1: Int endpoint with wBytesPerInterval of 1024 in config 1 interface 4 altsetting 0 ep 135: setting to 262
[    1.570171] usb 2-1: New USB device found, idVendor=07ca, idProduct=0553, bcdDevice= 3.08
[    1.570600] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.571021] usb 2-1: Product: Live Gamer Ultra-Video
[    1.571447] usb 2-1: Manufacturer: AVerMedia
[    1.571849] usb 2-1: SerialNumber: 5202584700069
[    1.593242] hid-generic 0003:07CA:0553.0001: hiddev96,hidraw0: USB HID v1.11 Device [AVerMedia Live Gamer Ultra-Video] on usb-0000:02:00.0-1/input4
[    1.680424] usb 1-10: new full-speed USB device number 3 using xhci_hcd
[    1.793825] ata3: SATA link down (SStatus 0 SControl 300)
[    1.816546] tsc: Refined TSC clocksource calibration: 3693.060 MHz
[    1.817293] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6a77744cfd5, max_idle_ns: 881590969987 ns
[    1.817956] clocksource: Switched to clocksource tsc
[    1.990567] usb 1-10: New USB device found, idVendor=0b05, idProduct=1872, bcdDevice= 2.00
[    1.991142] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.991688] usb 1-10: Product: AURA LED Controller
[    1.992236] usb 1-10: Manufacturer: AsusTek Computer Inc.
[    1.992802] usb 1-10: SerialNumber: 00000000001A
[    2.014233] hid-generic 0003:0B05:1872.0002: hiddev97,hidraw1: USB HID v1.11 Device [AsusTek Computer Inc. AURA LED Controller] on usb-0000:02:00.0-10/input0
[    2.047198] usb 2-2: new SuperSpeed Gen 1 USB device number 3 using xhci_hcd
[    2.105807] ata4: SATA link down (SStatus 0 SControl 300)
[    2.150523] usb 2-2: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    2.151208] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.151845] usb 2-2: Product: USB3.0 Hub
[    2.152454] usb 2-2: Manufacturer: VIA Labs, Inc.
[    2.161305] hub 2-2:1.0: USB hub found
[    2.162261] hub 2-2:1.0: 4 ports detected
[    2.228419] usb 1-2.1: new high-speed USB device number 4 using xhci_hcd
[    2.352819] usb 1-2.1: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    2.353751] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.354572] usb 1-2.1: Product: USB2.0 Hub
[    2.355200] usb 1-2.1: Manufacturer: VIA Labs, Inc.
[    2.364819] hub 1-2.1:1.0: USB hub found
[    2.367790] hub 1-2.1:1.0: 4 ports detected
[    2.451404] usb 1-12: new full-speed USB device number 5 using xhci_hcd
[    2.576471] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.577878] ata5.00: ATA-8: OCZ-VECTOR150, 1.2, max UDMA/133
[    2.578525] ata5.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.579879] ata5.00: configured for UDMA/133
[    2.581426] scsi 4:0:0:0: Direct-Access     ATA      OCZ-VECTOR150    1.2  PQ: 0 ANSI: 5
[    2.582913] sd 4:0:0:0: Attached scsi generic sg0 type 0
[    2.583117] sd 4:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/224 GiB)
[    2.584249] sd 4:0:0:0: [sda] Write Protect is off
[    2.584894] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.584933] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.587642]  sda: sda1 sda2
[    2.589962] sd 4:0:0:0: [sda] Attached SCSI disk
[    2.682612] usb 1-12: New USB device found, idVendor=0b05, idProduct=185c, bcdDevice= 1.10
[    2.683559] usb 1-12: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.684447] usb 1-12: Product: Bluetooth Radio 
[    2.685069] usb 1-12: Manufacturer: Realtek 
[    2.685679] usb 1-12: SerialNumber: 00e04c000001
[    2.745423] usb 1-2.2: new full-speed USB device number 6 using xhci_hcd
[    3.048425] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.051938] usb 2-2.1: new SuperSpeed Gen 1 USB device number 4 using xhci_hcd
[    3.052404] ata6.00: ATA-10: ST12000NE0007-2GT116, EN01, max UDMA/133
[    3.053463] ata6.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    3.057081] ata6.00: configured for UDMA/133
[    3.057909] scsi 5:0:0:0: Direct-Access     ATA      ST12000NE0007-2G EN01 PQ: 0 ANSI: 5
[    3.058820] sd 5:0:0:0: Attached scsi generic sg1 type 0
[    3.058865] sd 5:0:0:0: [sdb] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[    3.060045] sd 5:0:0:0: [sdb] 4096-byte physical blocks
[    3.060662] sd 5:0:0:0: [sdb] Write Protect is off
[    3.061286] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.061311] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.079382] sd 5:0:0:0: [sdb] Attached SCSI disk
[    3.142893] usb 1-2.2: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.07
[    3.143794] usb 1-2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.144579] usb 1-2.2: Product: USB Receiver
[    3.145143] usb 1-2.2: Manufacturer: Logitech
[    3.152365] usb 2-2.1: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    3.152934] usb 2-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.153500] usb 2-2.1: Product: USB3.0 Hub
[    3.154062] usb 2-2.1: Manufacturer: VIA Labs, Inc.
[    3.181708] hub 2-2.1:1.0: USB hub found
[    3.183138] hub 2-2.1:1.0: 4 ports detected
[    3.208838] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.0/0003:046D:C52B.0003/input/input2
[    3.263176] hid-generic 0003:046D:C52B.0003: input,hidraw2: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input0
[    3.285081] usb 1-2.1.2: new low-speed USB device number 7 using xhci_hcd
[    3.325325] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0004/input/input3
[    3.326886] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0004/input/input4
[    3.368648] ata7: SATA link down (SStatus 0 SControl 300)
[    3.380320] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0004/input/input5
[    3.381956] hid-generic 0003:046D:C52B.0004: input,hiddev98,hidraw3: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input1
[    3.419620] hid-generic 0003:046D:C52B.0005: hiddev99,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input2
[    3.609941] usb 1-2.1.2: New USB device found, idVendor=046d, idProduct=c326, bcdDevice=79.00
[    3.611083] usb 1-2.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.611979] usb 1-2.1.2: Product: USB Keyboard
[    3.612735] usb 1-2.1.2: Manufacturer: Logitech
[    3.667832] usb 2-2.3: new SuperSpeed Gen 1 USB device number 5 using xhci_hcd
[    3.679636] ata8: SATA link down (SStatus 0 SControl 300)
[    3.683236] Freeing unused decrypted memory: 2040K
[    3.684989] Freeing unused kernel image memory: 4948K
[    3.685811] Write protecting the kernel read-only data: 22528k
[    3.688051] Freeing unused kernel image memory: 2036K
[    3.689312] Freeing unused kernel image memory: 1480K
[    3.697114] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    3.697860] rodata_test: all tests were successful
[    3.698610] Run /init as init process
[    3.724322] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.0/0003:046D:C326.0006/input/input7
[    3.725977] efivars: duplicate variable: DeploymentModeNv-97e8965f-c761-4f48-b6e4-9ffa9cb2a2d6
[    3.729179] systemd[1]: systemd v243~rc1-1.fc31 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=hybrid)
[    3.743086] systemd[1]: Detected architecture x86-64.
[    3.743895] systemd[1]: Running in initial RAM disk.
[    3.752097] systemd[1]: Set hostname to <localhost.localdomain>.
[    3.768414] usb 2-2.3: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    3.769278] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.770131] usb 2-2.3: Product: USB3.0 Hub
[    3.770974] usb 2-2.3: Manufacturer: VIA Labs, Inc.
[    3.780367] hid-generic 0003:046D:C326.0006: input,hidraw5: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:02:00.0-2.1.2/input0
[    3.782459] hub 2-2.3:1.0: USB hub found
[    3.783917] hub 2-2.3:1.0: 4 ports detected
[    3.816255] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.1/0003:046D:C326.0007/input/input8
[    3.824081] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice.
[    3.826352] systemd[1]: Reached target Slices.
[    3.828448] systemd[1]: Reached target Swap.
[    3.830565] systemd[1]: Reached target Timers.
[    3.832719] systemd[1]: Listening on Journal Audit Socket.
[    3.835011] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.869313] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.1/0003:046D:C326.0007/input/input9
[    3.871067] hid-generic 0003:046D:C326.0007: input,hiddev100,hidraw6: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:02:00.0-2.1.2/input1
[    3.875043] usb 1-2.3: new high-speed USB device number 8 using xhci_hcd
[    3.997922] usb 1-2.3: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    3.998647] usb 1-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.999354] usb 1-2.3: Product: USB2.0 Hub
[    4.000039] usb 1-2.3: Manufacturer: VIA Labs, Inc.
[    4.013019] hub 1-2.3:1.0: USB hub found
[    4.016927] hub 1-2.3:1.0: 4 ports detected
[    4.100066] usb 2-2.4: new SuperSpeed Gen 1 USB device number 6 using xhci_hcd
[    4.130380] audit: type=1130 audit(1564872103.480:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.200465] usb 2-2.4: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[    4.201171] usb 2-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.201837] usb 2-2.4: Product: USB3.0 Hub
[    4.202542] usb 2-2.4: Manufacturer: VIA Labs, Inc.
[    4.204344] audit: type=1130 audit(1564872103.554:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.214441] hub 2-2.4:1.0: USB hub found
[    4.215705] hub 2-2.4:1.0: 4 ports detected
[    4.259289] mount (471) used greatest stack depth: 13144 bytes left
[    4.289045] usb 1-2.4: new high-speed USB device number 9 using xhci_hcd
[    4.409976] usb 1-2.4: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    4.410689] usb 1-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.411400] usb 1-2.4: Product: USB2.0 Hub
[    4.412111] usb 1-2.4: Manufacturer: VIA Labs, Inc.
[    4.426143] hub 1-2.4:1.0: USB hub found
[    4.429978] hub 1-2.4:1.0: 4 ports detected
[    4.450749] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    4.462295] audit: type=1130 audit(1564872103.812:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.474114] nvme nvme0: pci function 0000:01:00.0
[    4.475607] dca service started, version 1.12.1
[    4.493350] audit: type=1130 audit(1564872103.843:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.511020] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.6.0-k
[    4.512109] igb: Copyright (c) 2007-2014 Intel Corporation.
[    4.517054] usb 1-2.3.1: new full-speed USB device number 10 using xhci_hcd
[    4.541251] pps pps0: new PPS source ptp0
[    4.542311] igb 0000:04:00.0: added PHC on eth0
[    4.542313] igb 0000:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    4.542315] igb 0000:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 4c:ed:fb:75:5b:ab
[    4.542316] igb 0000:04:00.0: eth0: PBA No: FFFFFF-0FF
[    4.542317] igb 0000:04:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[    4.550609] igb 0000:04:00.0 enp4s0: renamed from eth0
[    4.554620] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    4.640427] logitech-djreceiver 0003:046D:C52B.0005: hiddev98,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-2.2/input2
[    4.686913] nvme nvme0: 31/0/0 default/read/poll queues
[    4.691179]  nvme0n1: p1 p2 p3
[    4.723232] PM: Image not found (code -22)
[    4.726895] audit: type=1130 audit(1564872104.076:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-disk-by\x2duuid-9c126bde\x2dfad1\x2d467c\x2d8a1b\x2d472db1d9a6a8 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.729285] audit: type=1131 audit(1564872104.076:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-disk-by\x2duuid-9c126bde\x2dfad1\x2d467c\x2d8a1b\x2d472db1d9a6a8 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.747995] [drm] amdgpu kernel modesetting enabled.
[    4.748901] audit: type=1130 audit(1564872104.098:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.748921] Parsing CRAT table with 1 nodes
[    4.751576] Ignoring ACPI CRAT on non-APU system
[    4.752421] Virtual CRAT table created for CPU
[    4.753633] Parsing CRAT table with 1 nodes
[    4.753661] Creating topology SYSFS entries
[    4.755951] Topology: Add CPU node
[    4.756750] Finished initializing topology
[    4.757722] amdgpu 0000:0b:00.0: remove_conflicting_pci_framebuffers: bar 0: 0xe0000000 -> 0xefffffff
[    4.758539] amdgpu 0000:0b:00.0: remove_conflicting_pci_framebuffers: bar 2: 0xf0000000 -> 0xf01fffff
[    4.759385] amdgpu 0000:0b:00.0: remove_conflicting_pci_framebuffers: bar 5: 0xfcc00000 -> 0xfcc7ffff
[    4.760187] checking generic (e0000000 300000) vs hw (e0000000 10000000)
[    4.760978] fb0: switching to amdgpudrmfb from EFI VGA
[    4.762373] Console: switching to colour dummy device 80x25
[    4.762698] amdgpu 0000:0b:00.0: vgaarb: deactivate vga console
[    4.763516] [drm] initializing kernel modesetting (VEGA20 0x1002:0x66AF 0x1002:0x081E 0xC1).
[    4.763569] [drm] register mmio base: 0xFCC00000
[    4.763578] [drm] register mmio size: 524288
[    4.763602] [drm] add ip block number 0 <soc15_common>
[    4.763610] [drm] add ip block number 1 <gmc_v9_0>
[    4.763617] [drm] add ip block number 2 <vega10_ih>
[    4.763625] [drm] add ip block number 3 <psp>
[    4.763632] [drm] add ip block number 4 <gfx_v9_0>
[    4.763640] [drm] add ip block number 5 <sdma_v4_0>
[    4.763648] [drm] add ip block number 6 <powerplay>
[    4.763655] [drm] add ip block number 7 <dm>
[    4.763662] [drm] add ip block number 8 <uvd_v7_0>
[    4.763670] [drm] add ip block number 9 <vce_v4_0>
[    4.763708] amdgpu 0000:0b:00.0: No more image in the PCI ROM
[    4.763734] ATOM BIOS: 113-D3600200-106
[    4.763942] [drm] UVD(0) is enabled in VM mode
[    4.763950] [drm] UVD(1) is enabled in VM mode
[    4.763957] [drm] UVD(0) ENC is enabled in VM mode
[    4.763964] [drm] UVD(1) ENC is enabled in VM mode
[    4.763972] [drm] VCE enabled in VM mode
[    4.764092] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    4.764113] amdgpu 0000:0b:00.0: VRAM: 16368M 0x0000008000000000 - 0x00000083FEFFFFFF (16368M used)
[    4.764127] amdgpu 0000:0b:00.0: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[    4.764140] amdgpu 0000:0b:00.0: AGP: 267894784M 0x0000008400000000 - 0x0000FFFFFFFFFFFF
[    4.764158] [drm] Detected VRAM RAM=16368M, BAR=256M
[    4.764166] [drm] RAM width 4096bits HBM
[    4.764404] [TTM] Zone  kernel: Available graphics memory: 16382444 KiB
[    4.764432] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    4.764441] [TTM] Initializing pool allocator
[    4.764463] [TTM] Initializing DMA pool allocator
[    4.764702] [drm] amdgpu: 16368M of VRAM memory ready
[    4.764717] [drm] amdgpu: 16368M of GTT memory ready.
[    4.764780] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    4.764962] [drm] PCIE GART of 512M enabled (table at 0x0000008000300000).
[    4.765545] amdgpu 0000:0b:00.0: Direct firmware load for amdgpu/vega20_ta.bin failed with error -2
[    4.765561] amdgpu 0000:0b:00.0: psp v11.0: Failed to load firmware "amdgpu/vega20_ta.bin"
[    4.768557] [drm] use_doorbell being set to: [true]
[    4.769997] [drm] use_doorbell being set to: [true]
[    4.770167] amdgpu: [powerplay] hwmgr_sw_init smu backed is vega20_smu
[    4.770482] [drm] Found UVD firmware ENC: 1.1 DEC: .23 Family ID: 19
[    4.770502] [drm] PSP loading UVD firmware
[    4.771621] [drm] Found VCE firmware Version: 55.5 Binary ID: 4
[    4.771640] [drm] PSP loading VCE firmware
[    4.774229] input: Logitech Unifying Device. Wireless PID:4026 Keyboard as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input10
[    4.774916] input: Logitech Unifying Device. Wireless PID:4026 Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input11
[    4.775197] input: Logitech Unifying Device. Wireless PID:4026 Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input12
[    4.775473] hid-generic 0003:046D:4026.0008: input,hidraw3: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:4026] on usb-0000:02:00.0-2.2/input2:1
[    4.901016] usb 1-2.3.1: New USB device found, idVendor=045e, idProduct=02e3, bcdDevice= 2.03
[    4.901045] usb 1-2.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.901063] usb 1-2.3.1: Product: Controller
[    4.901075] usb 1-2.3.1: Manufacturer: Microsoft
[    4.901087] usb 1-2.3.1: SerialNumber: 7EED8DBD807F
[    5.322658] [drm] reserve 0x400000 from 0x8000c00000 for PSP TMR
[    5.427192] input: Logitech T400 as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input16
[    5.427781] logitech-hidpp-device 0003:046D:4026.0008: input,hidraw3: USB HID v1.11 Keyboard [Logitech T400] on usb-0000:02:00.0-2.2/input2:1
[    5.455075] [drm] Display Core initialized with v3.2.35!
[    5.551646] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.551655] [drm] Driver supports precise vblank timestamp query.
[    5.593929] [drm] UVD and UVD ENC initialized successfully.
[    5.694342] [drm] VCE initialized successfully.
[    5.697254] kfd kfd: Allocated 3969056 bytes on gart
[    5.698509] Virtual CRAT table created for GPU
[    5.698519] Parsing CRAT table with 1 nodes
[    5.698551] Creating topology SYSFS entries
[    5.699332] Topology: Add dGPU node [0x66af:0x1002]
[    5.699344] kfd kfd: added device 1002:66af
[    5.704224] [drm] fb mappable at 0xE1000000
[    5.704249] [drm] vram apper at 0xE0000000
[    5.704256] [drm] size 33177600
[    5.704261] [drm] fb depth is 24
[    5.704267] [drm]    pitch is 15360
[    5.704551] fbcon: amdgpudrmfb (fb0) is primary device
[    5.754892] Console: switching to colour frame buffer device 480x135
[    5.769049] amdgpu 0000:0b:00.0: fb0: amdgpudrmfb frame buffer device
[    5.775377] amdgpu 0000:0b:00.0: ring gfx uses VM inv eng 0 on hub 0
[    5.775379] amdgpu 0000:0b:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    5.775381] amdgpu 0000:0b:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    5.775382] amdgpu 0000:0b:00.0: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[    5.775383] amdgpu 0000:0b:00.0: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[    5.775384] amdgpu 0000:0b:00.0: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[    5.775386] amdgpu 0000:0b:00.0: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[    5.775387] amdgpu 0000:0b:00.0: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[    5.775388] amdgpu 0000:0b:00.0: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[    5.775389] amdgpu 0000:0b:00.0: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[    5.775390] amdgpu 0000:0b:00.0: ring sdma0 uses VM inv eng 0 on hub 1
[    5.775391] amdgpu 0000:0b:00.0: ring page0 uses VM inv eng 1 on hub 1
[    5.775392] amdgpu 0000:0b:00.0: ring sdma1 uses VM inv eng 4 on hub 1
[    5.775393] amdgpu 0000:0b:00.0: ring page1 uses VM inv eng 5 on hub 1
[    5.775394] amdgpu 0000:0b:00.0: ring uvd_0 uses VM inv eng 6 on hub 1
[    5.775395] amdgpu 0000:0b:00.0: ring uvd_enc_0.0 uses VM inv eng 7 on hub 1
[    5.775397] amdgpu 0000:0b:00.0: ring uvd_enc_0.1 uses VM inv eng 8 on hub 1
[    5.775398] amdgpu 0000:0b:00.0: ring uvd_1 uses VM inv eng 9 on hub 1
[    5.775399] amdgpu 0000:0b:00.0: ring uvd_enc_1.0 uses VM inv eng 10 on hub 1
[    5.775400] amdgpu 0000:0b:00.0: ring uvd_enc_1.1 uses VM inv eng 11 on hub 1
[    5.775401] amdgpu 0000:0b:00.0: ring vce0 uses VM inv eng 12 on hub 1
[    5.775402] amdgpu 0000:0b:00.0: ring vce1 uses VM inv eng 13 on hub 1
[    5.775403] amdgpu 0000:0b:00.0: ring vce2 uses VM inv eng 14 on hub 1
[    5.775404] [drm] ECC is not present.
[    5.775405] [drm] SRAM ECC is not present.
[    5.803528] setfont (551) used greatest stack depth: 12440 bytes left
[    6.256538] Detected AMDGPU DF Counters. # of Counters = 4.
[    6.256666] [drm] Initialized amdgpu 3.33.0 20150101 for 0000:0b:00.0 on minor 0
[    6.486394] audit: type=1130 audit(1564872105.836:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.510710] audit: type=1130 audit(1564872105.860:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.523791] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: (null)
[    6.561041] systemd-fstab-g (567) used greatest stack depth: 12120 bytes left
[    6.686647] audit: type=1130 audit(1564872106.036:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.686655] audit: type=1131 audit(1564872106.036:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.741121] audit: type=1130 audit(1564872106.091:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.753596] audit: type=1131 audit(1564872106.103:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.757052] audit: type=1131 audit(1564872106.107:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.760841] audit: type=1131 audit(1564872106.110:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.762418] audit: type=1131 audit(1564872106.112:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.764225] audit: type=1131 audit(1564872106.114:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.767184] systemd-udevd (462) used greatest stack depth: 10840 bytes left
[    6.880707] systemd-journald[383]: Received SIGTERM from PID 1 (systemd).
[    6.935671] printk: systemd: 22 output lines suppressed due to ratelimiting
[    7.378386] SELinux:  policy capability network_peer_controls=1
[    7.378421] SELinux:  policy capability open_perms=1
[    7.378423] SELinux:  policy capability extended_socket_class=1
[    7.378425] SELinux:  policy capability always_check_network=0
[    7.378426] SELinux:  policy capability cgroup_seclabel=1
[    7.378428] SELinux:  policy capability nnp_nosuid_transition=1
[    7.438498] systemd[1]: Successfully loaded SELinux policy in 465.212ms.
[    7.443014] systemd[1]: RTC configured in localtime, applying delta of 300 minutes to system time.
[    7.493516] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 33.856ms.
[    7.495317] systemd[1]: systemd v243~rc1-1.fc31 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=hybrid)
[    7.508087] systemd[1]: Detected architecture x86-64.
[    7.509512] systemd[1]: Set hostname to <localhost.localdomain>.
[    7.597909] systemd[1]: unit_file_find_fragment: getty@tty1.service has alias autovt@tty1.service
[    7.603280] systemd[1]: /usr/lib/systemd/system/sssd.service:12: PIDFile= references a path below legacy directory /var/run/, updating /var/run/sssd.pid → /run/sssd.pid; please update the unit file accordingly.
[    7.604939] systemd[1]: /usr/lib/systemd/system/iscsid.service:11: PIDFile= references a path below legacy directory /var/run/, updating /var/run/iscsid.pid → /run/iscsid.pid; please update the unit file accordingly.
[    7.605071] systemd[1]: /usr/lib/systemd/system/iscsiuio.service:13: PIDFile= references a path below legacy directory /var/run/, updating /var/run/iscsiuio.pid → /run/iscsiuio.pid; please update the unit file accordingly.
[    7.606137] systemd[1]: /usr/lib/systemd/system/virtlockd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlockd-sock → /run/libvirt/virtlockd-sock; please update the unit file accordingly.
[    7.606449] systemd[1]: /usr/lib/systemd/system/virtlockd-admin.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlockd-admin-sock → /run/libvirt/virtlockd-admin-sock; please update the unit file accordingly.
[    7.606634] systemd[1]: /usr/lib/systemd/system/virtlogd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlogd-sock → /run/libvirt/virtlogd-sock; please update the unit file accordingly.
[    7.700130] Adding 67108860k swap on /dev/nvme0n1p3.  Priority:-2 extents:1 across:67108860k SSFS
[    7.716778] EXT4-fs (nvme0n1p2): re-mounted. Opts: (null)
[    7.877664] systemd-journald[662]: File /run/log/journal/d9a0b11169ff4ad6a0198ce0a8a8b565/system.journal corrupted or uncleanly shut down, renaming and replacing.
[    7.898855] systemd-journald[662]: Received client request to flush runtime journal.
[    8.089567] acpi_cpufreq: overriding BIOS provided _PSD data
[    8.209245] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    8.209251] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    8.210325] ccp 0000:0c:00.2: enabling device (0000 -> 0002)
[    8.214846] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    8.215139] sp5100-tco sp5100-tco: Using 0xfed80b00 for watchdog MMIO address
[    8.215152] sp5100-tco sp5100-tco: Watchdog hardware is disabled
[    8.217909] ccp 0000:0c:00.2: ccp enabled
[    8.262418] mc: Linux media interface: v0.10
[    8.287585] Bluetooth: Core ver 2.22
[    8.287639] NET: Registered protocol family 31
[    8.287642] Bluetooth: HCI device and connection manager initialized
[    8.287680] Bluetooth: HCI socket layer initialized
[    8.287686] Bluetooth: L2CAP socket layer initialized
[    8.287717] Bluetooth: SCO socket layer initialized
[    8.303494] asus_wmi: ASUS WMI generic driver loaded
[    8.303742] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    8.303852] input: Microsoft X-Box One Elite pad as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.3/1-2.3.1/1-2.3.1:1.0/input/input17
[    8.304307] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    8.304941] usbcore: registered new interface driver xpad
[    8.328809] videodev: Linux video capture interface: v2.00
[    8.329794] asus_wmi: Initialization: 0x0
[    8.329898] asus_wmi: BIOS WMI version: 0.9
[    8.330132] asus_wmi: SFUN value: 0x0
[    8.330137] eeepc-wmi eeepc-wmi: Detected ASUSWMI, use DCTS
[    8.331509] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input18
[    8.331792] asus_wmi: Number of fans: 1
[    8.340596] usbcore: registered new interface driver btusb
[    8.345319] Bluetooth: hci0: RTL: rtl: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8822

[    8.348147] Bluetooth: hci0: RTL: rom_version status=0 version=2

[    8.348154] Bluetooth: hci0: RTL: rtl: loading rtl_bt/rtl8822b_fw.bin

[    8.348900] Bluetooth: hci0: RTL: rtl: loading rtl_bt/rtl8822b_config.bin

[    8.349233] Bluetooth: hci0: RTL: cfg_sz 14, total sz 20270

[    8.373967] uvcvideo: Unknown video format 30313050-0000-0010-8000-00aa00389b71
[    8.373976] uvcvideo: Found UVC 1.00 device Live Gamer Ultra-Video (07ca:0553)
[    8.453643] uvcvideo 2-1:1.0: Entity type for entity Extension 3 was not initialized!
[    8.453675] uvcvideo 2-1:1.0: Entity type for entity Processing 2 was not initialized!
[    8.453679] uvcvideo 2-1:1.0: Entity type for entity Camera 1 was not initialized!
[    8.453877] input: Live Gamer Ultra-Video: Live Ga as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb2/2-1/2-1:1.0/input/input19
[    8.454289] usbcore: registered new interface driver uvcvideo
[    8.454294] USB Video Class driver (1.1.1)
[    8.454793] snd_hda_intel 0000:0b:00.1: Handle vga_switcheroo audio client
[    8.455543] snd_hda_intel 0000:0d:00.3: enabling device (0000 -> 0002)
[    8.471407] usbcore: registered new interface driver snd-usb-audio
[    8.481127] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input20
[    8.482155] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input21
[    8.482658] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input22
[    8.483204] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input23
[    8.483570] input: HD-Audio Generic HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input24
[    8.483943] input: HD-Audio Generic HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input25
[    8.490078] rtw_pci 0000:05:00.0: enabling device (0000 -> 0003)
[    8.499322] kvm: Nested Virtualization enabled
[    8.499356] kvm: Nested Paging enabled
[    8.499359] SVM: Virtual VMLOAD VMSAVE supported
[    8.499361] SVM: Virtual GIF supported
[    8.504129] MCE: In-kernel MCE decoding enabled.
[    8.518344] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    8.530108] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.530114] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    8.531009] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC1220: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    8.531021] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    8.531060] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    8.531067] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    8.531072] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    8.531081] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[    8.531092] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[    8.531098] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[    8.539907] rtw_pci 0000:05:00.0 wlp5s0: renamed from wlan0
[    8.546829] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input26
[    8.547171] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input27
[    8.547432] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input28
[    8.547639] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input29
[    8.547832] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input30
[    8.585053] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.585060] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    8.632720] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.632729] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    8.682525] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.682533] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    8.729435] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.729443] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    8.768184] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.768190] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    8.808828] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.808833] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    8.837370] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.837378] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    8.875368] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.875375] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    8.911306] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.911317] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    8.941231] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.941239] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    8.976168] EDAC amd64: Node 0: DRAM ECC disabled.
[    8.976175] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    9.011398] EDAC amd64: Node 0: DRAM ECC disabled.
[    9.011408] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    9.039180] EDAC amd64: Node 0: DRAM ECC disabled.
[    9.039188] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    9.068128] EDAC amd64: Node 0: DRAM ECC disabled.
[    9.068135] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    9.097102] EDAC amd64: Node 0: DRAM ECC disabled.
[    9.097110] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    9.626888] EXT4-fs (sdb): mounted filesystem with ordered data mode. Opts: (null)
[    9.803655] RPC: Registered named UNIX socket transport module.
[    9.803692] RPC: Registered udp transport module.
[    9.803697] RPC: Registered tcp transport module.
[    9.803701] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   10.088411] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   10.088417] Bluetooth: BNEP filters: protocol multicast
[   10.088426] Bluetooth: BNEP socket layer initialized
[   11.495691] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   11.505611] tun: Universal TUN/TAP device driver, 1.6
[   11.508899] virbr0: port 1(virbr0-nic) entered blocking state
[   11.508934] virbr0: port 1(virbr0-nic) entered disabled state
[   11.509423] device virbr0-nic entered promiscuous mode
[   12.167434] virbr0: port 1(virbr0-nic) entered blocking state
[   12.167469] virbr0: port 1(virbr0-nic) entered listening state
[   12.241235] virbr0: port 1(virbr0-nic) entered disabled state
[   13.503548] igb 0000:04:00.0 enp4s0: igb: enp4s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   13.609253] IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0: link becomes ready
[   28.213943] logitech-hidpp-device 0003:046D:4026.0008: HID++ 2.0 device connected.
[   31.422281] rfkill: input handler disabled
[   32.204458] Bluetooth: RFCOMM TTY layer initialized
[   32.204483] Bluetooth: RFCOMM socket layer initialized
[   32.204547] Bluetooth: RFCOMM ver 1.11
[ 1566.614850] DMA-API: cacheline tracking ENOMEM, dma-debug disabled
[ 1577.340629] rfkill: input handler enabled
[ 1590.572473] rfkill: input handler disabled
[ 1599.833037] rfkill: input handler enabled
[ 1613.436657] rfkill: input handler disabled
[ 1773.959991] nf_conntrack: default automatic helper assignment has been turned off for security reasons and CT-based  firewall rule not found. Use the iptables CT target to attach helpers instead.
[ 3225.313209] Xorg: page allocation failure: order:4, mode:0x40dc0(GFP_KERNEL|__GFP_COMP|__GFP_ZERO), nodemask=(null),cpuset=/,mems_allowed=0
[ 3225.313300] CPU: 2 PID: 12717 Comm: Xorg Not tainted 5.3.0-0.rc2.git4.1.fc31.x86_64 #1
[ 3225.313303] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[ 3225.313306] Call Trace:
[ 3225.313315]  dump_stack+0x85/0xc0
[ 3225.313321]  warn_alloc.cold+0x7b/0xfb
[ 3225.313329]  ? _cond_resched+0x15/0x30
[ 3225.313333]  ? __alloc_pages_direct_compact+0x181/0x1a0
[ 3225.313341]  __alloc_pages_slowpath+0xfe1/0x1020
[ 3225.313348]  ? __lock_acquire+0x247/0x1910
[ 3225.313365]  __alloc_pages_nodemask+0x37f/0x400
[ 3225.313374]  kmalloc_order+0x20/0x60
[ 3225.313378]  kmalloc_order_trace+0x1d/0x120
[ 3225.313498]  dc_create_state+0x1f/0x60 [amdgpu]
[ 3225.313582]  amdgpu_dm_atomic_commit_tail+0xbd7/0x1cf0 [amdgpu]
[ 3225.313596]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.313615]  ? debug_check_no_obj_freed+0x107/0x1d8
[ 3225.313685]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.313778]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.313786]  ? kfree+0x1b6/0x3b0
[ 3225.313860]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.313875]  ? __lock_acquire+0x247/0x1910
[ 3225.313891]  ? find_held_lock+0x32/0x90
[ 3225.313898]  ? mark_held_locks+0x50/0x80
[ 3225.313907]  ? _raw_spin_unlock_irq+0x29/0x40
[ 3225.313911]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.313921]  ? _raw_spin_unlock_irq+0x29/0x40
[ 3225.313928]  ? wait_for_completion_timeout+0x75/0x190
[ 3225.313958]  ? commit_tail+0x3c/0x70 [drm_kms_helper]
[ 3225.313972]  commit_tail+0x3c/0x70 [drm_kms_helper]
[ 3225.313984]  drm_atomic_helper_commit+0xe3/0x150 [drm_kms_helper]
[ 3225.313994]  drm_atomic_helper_disable_plane+0x82/0xb0 [drm_kms_helper]
[ 3225.314043]  drm_mode_cursor_universal+0x12c/0x240 [drm]
[ 3225.314147]  drm_mode_cursor_common+0xd8/0x230 [drm]
[ 3225.314194]  ? drm_mode_setplane+0x1a0/0x1a0 [drm]
[ 3225.314209]  drm_mode_cursor_ioctl+0x4d/0x70 [drm]
[ 3225.314244]  drm_ioctl_kernel+0xaa/0xf0 [drm]
[ 3225.314260]  drm_ioctl+0x208/0x390 [drm]
[ 3225.314275]  ? drm_mode_setplane+0x1a0/0x1a0 [drm]
[ 3225.314297]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.314376]  amdgpu_drm_ioctl+0x49/0x80 [amdgpu]
[ 3225.314384]  do_vfs_ioctl+0x411/0x750
[ 3225.314395]  ksys_ioctl+0x5e/0x90
[ 3225.314413]  __x64_sys_ioctl+0x16/0x20
[ 3225.314417]  do_syscall_64+0x5c/0xb0
[ 3225.314422]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[ 3225.314425] RIP: 0033:0x7fdde5b4007b
[ 3225.314477] Code: 0f 1e fa 48 8b 05 0d 9e 0c 00 64 c7 00 26 00 00 00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d dd 9d 0c 00 f7 d8 64 89 01 48
[ 3225.314485] RSP: 002b:00007ffec481a6d8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3225.314490] RAX: ffffffffffffffda RBX: 00007ffec481a710 RCX: 00007fdde5b4007b
[ 3225.314494] RDX: 00007ffec481a710 RSI: 00000000c01c64a3 RDI: 000000000000000e
[ 3225.314496] RBP: 00000000c01c64a3 R08: 0000000000000080 R09: 0000000000000000
[ 3225.314499] R10: 0000000000000004 R11: 0000000000000246 R12: 00000000000006f1
[ 3225.314502] R13: 000000000000000e R14: 000056201b5b5490 R15: 000056201bbe7820
[ 3225.314992] Mem-Info:
[ 3225.315020] active_anon:2784941 inactive_anon:601242 isolated_anon:0
                active_file:1926790 inactive_file:1763177 isolated_file:0
                unevictable:16 dirty:2244 writeback:0 unstable:0
                slab_reclaimable:542021 slab_unreclaimable:135707
                mapped:525720 shmem:421336 pagetables:32066 bounce:0
                free:81471 free_pcp:299 free_cma:0
[ 3225.315026] Node 0 active_anon:11139764kB inactive_anon:2404968kB active_file:7707160kB inactive_file:7052264kB unevictable:64kB isolated(anon):0kB isolated(file):0kB mapped:2102880kB dirty:8976kB writeback:0kB shmem:1685344kB shmem_thp: 0kB shmem_pmdmapped: 0kB anon_thp: 2222080kB writeback_tmp:0kB unstable:0kB all_unreclaimable? no
[ 3225.315030] Node 0 DMA free:15892kB min:32kB low:44kB high:56kB active_anon:0kB inactive_anon:0kB active_file:0kB inactive_file:0kB unevictable:0kB writepending:0kB present:15996kB managed:15896kB mlocked:0kB kernel_stack:0kB pagetables:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB
[ 3225.315036] lowmem_reserve[]: 0 3393 31872 31872 31872
[ 3225.315042] Node 0 DMA32 free:121024kB min:7188kB low:10660kB high:14132kB active_anon:544688kB inactive_anon:161072kB active_file:730232kB inactive_file:1649412kB unevictable:0kB writepending:120kB present:3575768kB managed:3575580kB mlocked:0kB kernel_stack:432kB pagetables:2460kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB
[ 3225.315048] lowmem_reserve[]: 0 0 28479 28479 28479
[ 3225.315053] Node 0 Normal free:188968kB min:187332kB low:216492kB high:245652kB active_anon:10594804kB inactive_anon:2243364kB active_file:6977628kB inactive_file:5403916kB unevictable:64kB writepending:8856kB present:29871616kB managed:29173412kB mlocked:64kB kernel_stack:32704kB pagetables:125804kB bounce:0kB free_pcp:1196kB local_pcp:0kB free_cma:0kB
[ 3225.315059] lowmem_reserve[]: 0 0 0 0 0
[ 3225.315065] Node 0 DMA: 1*4kB (U) 0*8kB 1*16kB (U) 0*32kB 2*64kB (U) 1*128kB (U) 1*256kB (U) 0*512kB 1*1024kB (U) 1*2048kB (M) 3*4096kB (M) = 15892kB
[ 3225.315157] Node 0 DMA32: 867*4kB (UME) 1244*8kB (UME) 1093*16kB (UM) 525*32kB (ME) 219*64kB (UME) 74*128kB (UME) 25*256kB (UM) 6*512kB (UM) 4*1024kB (ME) 6*2048kB (UM) 6*4096kB (U) = 121628kB
[ 3225.315254] Node 0 Normal: 3277*4kB (UME) 1459*8kB (UME) 2012*16kB (UME) 1869*32kB (UMEH) 742*64kB (UMEH) 178*128kB (UMEH) 14*256kB (UM) 0*512kB 0*1024kB 0*2048kB 0*4096kB = 190636kB
[ 3225.315269] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=1048576kB
[ 3225.315272] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
[ 3225.315275] 4111448 total pagecache pages
[ 3225.315288] 103 pages in swap cache
[ 3225.315291] Swap cache stats: add 1859, delete 1756, find 67/126
[ 3225.315294] Free swap  = 67100924kB
[ 3225.315297] Total swap = 67108860kB
[ 3225.315299] 8365845 pages RAM
[ 3225.315302] 0 pages HighMem/MovableOnly
[ 3225.315305] 174623 pages reserved
[ 3225.315307] 0 pages cma reserved
[ 3225.315310] 0 pages hwpoisoned
[ 3225.315325] ------------[ cut here ]------------
[ 3225.315738] WARNING: CPU: 2 PID: 12717 at drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm.c:6109 amdgpu_dm_atomic_commit_tail.cold+0x96/0xe1 [amdgpu]
[ 3225.315742] Modules linked in: macvtap macvlan tap rfcomm xt_CHECKSUM xt_MASQUERADE nf_nat_tftp nf_conntrack_tftp tun bridge stp llc nf_conntrack_netbios_ns nf_conntrack_broadcast xt_CT ip6t_REJECT nf_reject_ipv6 ip6t_rpfilter ipt_REJECT nf_reject_ipv4 xt_conntrack ebtable_nat ip6table_nat ip6table_mangle ip6table_raw ip6table_security iptable_nat nf_nat iptable_mangle iptable_raw iptable_security nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c ip_set nfnetlink ebtable_filter ebtables ip6table_filter ip6_tables iptable_filter cmac bnep sunrpc vfat fat snd_hda_codec_realtek edac_mce_amd snd_hda_codec_generic ledtrig_audio kvm_amd rtwpci snd_hda_codec_hdmi rtw88 kvm snd_hda_intel snd_usb_audio snd_hda_codec mac80211 snd_hda_core snd_usbmidi_lib irqbypass snd_rawmidi uvcvideo snd_hwdep snd_seq videobuf2_vmalloc videobuf2_memops btusb videobuf2_v4l2 crct10dif_pclmul snd_seq_device videobuf2_common btrtl crc32_pclmul eeepc_wmi snd_pcm btbcm btintel asus_wmi xpad snd_timer sparse_keymap
[ 3225.315797]  videodev ff_memless bluetooth joydev ghash_clmulni_intel cfg80211 video snd mc k10temp wmi_bmof soundcore ecdh_generic sp5100_tco ecc rfkill ccp i2c_piix4 libarc4 gpio_amdpt gpio_generic acpi_cpufreq binfmt_misc ip_tables hid_logitech_hidpp amdgpu amd_iommu_v2 gpu_sched ttm drm_kms_helper drm igb crc32c_intel dca i2c_algo_bit hid_logitech_dj nvme nvme_core wmi pinctrl_amd
[ 3225.315974] CPU: 2 PID: 12717 Comm: Xorg Not tainted 5.3.0-0.rc2.git4.1.fc31.x86_64 #1
[ 3225.315977] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[ 3225.316201] RIP: 0010:amdgpu_dm_atomic_commit_tail.cold+0x96/0xe1 [amdgpu]
[ 3225.316234] Code: ff 48 c7 c7 70 81 76 c0 e8 04 77 ac f6 0f 0b 83 7b 08 00 0f 85 f0 62 f1 ff e9 08 63 f1 ff 48 c7 c7 70 81 76 c0 e8 e7 76 ac f6 <0f> 0b 48 8b 85 b8 fd ff ff 31 f6 48 8b b8 f8 53 01 00 e8 42 d5 fd
[ 3225.316238] RSP: 0018:ffffb439c3e37800 EFLAGS: 00010246
[ 3225.316242] RAX: 0000000000000024 RBX: ffffffffc08380b0 RCX: 0000000000000006
[ 3225.316245] RDX: 0000000000000000 RSI: ffff9b0b187c4038 RDI: ffff9b0bba5d9e00
[ 3225.316248] RBP: ffffb439c3e37ab0 R08: 000002eef3c694b7 R09: 0000000000000000
[ 3225.316250] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[ 3225.316253] R13: ffff9b0bb5381000 R14: ffff9b09acc68598 R15: ffff9b09acc68540
[ 3225.316257] FS:  00007fdde56cbf00(0000) GS:ffff9b0bba400000(0000) knlGS:0000000000000000
[ 3225.316259] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3225.316262] CR2: 00007f1b48b29000 CR3: 00000007382ee000 CR4: 00000000003406e0
[ 3225.316265] Call Trace:
[ 3225.316276]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.316287]  ? debug_check_no_obj_freed+0x107/0x1d8
[ 3225.316492]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.316736]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.316743]  ? kfree+0x1b6/0x3b0
[ 3225.316992]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.317008]  ? __lock_acquire+0x247/0x1910
[ 3225.317018]  ? find_held_lock+0x32/0x90
[ 3225.317024]  ? mark_held_locks+0x50/0x80
[ 3225.317056]  ? _raw_spin_unlock_irq+0x29/0x40
[ 3225.317097]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.317115]  ? _raw_spin_unlock_irq+0x29/0x40
[ 3225.317118]  ? wait_for_completion_timeout+0x75/0x190
[ 3225.317135]  ? commit_tail+0x3c/0x70 [drm_kms_helper]
[ 3225.317143]  commit_tail+0x3c/0x70 [drm_kms_helper]
[ 3225.317153]  drm_atomic_helper_commit+0xe3/0x150 [drm_kms_helper]
[ 3225.317185]  drm_atomic_helper_disable_plane+0x82/0xb0 [drm_kms_helper]
[ 3225.317226]  drm_mode_cursor_universal+0x12c/0x240 [drm]
[ 3225.317251]  drm_mode_cursor_common+0xd8/0x230 [drm]
[ 3225.317275]  ? drm_mode_setplane+0x1a0/0x1a0 [drm]
[ 3225.317289]  drm_mode_cursor_ioctl+0x4d/0x70 [drm]
[ 3225.317302]  drm_ioctl_kernel+0xaa/0xf0 [drm]
[ 3225.317315]  drm_ioctl+0x208/0x390 [drm]
[ 3225.317335]  ? drm_mode_setplane+0x1a0/0x1a0 [drm]
[ 3225.317346]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.317405]  amdgpu_drm_ioctl+0x49/0x80 [amdgpu]
[ 3225.317413]  do_vfs_ioctl+0x411/0x750
[ 3225.317425]  ksys_ioctl+0x5e/0x90
[ 3225.317430]  __x64_sys_ioctl+0x16/0x20
[ 3225.317437]  do_syscall_64+0x5c/0xb0
[ 3225.317441]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[ 3225.317445] RIP: 0033:0x7fdde5b4007b
[ 3225.317450] Code: 0f 1e fa 48 8b 05 0d 9e 0c 00 64 c7 00 26 00 00 00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d dd 9d 0c 00 f7 d8 64 89 01 48
[ 3225.317455] RSP: 002b:00007ffec481a6d8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3225.317459] RAX: ffffffffffffffda RBX: 00007ffec481a710 RCX: 00007fdde5b4007b
[ 3225.317461] RDX: 00007ffec481a710 RSI: 00000000c01c64a3 RDI: 000000000000000e
[ 3225.317465] RBP: 00000000c01c64a3 R08: 0000000000000080 R09: 0000000000000000
[ 3225.317469] R10: 0000000000000004 R11: 0000000000000246 R12: 00000000000006f1
[ 3225.317472] R13: 000000000000000e R14: 000056201b5b5490 R15: 000056201bbe7820
[ 3225.317500] irq event stamp: 97442804
[ 3225.317507] hardirqs last  enabled at (97442803): [<ffffffffb71713db>] console_unlock+0x46b/0x5d0
[ 3225.317512] hardirqs last disabled at (97442804): [<ffffffffb700383a>] trace_hardirqs_off_thunk+0x1a/0x20
[ 3225.317517] softirqs last  enabled at (97442596): [<ffffffffb7e0035d>] __do_softirq+0x35d/0x45d
[ 3225.317523] softirqs last disabled at (97442589): [<ffffffffb70f1e27>] irq_exit+0xf7/0x100
[ 3225.317526] ---[ end trace baab6af74a9fa531 ]---
[ 3225.317560] BUG: unable to handle page fault for address: 000000000000c9f4
[ 3225.317562] #PF: supervisor read access in kernel mode
[ 3225.317563] #PF: error_code(0x0000) - not-present page
[ 3225.317565] PGD 0 P4D 0 
[ 3225.317567] Oops: 0000 [#1] SMP NOPTI
[ 3225.317571] CPU: 2 PID: 12717 Comm: Xorg Tainted: G        W         5.3.0-0.rc2.git4.1.fc31.x86_64 #1
[ 3225.317572] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[ 3225.317625] RIP: 0010:dc_resource_state_copy_construct+0x18/0xf0 [amdgpu]
[ 3225.317627] Code: 00 49 83 c4 01 44 39 e0 7f b5 5b 5d 41 5c 41 5d c3 c3 0f 1f 44 00 00 41 56 ba f8 c9 00 00 41 55 41 54 49 89 f4 55 4c 89 e5 53 <44> 8b ae f4 c9 00 00 48 89 fe 4c 89 e7 e8 16 86 48 f7 49 8d 84 24
[ 3225.317630] RSP: 0018:ffffb439c3e377d0 EFLAGS: 00010246
[ 3225.317631] RAX: ffff9b0ba19a0000 RBX: ffffffffc08380b0 RCX: 0000000000000006
[ 3225.317633] RDX: 000000000000c9f8 RSI: 0000000000000000 RDI: ffff9b0ab7fc0000
[ 3225.317635] RBP: 0000000000000000 R08: 000002eef3c694b7 R09: 0000000000000000
[ 3225.317636] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[ 3225.317638] R13: ffff9b0bb5381000 R14: ffff9b09acc68598 R15: ffff9b09acc68540
[ 3225.317640] FS:  00007fdde56cbf00(0000) GS:ffff9b0bba400000(0000) knlGS:0000000000000000
[ 3225.317641] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3225.317643] CR2: 000000000000c9f4 CR3: 00000007382ee000 CR4: 00000000003406e0
[ 3225.317644] Call Trace:
[ 3225.317714]  amdgpu_dm_atomic_commit_tail.cold+0xad/0xe1 [amdgpu]
[ 3225.317719]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.317723]  ? debug_check_no_obj_freed+0x107/0x1d8
[ 3225.317786]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.317850]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.317855]  ? kfree+0x1b6/0x3b0
[ 3225.317918]  ? dm_determine_update_type_for_commit+0x34c/0x420 [amdgpu]
[ 3225.317923]  ? __lock_acquire+0x247/0x1910
[ 3225.317928]  ? find_held_lock+0x32/0x90
[ 3225.317931]  ? mark_held_locks+0x50/0x80
[ 3225.317934]  ? _raw_spin_unlock_irq+0x29/0x40
[ 3225.317937]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.317939]  ? _raw_spin_unlock_irq+0x29/0x40
[ 3225.317942]  ? wait_for_completion_timeout+0x75/0x190
[ 3225.317954]  ? commit_tail+0x3c/0x70 [drm_kms_helper]
[ 3225.317960]  commit_tail+0x3c/0x70 [drm_kms_helper]
[ 3225.317968]  drm_atomic_helper_commit+0xe3/0x150 [drm_kms_helper]
[ 3225.317975]  drm_atomic_helper_disable_plane+0x82/0xb0 [drm_kms_helper]
[ 3225.317994]  drm_mode_cursor_universal+0x12c/0x240 [drm]
[ 3225.318011]  drm_mode_cursor_common+0xd8/0x230 [drm]
[ 3225.318026]  ? drm_mode_setplane+0x1a0/0x1a0 [drm]
[ 3225.318038]  drm_mode_cursor_ioctl+0x4d/0x70 [drm]
[ 3225.318049]  drm_ioctl_kernel+0xaa/0xf0 [drm]
[ 3225.318061]  drm_ioctl+0x208/0x390 [drm]
[ 3225.318075]  ? drm_mode_setplane+0x1a0/0x1a0 [drm]
[ 3225.318079]  ? lockdep_hardirqs_on+0xf0/0x180
[ 3225.318145]  amdgpu_drm_ioctl+0x49/0x80 [amdgpu]
[ 3225.318164]  do_vfs_ioctl+0x411/0x750
[ 3225.318175]  ksys_ioctl+0x5e/0x90
[ 3225.318179]  __x64_sys_ioctl+0x16/0x20
[ 3225.318188]  do_syscall_64+0x5c/0xb0
[ 3225.318191]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[ 3225.318194] RIP: 0033:0x7fdde5b4007b
[ 3225.318203] Code: 0f 1e fa 48 8b 05 0d 9e 0c 00 64 c7 00 26 00 00 00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d dd 9d 0c 00 f7 d8 64 89 01 48
[ 3225.318209] RSP: 002b:00007ffec481a6d8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3225.318213] RAX: ffffffffffffffda RBX: 00007ffec481a710 RCX: 00007fdde5b4007b
[ 3225.318215] RDX: 00007ffec481a710 RSI: 00000000c01c64a3 RDI: 000000000000000e
[ 3225.318217] RBP: 00000000c01c64a3 R08: 0000000000000080 R09: 0000000000000000
[ 3225.318218] R10: 0000000000000004 R11: 0000000000000246 R12: 00000000000006f1
[ 3225.318220] R13: 000000000000000e R14: 000056201b5b5490 R15: 000056201bbe7820
[ 3225.318225] Modules linked in: macvtap macvlan tap rfcomm xt_CHECKSUM xt_MASQUERADE nf_nat_tftp nf_conntrack_tftp tun bridge stp llc nf_conntrack_netbios_ns nf_conntrack_broadcast xt_CT ip6t_REJECT nf_reject_ipv6 ip6t_rpfilter ipt_REJECT nf_reject_ipv4 xt_conntrack ebtable_nat ip6table_nat ip6table_mangle ip6table_raw ip6table_security iptable_nat nf_nat iptable_mangle iptable_raw iptable_security nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c ip_set nfnetlink ebtable_filter ebtables ip6table_filter ip6_tables iptable_filter cmac bnep sunrpc vfat fat snd_hda_codec_realtek edac_mce_amd snd_hda_codec_generic ledtrig_audio kvm_amd rtwpci snd_hda_codec_hdmi rtw88 kvm snd_hda_intel snd_usb_audio snd_hda_codec mac80211 snd_hda_core snd_usbmidi_lib irqbypass snd_rawmidi uvcvideo snd_hwdep snd_seq videobuf2_vmalloc videobuf2_memops btusb videobuf2_v4l2 crct10dif_pclmul snd_seq_device videobuf2_common btrtl crc32_pclmul eeepc_wmi snd_pcm btbcm btintel asus_wmi xpad snd_timer sparse_keymap
[ 3225.318261]  videodev ff_memless bluetooth joydev ghash_clmulni_intel cfg80211 video snd mc k10temp wmi_bmof soundcore ecdh_generic sp5100_tco ecc rfkill ccp i2c_piix4 libarc4 gpio_amdpt gpio_generic acpi_cpufreq binfmt_misc ip_tables hid_logitech_hidpp amdgpu amd_iommu_v2 gpu_sched ttm drm_kms_helper drm igb crc32c_intel dca i2c_algo_bit hid_logitech_dj nvme nvme_core wmi pinctrl_amd
[ 3225.318283] CR2: 000000000000c9f4
[ 3225.318286] ---[ end trace baab6af74a9fa532 ]---
[ 3225.318346] RIP: 0010:dc_resource_state_copy_construct+0x18/0xf0 [amdgpu]
[ 3225.318348] Code: 00 49 83 c4 01 44 39 e0 7f b5 5b 5d 41 5c 41 5d c3 c3 0f 1f 44 00 00 41 56 ba f8 c9 00 00 41 55 41 54 49 89 f4 55 4c 89 e5 53 <44> 8b ae f4 c9 00 00 48 89 fe 4c 89 e7 e8 16 86 48 f7 49 8d 84 24
[ 3225.318350] RSP: 0018:ffffb439c3e377d0 EFLAGS: 00010246
[ 3225.318352] RAX: ffff9b0ba19a0000 RBX: ffffffffc08380b0 RCX: 0000000000000006
[ 3225.318354] RDX: 000000000000c9f8 RSI: 0000000000000000 RDI: ffff9b0ab7fc0000
[ 3225.318355] RBP: 0000000000000000 R08: 000002eef3c694b7 R09: 0000000000000000
[ 3225.318357] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[ 3225.318358] R13: ffff9b0bb5381000 R14: ffff9b09acc68598 R15: ffff9b09acc68540
[ 3225.318360] FS:  00007fdde56cbf00(0000) GS:ffff9b0bba400000(0000) knlGS:0000000000000000
[ 3225.318361] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3225.318363] CR2: 000000000000c9f4 CR3: 00000007382ee000 CR4: 00000000003406e0
[ 3225.318368] BUG: sleeping function called from invalid context at include/linux/percpu-rwsem.h:38
[ 3225.318373] in_atomic(): 0, irqs_disabled(): 1, pid: 12717, name: Xorg
[ 3225.318376] INFO: lockdep is turned off.
[ 3225.318379] irq event stamp: 97442818
[ 3225.318383] hardirqs last  enabled at (97442817): [<ffffffffb700381a>] trace_hardirqs_on_thunk+0x1a/0x20
[ 3225.318385] hardirqs last disabled at (97442818): [<ffffffffb700383a>] trace_hardirqs_off_thunk+0x1a/0x20
[ 3225.318387] softirqs last  enabled at (97442816): [<ffffffffb7e0035d>] __do_softirq+0x35d/0x45d
[ 3225.318390] softirqs last disabled at (97442807): [<ffffffffb70f1e27>] irq_exit+0xf7/0x100
[ 3225.318393] CPU: 2 PID: 12717 Comm: Xorg Tainted: G      D W         5.3.0-0.rc2.git4.1.fc31.x86_64 #1
[ 3225.318395] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 2406 06/21/2019
[ 3225.318396] Call Trace:
[ 3225.318401]  dump_stack+0x85/0xc0
[ 3225.318405]  ___might_sleep.cold+0xac/0xbc
[ 3225.318408]  exit_signals+0x30/0x330
[ 3225.318411]  do_exit+0xcb/0xcd0
[ 3225.318414]  ? ksys_ioctl+0x5e/0x90
[ 3225.318418]  rewind_stack_do_exit+0x17/0x20

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

end of thread, other threads:[~2019-08-10 16:08 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20190806014830.7424-1-hdanton@sina.com>
2019-08-08  3:48 ` The issue with page allocation 5.3 rc1-rc2 (seems drm culprit here) Mikhail Gavrilov
2019-08-08  5:31   ` Alex Deucher
2019-08-08  8:12     ` Michel Dänzer
2019-08-08 14:26       ` Alex Deucher
2019-08-09 18:55         ` Mikhail Gavrilov
2019-08-10 16:08           ` Mikhail Gavrilov
     [not found] <20190805032114.8740-1-hdanton@sina.com>
2019-08-05 17:14 ` Mikhail Gavrilov
2019-08-04 22:23 Mikhail Gavrilov
2019-08-05  1:03 ` Dave Airlie

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