DPDK usage discussions
 help / color / mirror / Atom feed
* Enabling multiport eswitch (mlx5) breaks PF1 bifurcation immediately
@ 2024-06-14  9:18 Guelce, Guevenc
  2024-06-19 18:12 ` Dariusz Sosnowski
  0 siblings, 1 reply; 4+ messages in thread
From: Guelce, Guevenc @ 2024-06-14  9:18 UTC (permalink / raw)
  To: users; +Cc: dsosnowski

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

Hi all, Hi Dariusz,





Thanks a lot for your help so far. We really appreciate it.

I just want to touch base with this question which was asked by my colleague Tao a while back.



Our question is actually quite simple. Issuing the commands listed below on a ConnectX-6 Dx Card breaks the

bifurcated nature of the mlx5 driver in linux kernel for PF1. (No traffic is forwarded to linux kernel anymore on PF1)

You don’t need to start any testpmd or dpdk application. Just issuing the following commands below breaks the PF1

in linux kernel already.



sudo devlink dev eswitch set pci/0000:8a:00.0 mode switchdev

sudo devlink dev eswitch set pci/0000:8a:00.1 mode switchdev

sudo devlink dev param set pci/0000:8a:00.0 name esw_multiport value true cmode runtime

sudo devlink dev param set pci/0000:8a:00.1 name esw_multiport value true cmode runtime





----<test environment>-----

pci/0000:8a:00.0:

  driver mlx5_core

  versions:

      fixed:

        fw.psid MT_0000000359

      running:

        fw.version 22.39.2048

        fw 22.39.2048

Linux kernel version: 6.6.16

DPDK: 23.11 (But not really needed to reproduce the issue)

----</test environment>------





This makes the eswitch multiport feature for us unusable. Could you please advise whether we are missing smt here ?

As we are really keen to use this feature.



Thanks & Regards





Guvenc Gulce









-------------------- previous email exchange -------------------------------



Hi Dariusz,



It is very appreciated that you took a look at the issue and provided suggestions. This time, we again performed tests using two directly connected machines and focused on ICMP (IPv4) packets in addition to ICMPv6 packets mentioned in the original problem description. The issue remains the same. I would like to highlight two points in our setup:





  1.  ICMP packets immediately cannot be captured on PF1 right after setting the nic into the multiport eswitch mode. And if I switch off the multiport eswitch mode by using following two commands, ICMP communication is resumed immediately, which shall prove that configs, such as firewall, on the system are correct. I would also assume it has little to do with a running DPDK application, as communication is already broken before starting an application like testpmd.



sudo devlink dev param set pci/0000:3b:00.0 name esw_multiport value false cmode runtime



sudo devlink dev param set pci/0000:3b:00.1 name esw_multiport value false cmode runtime





  1.  In this setup, we do not use MLNX_OFED drivers but rely on the upstream Mellanox drivers from Linux kernel 6.5.0 (which is greater than the suggested kernel version 6.3). Would that make a difference? Could you share some more detailed information regarding the environment setup on your side? The firmware version we are using for Mellanox ConnectX-6 is 22.39.1002.



Looking forward to your further reply. Thanks in advance.



Best regards,

Tao Li



From: Dariusz Sosnowski <dsosnowski at nvidia.com<https://mails.dpdk.org/listinfo/users>>

Date: Friday, 19. April 2024 at 19:30

To: Tao Li <byteocean at hotmail.com<https://mails.dpdk.org/listinfo/users>>, users at dpdk.org<https://mails.dpdk.org/listinfo/users> <users at dpdk.org<https://mails.dpdk.org/listinfo/users>>

Cc: tao.li06 at sap.com<https://mails.dpdk.org/listinfo/users> <tao.li06 at sap.com<https://mails.dpdk.org/listinfo/users>>

Subject: RE: Packets cannot reach host's kernel in multiport e-switch mode (mlx5 driver)

Hi,



I could not reproduce the issue locally with testpmd, with flow isolation enabled. I can see ICMP packets passing both ways to kernel interfaces of PF0 and PF1.

Without flow isolation, it is expected that traffic coming to the host will be hijacked by DPDK (depending on the MAC address, multicast config and promiscuous mode).



Could you please run testpmd with the following command line parameters and execute the following commands?



Testpmd command line:

        dpdk-testpmd -a 3b:00.0,dv_flow_en=2,representor=pf0-1vf0 -- --flow-isolate-all -i



Testpmd commands:

        port stop all

        flow configure 0 queues_number 4 queues_size 64

        flow configure 1 queues_number 4 queues_size 64

        flow configure 2 queues_number 4 queues_size 64

        flow configure 3 queues_number 4 queues_size 64

        port start 0

        port start 1

        port start 2

        port start 3

        set verbose 1

        set fwd rxonly

        start



With this testpmd running, could you please test if both PF0 and PF1 kernel interfaces are reachable and all packets pass?



Best regards,

Dariusz Sosnowski


[-- Attachment #2: Type: text/html, Size: 13856 bytes --]

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

* RE: Enabling multiport eswitch (mlx5) breaks PF1 bifurcation immediately
  2024-06-14  9:18 Enabling multiport eswitch (mlx5) breaks PF1 bifurcation immediately Guelce, Guevenc
@ 2024-06-19 18:12 ` Dariusz Sosnowski
  2024-06-20 15:34   ` Guelce, Guevenc
  0 siblings, 1 reply; 4+ messages in thread
From: Dariusz Sosnowski @ 2024-06-19 18:12 UTC (permalink / raw)
  To: Guelce, Guevenc, users

Hi,

> From: Guelce, Guevenc <guevenc.guelce@sap.com> 
> Sent: Friday, June 14, 2024 11:18
> To: users@dpdk.org
> Cc: Dariusz Sosnowski <dsosnowski@nvidia.com>
> Subject: Enabling multiport eswitch (mlx5) breaks PF1 bifurcation immediately 
> Hi all, Hi Dariusz,
> 
> 
> Thanks a lot for your help so far. We really appreciate it.
> I just want to touch base with this question which was asked by my colleague Tao a while back.
> 
> Our question is actually quite simple. Issuing the commands listed below on a ConnectX-6 Dx Card breaks the 
> bifurcated nature of the mlx5 driver in linux kernel for PF1. (No traffic is forwarded to linux kernel anymore on PF1)
> You don’t need to start any testpmd or dpdk application. Just issuing the following commands below breaks the PF1 
> in linux kernel already.
> 
> sudo devlink dev eswitch set pci/0000:8a:00.0 mode switchdev
> sudo devlink dev eswitch set pci/0000:8a:00.1 mode switchdev
> sudo devlink dev param set pci/0000:8a:00.0 name esw_multiport value true cmode runtime
> sudo devlink dev param set pci/0000:8a:00.1 name esw_multiport value true cmode runtime
> 
> 
> ----<test environment>-----
> pci/0000:8a:00.0:
>   driver mlx5_core
>   versions:
>       fixed:
>         fw.psid MT_0000000359
>       running:
>         fw.version 22.39.2048
>         fw 22.39.2048
> Linux kernel version: 6.6.16
> DPDK: 23.11 (But not really needed to reproduce the issue)
> ----</test environment>------
> 
> 
> This makes the eswitch multiport feature for us unusable. Could you please advise whether we are missing smt here ?
> As we are really keen to use this feature.

Could you please send us the following info? It would help with debugging the issue.

- Despite the Multiport E-Switch configuration, do you configure any additional bonding?
- Output of commands:
    - sudo devlink dev param show
    - for f in /sys/kernel/debug/mlx5/0000:8a:00.0/lag/*; do echo $f; cat $f; done
    - for f in /sys/kernel/debug/mlx5/0000:8a:00.1/lag/*; do echo $f; cat $f; done
- Output of dmesg, ideally all logs since boot.

> 
> Thanks & Regards
> 
> 
> Guvenc Gulce
> 

Best regards,
Dariusz Sosnowski

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

* RE: Enabling multiport eswitch (mlx5) breaks PF1 bifurcation immediately
  2024-06-19 18:12 ` Dariusz Sosnowski
@ 2024-06-20 15:34   ` Guelce, Guevenc
  2024-06-24 12:57     ` Dariusz Sosnowski
  0 siblings, 1 reply; 4+ messages in thread
From: Guelce, Guevenc @ 2024-06-20 15:34 UTC (permalink / raw)
  To: Dariusz Sosnowski, users, Li, Tao

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

Hi Dariusz,

Thanks a lot for looking into this.
I am attaching the infos you requested to this email. I reproduced the issue described below on another 
machine and that machine has two Nvidia cards and a newer ConnectX6 Firmware. 
The card I used for testing and reproducing is ConnectX6 on PCI address 0000:3b:00.0 and 0000:3b:00.1
I ran the commands I mentioned below in the email and PF1 traffic of this card to linux kernel was cut off.

----<test environment>----
pci/0000:3b:00.0:
  driver mlx5_core
  versions:
      fixed:
        fw.psid MT_0000000359
      running:
        fw.version 22.41.1000
        fw 22.41.1000
      stored:
        fw.version 22.41.1000
        fw 22.41.1000
auxiliary/mlx5_core.eth.0:
  driver mlx5_core.eth
pci/0000:3b:00.1:
  driver mlx5_core
  versions:
      fixed:
        fw.psid MT_0000000359
      running:
        fw.version 22.41.1000
        fw 22.41.1000
      stored:
        fw.version 22.41.1000
        fw 22.41.1000

Linux Kernel Version: 6.6.12
----</test environment>----

We didn’t configure any LAG but we enabled this firmware setting "LAG_RESOURCE_ALLOCATION" 
as it is needed for multiport eswitch per documentation here:
https://doc.dpdk.org/guides/nics/mlx5.html#id1


Linux logs and sysfs / devlink outputs are on attach as a text file.

Thanks & Regards,

Guvenc Gulce


-----Original Message-----
From: Dariusz Sosnowski <dsosnowski@nvidia.com> 
Sent: Wednesday, 19 June 2024 20:13
To: Guelce, Guevenc <guevenc.guelce@sap.com>; users@dpdk.org
Subject: RE: Enabling multiport eswitch (mlx5) breaks PF1 bifurcation immediately

Hi,

> From: Guelce, Guevenc <guevenc.guelce@sap.com>
> Sent: Friday, June 14, 2024 11:18
> To: users@dpdk.org
> Cc: Dariusz Sosnowski <dsosnowski@nvidia.com>
> Subject: Enabling multiport eswitch (mlx5) breaks PF1 bifurcation 
> immediately Hi all, Hi Dariusz,
> 
> 
> Thanks a lot for your help so far. We really appreciate it.
> I just want to touch base with this question which was asked by my colleague Tao a while back.
> 
> Our question is actually quite simple. Issuing the commands listed 
> below on a ConnectX-6 Dx Card breaks the bifurcated nature of the mlx5 
> driver in linux kernel for PF1. (No traffic is forwarded to linux 
> kernel anymore on PF1) You don’t need to start any testpmd or dpdk application. Just issuing the following commands below breaks the PF1 in linux kernel already.
> 
> sudo devlink dev eswitch set pci/0000:8a:00.0 mode switchdev sudo 
> devlink dev eswitch set pci/0000:8a:00.1 mode switchdev sudo devlink 
> dev param set pci/0000:8a:00.0 name esw_multiport value true cmode 
> runtime sudo devlink dev param set pci/0000:8a:00.1 name esw_multiport 
> value true cmode runtime
> 
> 
> ----<test environment>-----
> pci/0000:8a:00.0:
>   driver mlx5_core
>   versions:
>       fixed:
>         fw.psid MT_0000000359
>       running:
>         fw.version 22.39.2048
>         fw 22.39.2048
> Linux kernel version: 6.6.16
> DPDK: 23.11 (But not really needed to reproduce the issue) ----</test 
> environment>------
> 
> 
> This makes the eswitch multiport feature for us unusable. Could you please advise whether we are missing smt here ?
> As we are really keen to use this feature.

Could you please send us the following info? It would help with debugging the issue.

- Despite the Multiport E-Switch configuration, do you configure any additional bonding?
- Output of commands:
    - sudo devlink dev param show
    - for f in /sys/kernel/debug/mlx5/0000:8a:00.0/lag/*; do echo $f; cat $f; done
    - for f in /sys/kernel/debug/mlx5/0000:8a:00.1/lag/*; do echo $f; cat $f; done
- Output of dmesg, ideally all logs since boot.

> 
> Thanks & Regards
> 
> 
> Guvenc Gulce
> 

Best regards,
Dariusz Sosnowski

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

Jun 20 11:51:43 localhost kernel: Linux version 6.6.12-amd64 (debian-kernel@lists.debian.org) (gcc-13 (Debian 13.2.0-9) 13.2.0, GNU ld (GNU Binutils for Debian) 2.41.50.20231227) #1 SMP PREEMPT_DYNAMIC Debian 6.6.12-0gardenlinux1 (2024-01-17)
Jun 20 11:51:43 localhost kernel: Command line: initrd=\Default\6.6.12-amd64\initrd root=LABEL=ROOT console=tty0 console=ttyS0,115200 ro earlyprintk=ttyS0,115200 consoleblank=0
Jun 20 11:51:43 localhost kernel: BIOS-provided physical RAM map:
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000682fefff] usable
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x00000000682ff000-0x000000006ebfefff] reserved
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x000000006ebff000-0x000000006f9fefff] ACPI NVS
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x000000006f9ff000-0x000000006fffefff] ACPI data
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x000000006ffff000-0x000000006fffffff] usable
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x0000000100000000-0x000000187bffffff] usable
Jun 20 11:51:43 localhost kernel: printk: bootconsole [earlyser0] enabled
Jun 20 11:51:43 localhost kernel: NX (Execute Disable) protection: active
Jun 20 11:51:43 localhost kernel: APIC: Static calls initialized
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4beca020-0x4bed205f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4beca020-0x4bed205f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be98020-0x4bec9c5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be98020-0x4bec9c5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be66020-0x4be97c5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be66020-0x4be97c5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be4d020-0x4be6565f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be4d020-0x4be6565f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bd8e020-0x4be4ca5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bd8e020-0x4be4ca5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bccf020-0x4bd8da5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bccf020-0x4bd8da5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bc9d020-0x4bccec5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bc9d020-0x4bccec5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bc6b020-0x4bc9cc5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bc6b020-0x4bc9cc5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bbac020-0x4bc6a65f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bbac020-0x4bc6a65f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4baed020-0x4bbab65f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4baed020-0x4bbab65f] usable ==> usable
Jun 20 11:51:43 localhost kernel: extended physical RAM map:
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x0000000000100000-0x000000004baed01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004baed020-0x000000004bbab65f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bbab660-0x000000004bbac01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bbac020-0x000000004bc6a65f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bc6a660-0x000000004bc6b01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bc6b020-0x000000004bc9cc5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bc9cc60-0x000000004bc9d01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bc9d020-0x000000004bccec5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bccec60-0x000000004bccf01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bccf020-0x000000004bd8da5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bd8da60-0x000000004bd8e01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bd8e020-0x000000004be4ca5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be4ca60-0x000000004be4d01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be4d020-0x000000004be6565f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be65660-0x000000004be6601f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be66020-0x000000004be97c5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be97c60-0x000000004be9801f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be98020-0x000000004bec9c5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bec9c60-0x000000004beca01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004beca020-0x000000004bed205f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bed2060-0x00000000682fefff] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x00000000682ff000-0x000000006ebfefff] reserved
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000006ebff000-0x000000006f9fefff] ACPI NVS
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000006f9ff000-0x000000006fffefff] ACPI data
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000006ffff000-0x000000006fffffff] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x0000000070000000-0x000000008fffffff] reserved
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x0000000100000000-0x000000187bffffff] usable
Jun 20 11:51:43 localhost kernel: efi: EFI v2.7 by Dell Inc.
Jun 20 11:51:43 localhost kernel: efi: ACPI=0x6fffe000 ACPI 2.0=0x6fffe014 SMBIOS=0x68ebe000 SMBIOS 3.0=0x68ebc000 MEMATTR=0x651ff020 RNG=0x6fc0f0a0 INITRD=0x55f015a0 
Jun 20 11:51:43 localhost kernel: random: crng init done
Jun 20 11:51:43 localhost kernel: efi: Remove mem47: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
Jun 20 11:51:43 localhost kernel: e820: remove [mem 0x80000000-0x8fffffff] reserved
Jun 20 11:51:43 localhost kernel: efi: Not removing mem48: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
Jun 20 11:51:43 localhost kernel: secureboot: Secure boot disabled
Jun 20 11:51:43 localhost kernel: SMBIOS 3.2.0 present.
Jun 20 11:51:43 localhost kernel: DMI: Dell Inc. PowerEdge R440/04JN2K, BIOS 2.13.3 12/17/2021
Jun 20 11:51:43 localhost kernel: tsc: Detected 2100.000 MHz processor
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 20 11:51:43 localhost kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 20 11:51:43 localhost kernel: last_pfn = 0x187c000 max_arch_pfn = 0x400000000
Jun 20 11:51:43 localhost kernel: MTRR map: 9 entries (3 fixed + 6 variable; max 23), built from 10 variable MTRRs
Jun 20 11:51:43 localhost kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x70000000-0x73ffffff] usable ==> reserved
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
Jun 20 11:51:43 localhost kernel: x2apic: enabled by BIOS, switching to x2apic ops
Jun 20 11:51:43 localhost kernel: last_pfn = 0x70000 max_arch_pfn = 0x400000000
Jun 20 11:51:43 localhost kernel: Using GB pages for direct mapping
Jun 20 11:51:43 localhost kernel: RAMDISK: [mem 0x4bed3000-0x4deaefff]
Jun 20 11:51:43 localhost kernel: ACPI: Early table checksum verification disabled
Jun 20 11:51:43 localhost kernel: ACPI: RSDP 0x000000006FFFE014 000024 (v02 DELL  )
Jun 20 11:51:43 localhost kernel: ACPI: XSDT 0x000000006FBFF188 0000FC (v01 DELL   PE_SC3   00000000      01000013)
Jun 20 11:51:43 localhost kernel: ACPI: FACP 0x000000006FFF7000 000114 (v06 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: DSDT 0x000000006FCFF000 2E81B0 (v02 DELL   PE_SC3   00000003 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: FACS 0x000000006F56D000 000040
Jun 20 11:51:43 localhost kernel: ACPI: SSDT 0x000000006FFFC000 0005F8 (v02 DELL   Tpm2Tabl 00001000 INTL 20180508)
Jun 20 11:51:43 localhost kernel: ACPI: TPM2 0x000000006FFFB000 000038 (v04 DELL   PE_SC3   00000002      01000013)
Jun 20 11:51:43 localhost kernel: ACPI: SSDT 0x000000006FFFA000 00046C (v02 INTEL  ADDRXLAT 00000001 INTL 20180508)
Jun 20 11:51:43 localhost kernel: ACPI: WD__ 0x000000006FFF9000 000134 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: SLIC 0x000000006FFF8000 000024 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: HPET 0x000000006FFF6000 000038 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: APIC 0x000000006FFF4000 0016DE (v04 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: MCFG 0x000000006FFF3000 00003C (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: MIGT 0x000000006FFF2000 000040 (v01 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: MSCT 0x000000006FFF1000 000090 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: PCAT 0x000000006FFF0000 000088 (v02 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: PCCT 0x000000006FFEF000 00006E (v01 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: RASF 0x000000006FFEE000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: SLIT 0x000000006FFED000 00042C (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: SRAT 0x000000006FFEA000 002D30 (v03 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: SVOS 0x000000006FFE9000 000032 (v01 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: WSMT 0x000000006FFE8000 000028 (v01 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: OEM4 0x000000006FC51000 0AD1C1 (v02 INTEL  CPU  CST 00003000 INTL 20180508)
Jun 20 11:51:43 localhost kernel: ACPI: SSDT 0x000000006FC19000 037465 (v02 INTEL  SSDT  PM 00004000 INTL 20180508)
Jun 20 11:51:43 localhost kernel: ACPI: SSDT 0x000000006FFFD000 000C94 (v02 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: SSDT 0x000000006FC15000 00357F (v02 INTEL  SpsNm    00000002 INTL 20180508)
Jun 20 11:51:43 localhost kernel: ACPI: DMAR 0x000000006FC14000 0001B0 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: HEST 0x000000006FC13000 00017C (v01 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: BERT 0x000000006FC12000 000030 (v01 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: ERST 0x000000006FC11000 000230 (v01 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: EINJ 0x000000006FC10000 000150 (v01 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: Reserving FACP table memory at [mem 0x6fff7000-0x6fff7113]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving DSDT table memory at [mem 0x6fcff000-0x6ffe71af]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving FACS table memory at [mem 0x6f56d000-0x6f56d03f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0x6fffc000-0x6fffc5f7]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving TPM2 table memory at [mem 0x6fffb000-0x6fffb037]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0x6fffa000-0x6fffa46b]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving WD__ table memory at [mem 0x6fff9000-0x6fff9133]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SLIC table memory at [mem 0x6fff8000-0x6fff8023]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving HPET table memory at [mem 0x6fff6000-0x6fff6037]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving APIC table memory at [mem 0x6fff4000-0x6fff56dd]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving MCFG table memory at [mem 0x6fff3000-0x6fff303b]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving MIGT table memory at [mem 0x6fff2000-0x6fff203f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving MSCT table memory at [mem 0x6fff1000-0x6fff108f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving PCAT table memory at [mem 0x6fff0000-0x6fff0087]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving PCCT table memory at [mem 0x6ffef000-0x6ffef06d]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving RASF table memory at [mem 0x6ffee000-0x6ffee02f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SLIT table memory at [mem 0x6ffed000-0x6ffed42b]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SRAT table memory at [mem 0x6ffea000-0x6ffecd2f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SVOS table memory at [mem 0x6ffe9000-0x6ffe9031]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving WSMT table memory at [mem 0x6ffe8000-0x6ffe8027]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving OEM4 table memory at [mem 0x6fc51000-0x6fcfe1c0]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0x6fc19000-0x6fc50464]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0x6fffd000-0x6fffdc93]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0x6fc15000-0x6fc1857e]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving DMAR table memory at [mem 0x6fc14000-0x6fc141af]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving HEST table memory at [mem 0x6fc13000-0x6fc1317b]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving BERT table memory at [mem 0x6fc12000-0x6fc1202f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving ERST table memory at [mem 0x6fc11000-0x6fc1122f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving EINJ table memory at [mem 0x6fc10000-0x6fc1014f]
Jun 20 11:51:43 localhost kernel: APIC: Switched APIC routing to: cluster x2apic
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0000 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0010 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000e -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001e -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0002 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0012 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000c -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001c -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0004 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0014 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000a -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001a -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0006 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0016 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0008 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0018 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0001 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0011 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000f -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001f -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0003 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0013 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000d -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001d -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0005 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0015 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000b -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001b -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0007 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0017 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0009 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0019 -> Node 1
Jun 20 11:51:43 localhost kernel: ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
Jun 20 11:51:43 localhost kernel: ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0xc7bffffff]
Jun 20 11:51:43 localhost kernel: ACPI: SRAT: Node 1 PXM 1 [mem 0xc7c000000-0x187bffffff]
Jun 20 11:51:43 localhost kernel: NUMA: Initialized distance table, cnt=2
Jun 20 11:51:43 localhost kernel: NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0xc7bffffff] -> [mem 0x00000000-0xc7bffffff]
Jun 20 11:51:43 localhost kernel: NODE_DATA(0) allocated [mem 0xc7bfd5000-0xc7bffffff]
Jun 20 11:51:43 localhost kernel: NODE_DATA(1) allocated [mem 0x187bfd4000-0x187bffefff]
Jun 20 11:51:43 localhost kernel: Zone ranges:
Jun 20 11:51:43 localhost kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jun 20 11:51:43 localhost kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jun 20 11:51:43 localhost kernel:   Normal   [mem 0x0000000100000000-0x000000187bffffff]
Jun 20 11:51:43 localhost kernel:   Device   empty
Jun 20 11:51:43 localhost kernel: Movable zone start for each node
Jun 20 11:51:43 localhost kernel: Early memory node ranges
Jun 20 11:51:43 localhost kernel:   node   0: [mem 0x0000000000001000-0x000000000009ffff]
Jun 20 11:51:43 localhost kernel:   node   0: [mem 0x0000000000100000-0x00000000682fefff]
Jun 20 11:51:43 localhost kernel:   node   0: [mem 0x000000006ffff000-0x000000006fffffff]
Jun 20 11:51:43 localhost kernel:   node   0: [mem 0x0000000100000000-0x0000000c7bffffff]
Jun 20 11:51:43 localhost kernel:   node   1: [mem 0x0000000c7c000000-0x000000187bffffff]
Jun 20 11:51:43 localhost kernel: Initmem setup node 0 [mem 0x0000000000001000-0x0000000c7bffffff]
Jun 20 11:51:43 localhost kernel: Initmem setup node 1 [mem 0x0000000c7c000000-0x000000187bffffff]
Jun 20 11:51:43 localhost kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jun 20 11:51:43 localhost kernel: On node 0, zone DMA: 96 pages in unavailable ranges
Jun 20 11:51:43 localhost kernel: On node 0, zone DMA32: 32000 pages in unavailable ranges
Jun 20 11:51:43 localhost kernel: On node 1, zone Normal: 16384 pages in unavailable ranges
Jun 20 11:51:43 localhost kernel: ACPI: PM-Timer IO Port: 0x508
Jun 20 11:51:43 localhost kernel: ACPI: X2APIC_NMI (uid[0xffffffff] high level lint[0x1])
Jun 20 11:51:43 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
Jun 20 11:51:43 localhost kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Jun 20 11:51:43 localhost kernel: IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-31
Jun 20 11:51:43 localhost kernel: IOAPIC[2]: apic_id 10, version 32, address 0xfec08000, GSI 32-39
Jun 20 11:51:43 localhost kernel: IOAPIC[3]: apic_id 11, version 32, address 0xfec10000, GSI 40-47
Jun 20 11:51:43 localhost kernel: IOAPIC[4]: apic_id 12, version 32, address 0xfec18000, GSI 48-55
Jun 20 11:51:43 localhost kernel: IOAPIC[5]: apic_id 15, version 32, address 0xfec20000, GSI 72-79
Jun 20 11:51:43 localhost kernel: IOAPIC[6]: apic_id 16, version 32, address 0xfec28000, GSI 80-87
Jun 20 11:51:43 localhost kernel: IOAPIC[7]: apic_id 17, version 32, address 0xfec30000, GSI 88-95
Jun 20 11:51:43 localhost kernel: IOAPIC[8]: apic_id 18, version 32, address 0xfec38000, GSI 96-103
Jun 20 11:51:43 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 20 11:51:43 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 20 11:51:43 localhost kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Jun 20 11:51:43 localhost kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Jun 20 11:51:43 localhost kernel: TSC deadline timer available
Jun 20 11:51:43 localhost kernel: smpboot: Allowing 32 CPUs, 0 hotplug CPUs
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4baed000-0x4baedfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bbab000-0x4bbabfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bbac000-0x4bbacfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bc6a000-0x4bc6afff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bc6b000-0x4bc6bfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bc9c000-0x4bc9cfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bc9d000-0x4bc9dfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bcce000-0x4bccefff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bccf000-0x4bccffff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bd8d000-0x4bd8dfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bd8e000-0x4bd8efff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be4c000-0x4be4cfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be4d000-0x4be4dfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be65000-0x4be65fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be66000-0x4be66fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be97000-0x4be97fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be98000-0x4be98fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bec9000-0x4bec9fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4beca000-0x4becafff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bed2000-0x4bed2fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x682ff000-0x6ebfefff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x6ebff000-0x6f9fefff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x6f9ff000-0x6fffefff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x70000000-0x7fffffff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x80000000-0xfdffffff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xffffffff]
Jun 20 11:51:43 localhost kernel: [mem 0x80000000-0xfdffffff] available for PCI devices
Jun 20 11:51:43 localhost kernel: Booting paravirtualized kernel on bare hardware
Jun 20 11:51:43 localhost kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Jun 20 11:51:43 localhost kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:2
Jun 20 11:51:43 localhost kernel: percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
Jun 20 11:51:43 localhost kernel: pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
Jun 20 11:51:43 localhost kernel: pcpu-alloc: [0] 00 02 04 06 08 10 12 14 [0] 16 18 20 22 24 26 28 30 
Jun 20 11:51:43 localhost kernel: pcpu-alloc: [1] 01 03 05 07 09 11 13 15 [1] 17 19 21 23 25 27 29 31 
Jun 20 11:51:43 localhost kernel: Kernel command line: initrd=\Default\6.6.12-amd64\initrd root=LABEL=ROOT console=tty0 console=ttyS0,115200 ro earlyprintk=ttyS0,115200 consoleblank=0
Jun 20 11:51:43 localhost kernel: printk: log_buf_len individual max cpu contribution: 4096 bytes
Jun 20 11:51:43 localhost kernel: printk: log_buf_len total cpu_extra contributions: 126976 bytes
Jun 20 11:51:43 localhost kernel: printk: log_buf_len min size: 131072 bytes
Jun 20 11:51:43 localhost kernel: printk: log_buf_len: 262144 bytes
Jun 20 11:51:43 localhost kernel: printk: early log buf free: 111944(85%)
Jun 20 11:51:43 localhost kernel: Fallback order for Node 0: 0 1 
Jun 20 11:51:43 localhost kernel: Fallback order for Node 1: 1 0 
Jun 20 11:51:43 localhost kernel: Built 2 zonelists, mobility grouping on.  Total pages: 24659188
Jun 20 11:51:43 localhost kernel: Policy zone: Normal
Jun 20 11:51:43 localhost kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Jun 20 11:51:43 localhost kernel: software IO TLB: area num 32.
Jun 20 11:51:43 localhost kernel: Memory: 1823276K/100207228K available (16384K kernel code, 2360K rwdata, 10516K rodata, 3956K init, 3640K bss, 1833088K reserved, 0K cma-reserved)
Jun 20 11:51:43 localhost kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=2
Jun 20 11:51:43 localhost kernel: ftrace: allocating 42999 entries in 168 pages
Jun 20 11:51:43 localhost kernel: ftrace: allocated 168 pages with 3 groups
Jun 20 11:51:43 localhost kernel: Dynamic Preempt: voluntary
Jun 20 11:51:43 localhost kernel: rcu: Preemptible hierarchical RCU implementation.
Jun 20 11:51:43 localhost kernel: rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
Jun 20 11:51:43 localhost kernel:         Trampoline variant of Tasks RCU enabled.
Jun 20 11:51:43 localhost kernel:         Rude variant of Tasks RCU enabled.
Jun 20 11:51:43 localhost kernel:         Tracing variant of Tasks RCU enabled.
Jun 20 11:51:43 localhost kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Jun 20 11:51:43 localhost kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
Jun 20 11:51:43 localhost kernel: NR_IRQS: 524544, nr_irqs: 2040, preallocated irqs: 16
Jun 20 11:51:43 localhost kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Jun 20 11:51:43 localhost kernel: Console: colour dummy device 80x25
Jun 20 11:51:43 localhost kernel: printk: console [tty0] enabled
Jun 20 11:51:43 localhost kernel: printk: console [ttyS0] enabled
Jun 20 11:51:43 localhost kernel: printk: bootconsole [earlyser0] disabled
Jun 20 11:51:43 localhost kernel: mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
Jun 20 11:51:43 localhost kernel: ACPI: Core revision 20230628
Jun 20 11:51:43 localhost kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Jun 20 11:51:43 localhost kernel: APIC: Switch to symmetric I/O mode setup
Jun 20 11:51:43 localhost kernel: DMAR: Host address width 46
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000d37fc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar0: reg_base_addr d37fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000e0ffc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar1: reg_base_addr e0ffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000ee7fc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar2: reg_base_addr ee7fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000fbffc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar3: reg_base_addr fbffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000aaffc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar4: reg_base_addr aaffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000b87fc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar5: reg_base_addr b87fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000c5ffc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar6: reg_base_addr c5ffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x0000009d7fc000 flags: 0x1
Jun 20 11:51:43 localhost kernel: DMAR: dmar7: reg_base_addr 9d7fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: RMRR base: 0x0000006f55f000 end: 0x0000006f561fff
Jun 20 11:51:43 localhost kernel: DMAR: ATSR flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: ATSR flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 12 under DRHD base  0xc5ffc000 IOMMU 6
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 11 under DRHD base  0xb87fc000 IOMMU 5
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 10 under DRHD base  0xaaffc000 IOMMU 4
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 18 under DRHD base  0xfbffc000 IOMMU 3
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 17 under DRHD base  0xee7fc000 IOMMU 2
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 16 under DRHD base  0xe0ffc000 IOMMU 1
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 15 under DRHD base  0xd37fc000 IOMMU 0
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 8 under DRHD base  0x9d7fc000 IOMMU 7
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 9 under DRHD base  0x9d7fc000 IOMMU 7
Jun 20 11:51:43 localhost kernel: DMAR-IR: HPET id 0 under DRHD base 0x9d7fc000
Jun 20 11:51:43 localhost kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Jun 20 11:51:43 localhost kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Jun 20 11:51:43 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 20 11:51:43 localhost kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e4530a99b6, max_idle_ns: 440795257976 ns
Jun 20 11:51:43 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4200.00 BogoMIPS (lpj=8400000)
Jun 20 11:51:43 localhost kernel: CPU0: Thermal monitoring enabled (TM1)
Jun 20 11:51:43 localhost kernel: process: using mwait in idle threads
Jun 20 11:51:43 localhost kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Jun 20 11:51:43 localhost kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Jun 20 11:51:43 localhost kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jun 20 11:51:43 localhost kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
Jun 20 11:51:43 localhost kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jun 20 11:51:43 localhost kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
Jun 20 11:51:43 localhost kernel: RETBleed: Mitigation: Enhanced IBRS
Jun 20 11:51:43 localhost kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jun 20 11:51:43 localhost kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Jun 20 11:51:43 localhost kernel: TAA: Mitigation: TSX disabled
Jun 20 11:51:43 localhost kernel: MMIO Stale Data: Vulnerable: Clear CPU buffers attempted, no microcode
Jun 20 11:51:43 localhost kernel: GDS: Vulnerable: No microcode
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[5]:  960, xstate_sizes[5]:   64
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[6]: 1024, xstate_sizes[6]:  512
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[7]: 1536, xstate_sizes[7]: 1024
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[9]: 2560, xstate_sizes[9]:    8
Jun 20 11:51:43 localhost kernel: x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
Jun 20 11:51:43 localhost kernel: Freeing SMP alternatives memory: 36K
Jun 20 11:51:43 localhost kernel: pid_max: default: 32768 minimum: 301
Jun 20 11:51:43 localhost kernel: LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,tomoyo,bpf,integrity
Jun 20 11:51:43 localhost kernel: landlock: Up and running.
Jun 20 11:51:43 localhost kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
Jun 20 11:51:43 localhost kernel: AppArmor: AppArmor initialized
Jun 20 11:51:43 localhost kernel: TOMOYO Linux initialized
Jun 20 11:51:43 localhost kernel: LSM support for eBPF active
Jun 20 11:51:43 localhost kernel: Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
Jun 20 11:51:43 localhost kernel: Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, vmalloc hugepage)
Jun 20 11:51:43 localhost kernel: Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: smpboot: CPU0: Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x7)
Jun 20 11:51:43 localhost kernel: RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Jun 20 11:51:43 localhost kernel: RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Jun 20 11:51:43 localhost kernel: RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Jun 20 11:51:43 localhost kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Jun 20 11:51:43 localhost kernel: ... version:                4
Jun 20 11:51:43 localhost kernel: ... bit width:              48
Jun 20 11:51:43 localhost kernel: ... generic registers:      4
Jun 20 11:51:43 localhost kernel: ... value mask:             0000ffffffffffff
Jun 20 11:51:43 localhost kernel: ... max period:             00007fffffffffff
Jun 20 11:51:43 localhost kernel: ... fixed-purpose events:   3
Jun 20 11:51:43 localhost kernel: ... event mask:             000000070000000f
Jun 20 11:51:43 localhost kernel: signal: max sigframe size: 3632
Jun 20 11:51:43 localhost kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1462
Jun 20 11:51:43 localhost kernel: rcu: Hierarchical SRCU implementation.
Jun 20 11:51:43 localhost kernel: rcu:         Max phase no-delay instances is 1000.
Jun 20 11:51:43 localhost kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jun 20 11:51:43 localhost kernel: smp: Bringing up secondary CPUs ...
Jun 20 11:51:43 localhost kernel: smpboot: x86: Booting SMP configuration:
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:        #1
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:    #2
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:    #3
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:    #4
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:    #5
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:    #6
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:    #7
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:    #8
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:    #9
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #10
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #11
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #12
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #13
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #14
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #15
Jun 20 11:51:43 localhost kernel: smpboot: CPU 1 Converting physical 0 to logical die 1
Jun 20 11:51:43 localhost kernel: 
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #16
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #17
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #18
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #19
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #20
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #21
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #22
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #23
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #24
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #25
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #26
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #27
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #28
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #29
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #30
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #31
Jun 20 11:51:43 localhost kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
Jun 20 11:51:43 localhost kernel: smp: Brought up 2 nodes, 32 CPUs
Jun 20 11:51:43 localhost kernel: smpboot: Max logical packages: 2
Jun 20 11:51:43 localhost kernel: smpboot: Total of 32 processors activated (134400.00 BogoMIPS)
Jun 20 11:51:43 localhost kernel: node 0 deferred pages initialised in 40ms
Jun 20 11:51:43 localhost kernel: node 1 deferred pages initialised in 44ms
Jun 20 11:51:43 localhost kernel: devtmpfs: initialized
Jun 20 11:51:43 localhost kernel: x86/mm: Memory block size: 2048MB
Jun 20 11:51:43 localhost kernel: ACPI: PM: Registering ACPI NVS region [mem 0x6ebff000-0x6f9fefff] (14680064 bytes)
Jun 20 11:51:43 localhost kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Jun 20 11:51:43 localhost kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: pinctrl core: initialized pinctrl subsystem
Jun 20 11:51:43 localhost kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jun 20 11:51:43 localhost kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Jun 20 11:51:43 localhost kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jun 20 11:51:43 localhost kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jun 20 11:51:43 localhost kernel: audit: initializing netlink subsys (disabled)
Jun 20 11:51:43 localhost kernel: audit: type=2000 audit(1718884293.740:1): state=initialized audit_enabled=0 res=1
Jun 20 11:51:43 localhost kernel: thermal_sys: Registered thermal governor 'fair_share'
Jun 20 11:51:43 localhost kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jun 20 11:51:43 localhost kernel: thermal_sys: Registered thermal governor 'step_wise'
Jun 20 11:51:43 localhost kernel: thermal_sys: Registered thermal governor 'user_space'
Jun 20 11:51:43 localhost kernel: thermal_sys: Registered thermal governor 'power_allocator'
Jun 20 11:51:43 localhost kernel: cpuidle: using governor ladder
Jun 20 11:51:43 localhost kernel: cpuidle: using governor menu
Jun 20 11:51:43 localhost kernel: Detected 1 PCC Subspaces
Jun 20 11:51:43 localhost kernel: Registering PCC driver as Mailbox controller
Jun 20 11:51:43 localhost kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jun 20 11:51:43 localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 20 11:51:43 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
Jun 20 11:51:43 localhost kernel: PCI: not using MMCONFIG
Jun 20 11:51:43 localhost kernel: PCI: Using configuration type 1 for base access
Jun 20 11:51:43 localhost kernel: PCI: Dell System detected, enabling pci=bfsort.
Jun 20 11:51:43 localhost kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Jun 20 11:51:43 localhost kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Jun 20 11:51:43 localhost kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Jun 20 11:51:43 localhost kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Jun 20 11:51:43 localhost kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Jun 20 11:51:43 localhost kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Jun 20 11:51:43 localhost kernel: ACPI: Added _OSI(Module Device)
Jun 20 11:51:43 localhost kernel: ACPI: Added _OSI(Processor Device)
Jun 20 11:51:43 localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 20 11:51:43 localhost kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 20 11:51:43 localhost kernel: ACPI: 6 ACPI AML tables successfully acquired and loaded
Jun 20 11:51:43 localhost kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Jun 20 11:51:43 localhost kernel: ACPI: Dynamic OEM Table Load:
Jun 20 11:51:43 localhost kernel: ACPI: _OSC evaluated successfully for all CPUs
Jun 20 11:51:43 localhost kernel: ACPI: Interpreter enabled
Jun 20 11:51:43 localhost kernel: ACPI: PM: (supports S0 S5)
Jun 20 11:51:43 localhost kernel: ACPI: Using IOAPIC for interrupt routing
Jun 20 11:51:43 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
Jun 20 11:51:43 localhost kernel: [Firmware Info]: PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] not reserved in ACPI motherboard resources
Jun 20 11:51:43 localhost kernel: PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved as EfiMemoryMappedIO
Jun 20 11:51:43 localhost kernel: HEST: Table parsing has been initialized.
Jun 20 11:51:43 localhost kernel: GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
Jun 20 11:51:43 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 20 11:51:43 localhost kernel: PCI: Using E820 reservations for host bridge windows
Jun 20 11:51:43 localhost kernel: ACPI: Enabled 5 GPEs in block 00 to 7F
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-16])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:00
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [io  0x1000-0x3fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xfe010000-0xfe010fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x90000000-0x9d7fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x380000000000-0x383fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [bus 00-16]
Jun 20 11:51:43 localhost kernel: pci 0000:00:00.0: [8086:2020] type 00 class 0x060000
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.0: [8086:2024] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.2: [8086:2025] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.4: [8086:2026] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.4: reg 0x10: [mem 0x93020000-0x93020fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.0: [8086:2014] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.1: [8086:2015] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.2: [8086:2016] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.0: [8086:a1ec] type 00 class 0xff0000
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.0: device has non-compliant BARs; disabling IO/MEM decoding
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: [8086:a1d2] type 00 class 0x010601
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x10: [mem 0x93016000-0x93017fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x14: [mem 0x9301f000-0x9301f0ff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x18: [io  0x2068-0x206f]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x1c: [io  0x2074-0x2077]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x20: [io  0x2040-0x205f]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x24: [mem 0x92f80000-0x92ffffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: PME# supported from D3hot
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.0: [8086:a1af] type 00 class 0x0c0330
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.0: reg 0x10: [mem 0x93000000-0x9300ffff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.2: [8086:a1b1] type 00 class 0x118000
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.2: reg 0x10: [mem 0x9301c000-0x9301cfff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.0: [8086:a1ba] type 00 class 0x078000
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.0: reg 0x10: [mem 0x9301b000-0x9301bfff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.0: PME# supported from D3hot
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.1: [8086:a1bb] type 00 class 0x078000
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.1: reg 0x10: [mem 0x9301a000-0x9301afff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.1: PME# supported from D3hot
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.4: [8086:a1be] type 00 class 0x078000
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.4: reg 0x10: [mem 0x93019000-0x93019fff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.4: PME# supported from D3hot
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: [8086:a182] type 00 class 0x010601
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x10: [mem 0x93014000-0x93015fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x14: [mem 0x9301e000-0x9301e0ff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x18: [io  0x2060-0x2067]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x1c: [io  0x2070-0x2073]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x20: [io  0x2020-0x203f]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x24: [mem 0x92f00000-0x92f7ffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: PME# supported from D3hot
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: [8086:a190] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4: [8086:a194] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: [8086:a195] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.0: [8086:a1c1] type 00 class 0x060100
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.2: [8086:a1a1] type 00 class 0x058000
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.2: reg 0x10: [mem 0x93010000-0x93013fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.4: [8086:a1a3] type 00 class 0x0c0500
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x93018000-0x930180ff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.4: reg 0x20: [io  0x2000-0x201f]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.5: [8086:a1a4] type 00 class 0x0c8000
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0:   bridge window [mem 0x92a00000-0x92dfffff]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0: [1556:be00] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4: PCI bridge to [bus 02-03]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4:   bridge window [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:03: extended config space not accessible
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: [102b:0536] type 00 class 0x030000
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: reg 0x10: [mem 0x91000000-0x91ffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: reg 0x14: [mem 0x92808000-0x9280bfff]
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: reg 0x18: [mem 0x92000000-0x927fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: BAR 0: assigned to efifb
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0:   bridge window [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: [14e4:165f] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: reg 0x10: [mem 0x92e30000-0x92e3ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: reg 0x18: [mem 0x92e40000-0x92e4ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: reg 0x20: [mem 0x92e50000-0x92e5ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:00:1c.5 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: [14e4:165f] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: reg 0x10: [mem 0x92e00000-0x92e0ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: reg 0x18: [mem 0x92e10000-0x92e1ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: reg 0x20: [mem 0x92e20000-0x92e2ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 04]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5:   bridge window [mem 0x92e00000-0x92efffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: on NUMA node 0
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 6
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 5
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 11
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 6
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 5
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 17-39])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:17
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: root bus resource [io  0x4000-0x5fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: root bus resource [mem 0x9d800000-0xaaffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: root bus resource [mem 0x384000000000-0x387fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: root bus resource [bus 17-39]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0: [8086:2032] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.4: reg 0x10: [mem 0x9da00000-0x9da00fff]
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.0: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.1: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.2: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.3: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.4: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.5: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.6: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.7: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:09.0: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:09.1: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.0: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.1: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.2: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.3: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.4: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.5: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.6: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.7: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0f.0: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0f.1: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.0: [8086:2054] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.1: [8086:2055] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.2: [8086:2056] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.3: [8086:2057] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.0: [8086:2080] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.1: [8086:2081] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.2: [8086:2082] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.3: [8086:2083] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.4: [8086:2084] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.5: [8086:2085] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.6: [8086:2086] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: [1000:005d] type 00 class 0x010400
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: reg 0x10: [io  0x4000-0x40ff]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: reg 0x14: [mem 0x9d900000-0x9d90ffff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: reg 0x1c: [mem 0x9d800000-0x9d8fffff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: quirk_blacklist_vpd+0x0/0x30 took 11718 usecs
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: supports D1 D2
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0: PCI bridge to [bus 18]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0:   bridge window [io  0x4000-0x4fff]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0:   bridge window [mem 0x9d800000-0x9d9fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: on NUMA node 0
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 3a-5c])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:3a
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: root bus resource [io  0x6000-0x7fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: root bus resource [mem 0xab000000-0xb87fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: root bus resource [mem 0x388000000000-0x38bfffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: root bus resource [bus 3a-5c]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: [8086:2030] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.4: reg 0x10: [mem 0xb0000000-0xb0000fff]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:08.0: [8086:2066] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:09.0: [8086:2066] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.0: [8086:2040] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.1: [8086:2041] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.2: [8086:2042] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.3: [8086:2043] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.4: [8086:2044] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.5: [8086:2045] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.6: [8086:2046] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.7: [8086:2047] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.0: [8086:2048] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.1: [8086:2049] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.2: [8086:204a] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.3: [8086:204b] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.0: [8086:2040] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.1: [8086:2041] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.2: [8086:2042] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.3: [8086:2043] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.4: [8086:2044] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.5: [8086:2045] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.6: [8086:2046] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.7: [8086:2047] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.0: [8086:2048] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.1: [8086:2049] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.2: [8086:204a] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.3: [8086:204b] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: [15b3:101d] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: reg 0x10: [mem 0xae000000-0xafffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: PME# supported from D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: reg 0x1a4: [mem 0x00000000-0x000fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: VF(n) BAR0 space: [mem 0x00000000-0x07efffff 64bit pref] (contains BAR0 for 127 VFs)
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:3a:00.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: [15b3:101d] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: reg 0x10: [mem 0xac000000-0xadffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: reg 0x30: [mem 0xfff00000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: PME# supported from D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: reg 0x1a4: [mem 0x00000000-0x000fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: VF(n) BAR0 space: [mem 0x00000000-0x07efffff 64bit pref] (contains BAR0 for 127 VFs)
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: PCI bridge to [bus 3b]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0:   bridge window [mem 0xac000000-0xafffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: on NUMA node 0
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC03] (domain 0000 [bus 5d-7f])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:5d
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: root bus resource [io  0x8000-0x9fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: root bus resource [mem 0xb8800000-0xc5ffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: root bus resource [mem 0x38c000000000-0x38ffffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: root bus resource [bus 5d-7f]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: [8086:2030] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: enabling Extended Tags
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.4: reg 0x10: [mem 0xb8900000-0xb8900fff]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0e.0: [8086:2058] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0e.1: [8086:2059] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0f.0: [8086:2058] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0f.1: [8086:2059] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.0: [8086:204c] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.1: [8086:204d] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.2: [8086:204e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:15.0: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:15.1: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.0: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.1: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.4: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.5: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: [14e4:165f] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: reg 0x10: [mem 0xb8830000-0xb883ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: reg 0x18: [mem 0xb8840000-0xb884ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: reg 0x20: [mem 0xb8850000-0xb885ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: [14e4:165f] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: reg 0x10: [mem 0xb8800000-0xb880ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: reg 0x18: [mem 0xb8810000-0xb881ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: reg 0x20: [mem 0xb8820000-0xb882ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: PCI bridge to [bus 5e]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0:   bridge window [mem 0xb8800000-0xb88fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: on NUMA node 0
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC06] (domain 0000 [bus 80-84])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:06: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:06: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:06: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:06: host bridge window [io  0x0000 window] (ignored, not CPU addressable)
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:80
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: root bus resource [mem 0xc6000000-0xd37fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: root bus resource [mem 0x390000000000-0x393fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: root bus resource [bus 80-84]
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.0: [8086:2024] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.2: [8086:2025] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.4: [8086:2026] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.4: reg 0x10: [mem 0xc6000000-0xc6000fff]
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.0: [8086:2014] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.1: [8086:2015] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.2: [8086:2016] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: on NUMA node 1
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC07] (domain 0000 [bus 85-ad])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:07: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:07: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:07: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:85
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: root bus resource [io  0xa000-0xbfff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: root bus resource [mem 0xd3800000-0xe0ffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: root bus resource [mem 0x394000000000-0x397fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: root bus resource [bus 85-ad]
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.4: reg 0x10: [mem 0xd3800000-0xd3800fff]
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.0: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.1: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.2: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.3: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.4: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.5: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.6: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.7: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:09.0: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:09.1: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.0: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.1: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.2: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.3: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.4: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.5: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.6: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.7: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0f.0: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0f.1: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.0: [8086:2054] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.1: [8086:2055] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.2: [8086:2056] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.3: [8086:2057] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.0: [8086:2080] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.1: [8086:2081] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.2: [8086:2082] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.3: [8086:2083] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.4: [8086:2084] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.5: [8086:2085] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.6: [8086:2086] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: on NUMA node 1
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC08] (domain 0000 [bus ae-d6])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:08: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:08: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:08: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:08: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:ae
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: root bus resource [io  0xc000-0xdfff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: root bus resource [mem 0xe1000000-0xee7fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: root bus resource [mem 0x398000000000-0x39bfffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: root bus resource [bus ae-d6]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: [8086:2030] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.4: reg 0x10: [mem 0xe1100000-0xe1100fff]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:08.0: [8086:2066] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:09.0: [8086:2066] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.0: [8086:2040] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.1: [8086:2041] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.2: [8086:2042] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.3: [8086:2043] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.4: [8086:2044] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.5: [8086:2045] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.6: [8086:2046] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.7: [8086:2047] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.0: [8086:2048] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.1: [8086:2049] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.2: [8086:204a] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.3: [8086:204b] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.0: [8086:2040] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.1: [8086:2041] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.2: [8086:2042] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.3: [8086:2043] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.4: [8086:2044] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.5: [8086:2045] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.6: [8086:2046] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.7: [8086:2047] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.0: [8086:2048] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.1: [8086:2049] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.2: [8086:204a] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.3: [8086:204b] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: [15b3:a2d6] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: reg 0x10: [mem 0x39bffc000000-0x39bffdffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: reg 0x18: [mem 0x39bffe800000-0x39bffeffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: PME# supported from D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: reg 0x1a4: [mem 0x00000000-0x001fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0fdfffff 64bit pref] (contains BAR0 for 127 VFs)
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:ae:00.0 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: [15b3:a2d6] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: reg 0x10: [mem 0x39bffa000000-0x39bffbffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: reg 0x18: [mem 0x39bffe000000-0x39bffe7fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: reg 0x30: [mem 0xfff00000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: PME# supported from D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: reg 0x1a4: [mem 0x00000000-0x001fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: VF(n) BAR0 space: [mem 0x00000000-0x0fdfffff 64bit pref] (contains BAR0 for 127 VFs)
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.2: [15b3:c2d3] type 00 class 0x080100
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.2: reg 0x10: [mem 0xe1000000-0xe10fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.2: PME# supported from D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: PCI bridge to [bus af]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0xe1000000-0xe10fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0x39bffa000000-0x39bffeffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: bridge has subordinate af but max busn b0
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: on NUMA node 1
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC09] (domain 0000 [bus d7-ff])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:09: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:09: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:09: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:09: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:d7
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: root bus resource [io  0xe000-0xffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: root bus resource [mem 0xee800000-0xfbffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: root bus resource [mem 0x39c000000000-0x39ffffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: root bus resource [bus d7-ff]
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.4: reg 0x10: [mem 0xee800000-0xee800fff]
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0e.0: [8086:2058] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0e.1: [8086:2059] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0f.0: [8086:2058] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0f.1: [8086:2059] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.0: [8086:204c] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.1: [8086:204d] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.2: [8086:204e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:15.0: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:15.1: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.0: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.1: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.4: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.5: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: on NUMA node 1
Jun 20 11:51:43 localhost kernel: iommu: Default domain type: Translated
Jun 20 11:51:43 localhost kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Jun 20 11:51:43 localhost kernel: pps_core: LinuxPPS API ver. 1 registered
Jun 20 11:51:43 localhost kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun 20 11:51:43 localhost kernel: PTP clock support registered
Jun 20 11:51:43 localhost kernel: EDAC MC: Ver: 3.0.0
Jun 20 11:51:43 localhost kernel: efivars: Registered efivars operations
Jun 20 11:51:43 localhost kernel: NetLabel: Initializing
Jun 20 11:51:43 localhost kernel: NetLabel:  domain hash size = 128
Jun 20 11:51:43 localhost kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jun 20 11:51:43 localhost kernel: NetLabel:  unlabeled traffic allowed by default
Jun 20 11:51:43 localhost kernel: PCI: Using ACPI for IRQ routing
Jun 20 11:51:43 localhost kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4baed020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4bbac020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4bc6b020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4bc9d020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4bccf020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4bd8e020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4be4d020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4be66020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4be98020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4beca020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x682ff000-0x6bffffff]
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: vgaarb: setting as boot VGA device
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: vgaarb: bridge control possible
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jun 20 11:51:43 localhost kernel: vgaarb: loaded
Jun 20 11:51:43 localhost kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Jun 20 11:51:43 localhost kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Jun 20 11:51:43 localhost kernel: clocksource: Switched to clocksource tsc-early
Jun 20 11:51:43 localhost kernel: VFS: Disk quotas dquot_6.6.0
Jun 20 11:51:43 localhost kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 20 11:51:43 localhost kernel: AppArmor: AppArmor Filesystem Enabled
Jun 20 11:51:43 localhost kernel: pnp: PnP ACPI init
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0500-0x05fe] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0400-0x047f] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0600-0x061f] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0ca0-0x0ca5] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0880-0x0883] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0800-0x081f] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfed1c000-0xfed3ffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfed45000-0xfed8bfff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xff000000-0xffffffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfed12000-0xfed1200f] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfed12010-0xfed1201f] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfd000000-0xfdabffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfdad0000-0xfdadffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfdb00000-0xfdffffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfe000000-0xfe00ffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfe011000-0xfe01ffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfe036000-0xfe03bfff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfe03d000-0xfe3fffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfe410000-0xfe7fffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:05: [io  0x1000-0x10fe] has been reserved
Jun 20 11:51:43 localhost kernel: pnp: PnP ACPI: found 6 devices
Jun 20 11:51:43 localhost kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jun 20 11:51:43 localhost kernel: NET: Registered PF_INET protocol family
Jun 20 11:51:43 localhost kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
Jun 20 11:51:43 localhost kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: TCP: Hash tables configured (established 524288 bind 65536)
Jun 20 11:51:43 localhost kernel: MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Jun 20 11:51:43 localhost kernel: NET: Registered PF_XDP protocol family
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0x380000000000-0x3800001fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: BAR 14: assigned [mem 0x90000000-0x900fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x3000-0x3fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0:   bridge window [mem 0x92a00000-0x92dfffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0:   bridge window [mem 0x380000000000-0x3800001fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0:   bridge window [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4: PCI bridge to [bus 02-03]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4:   bridge window [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: BAR 6: assigned [mem 0x90000000-0x9003ffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 04]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5:   bridge window [mem 0x90000000-0x900fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5:   bridge window [mem 0x92e00000-0x92efffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 5 [io  0x1000-0x3fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 7 [mem 0x000c4000-0x000c7fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 8 [mem 0xfe010000-0xfe010fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 9 [mem 0x90000000-0x9d7fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 10 [mem 0x380000000000-0x383fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:01: resource 1 [mem 0x92a00000-0x92dfffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:01: resource 2 [mem 0x380000000000-0x3800001fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:02: resource 1 [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:02: resource 2 [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:03: resource 1 [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:03: resource 2 [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:04: resource 1 [mem 0x90000000-0x900fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:04: resource 2 [mem 0x92e00000-0x92efffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: BAR 6: no space for [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0: PCI bridge to [bus 18]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0:   bridge window [io  0x4000-0x4fff]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0:   bridge window [mem 0x9d800000-0x9d9fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: resource 4 [io  0x4000-0x5fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: resource 5 [mem 0x9d800000-0xaaffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: resource 6 [mem 0x384000000000-0x387fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:18: resource 0 [io  0x4000-0x4fff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:18: resource 1 [mem 0x9d800000-0x9d9fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: max bus depth: 1 pci_try_num: 2
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: BAR 14: assigned [mem 0xab000000-0xab1fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: BAR 6: assigned [mem 0xab000000-0xab0fffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: BAR 7: no space for [mem size 0x07f00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: BAR 7: failed to assign [mem size 0x07f00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: BAR 6: assigned [mem 0xab100000-0xab1fffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: BAR 7: no space for [mem size 0x07f00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: BAR 7: failed to assign [mem size 0x07f00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: PCI bridge to [bus 3b]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0:   bridge window [mem 0xab000000-0xab1fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0:   bridge window [mem 0xac000000-0xafffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: No. 2 try to assign unassigned res
Jun 20 11:51:43 localhost kernel: release child resource [mem 0xac000000-0xadffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: release child resource [mem 0xae000000-0xafffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: resource 15 [mem 0xac000000-0xafffffff 64bit pref] released
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: PCI bridge to [bus 3b]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: bridge window [mem 0x02000000-0x05ffffff 64bit pref] to [bus 3b] add_size 10000000 add_align 2000000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: BAR 15: assigned [mem 0x388000000000-0x388013ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: BAR 0: assigned [mem 0x388000000000-0x388001ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: BAR 0: assigned [mem 0x388002000000-0x388003ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: BAR 7: assigned [mem 0x388004000000-0x38800befffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: BAR 7: assigned [mem 0x38800bf00000-0x388013dfffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: PCI bridge to [bus 3b]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0:   bridge window [mem 0xab000000-0xab1fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0:   bridge window [mem 0x388000000000-0x388013ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: resource 4 [io  0x6000-0x7fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: resource 5 [mem 0xab000000-0xb87fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: resource 6 [mem 0x388000000000-0x38bfffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3b: resource 1 [mem 0xab000000-0xab1fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3b: resource 2 [mem 0x388000000000-0x388013ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: BAR 14: assigned [mem 0xb8a00000-0xb8afffff]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: BAR 6: assigned [mem 0xb8a00000-0xb8a3ffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: BAR 6: assigned [mem 0xb8a40000-0xb8a7ffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: PCI bridge to [bus 5e]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0:   bridge window [mem 0xb8a00000-0xb8afffff]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0:   bridge window [mem 0xb8800000-0xb88fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: resource 4 [io  0x8000-0x9fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: resource 5 [mem 0xb8800000-0xc5ffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: resource 6 [mem 0x38c000000000-0x38ffffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5e: resource 1 [mem 0xb8a00000-0xb8afffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5e: resource 2 [mem 0xb8800000-0xb88fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: resource 4 [mem 0xc6000000-0xd37fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: resource 5 [mem 0x390000000000-0x393fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: resource 4 [io  0xa000-0xbfff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: resource 5 [mem 0xd3800000-0xe0ffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: resource 6 [mem 0x394000000000-0x397fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: max bus depth: 1 pci_try_num: 2
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 7: no space for [mem size 0x0fe00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 7: failed to assign [mem size 0x0fe00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 7: no space for [mem size 0x0fe00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 7: failed to assign [mem size 0x0fe00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 6: no space for [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 6: no space for [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 6: failed to assign [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: PCI bridge to [bus af]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0xe1000000-0xe10fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0x39bffa000000-0x39bffeffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: No. 2 try to assign unassigned res
Jun 20 11:51:43 localhost kernel: release child resource [mem 0x39bffa000000-0x39bffbffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: release child resource [mem 0x39bffc000000-0x39bffdffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: release child resource [mem 0x39bffe000000-0x39bffe7fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: release child resource [mem 0x39bffe800000-0x39bffeffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: resource 15 [mem 0x39bffa000000-0x39bffeffffff 64bit pref] released
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: PCI bridge to [bus af]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: bridge window [mem 0x01000000-0x05ffffff 64bit pref] to [bus af] add_size 20000000 add_align 1000000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: BAR 15: assigned [mem 0x398000000000-0x398024ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 0: assigned [mem 0x398000000000-0x398001ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 0: assigned [mem 0x398002000000-0x398003ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 2: assigned [mem 0x398004000000-0x3980047fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 2: assigned [mem 0x398004800000-0x398004ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 7: assigned [mem 0x398005000000-0x398014dfffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 7: assigned [mem 0x398014e00000-0x398024bfffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: PCI bridge to [bus af]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0xe1000000-0xe10fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0x398000000000-0x398024ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: resource 4 [io  0xc000-0xdfff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: resource 5 [mem 0xe1000000-0xee7fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: resource 6 [mem 0x398000000000-0x39bfffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:af: resource 1 [mem 0xe1000000-0xe10fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:af: resource 2 [mem 0x398000000000-0x398024ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: resource 4 [io  0xe000-0xffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: resource 5 [mem 0xee800000-0xfbffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: resource 6 [mem 0x39c000000000-0x39ffffffffff window]
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: PCI: CLS 0 bytes, default 64
Jun 20 11:51:43 localhost kernel: Trying to unpack rootfs image as initramfs...
Jun 20 11:51:43 localhost kernel: DMAR: No SATC found
Jun 20 11:51:43 localhost kernel: DMAR: dmar6: Using Queued invalidation
Jun 20 11:51:43 localhost kernel: DMAR: dmar5: Using Queued invalidation
Jun 20 11:51:43 localhost kernel: DMAR: dmar4: Using Queued invalidation
Jun 20 11:51:43 localhost kernel: DMAR: dmar2: Using Queued invalidation
Jun 20 11:51:43 localhost kernel: DMAR: dmar7: Using Queued invalidation
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: Adding to iommu group 0
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: Adding to iommu group 1
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: Adding to iommu group 1
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: Adding to iommu group 2
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: Adding to iommu group 3
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: Adding to iommu group 4
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0: Adding to iommu group 5
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: Adding to iommu group 6
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: Adding to iommu group 7
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: Adding to iommu group 8
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: Adding to iommu group 9
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.2: Adding to iommu group 10
Jun 20 11:51:43 localhost kernel: pci 0000:00:00.0: Adding to iommu group 11
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.0: Adding to iommu group 12
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.2: Adding to iommu group 13
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.4: Adding to iommu group 14
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.0: Adding to iommu group 15
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.1: Adding to iommu group 16
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.2: Adding to iommu group 17
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.0: Adding to iommu group 18
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: Adding to iommu group 18
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.0: Adding to iommu group 19
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.2: Adding to iommu group 19
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.0: Adding to iommu group 20
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.1: Adding to iommu group 20
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.4: Adding to iommu group 20
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: Adding to iommu group 21
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: Adding to iommu group 22
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4: Adding to iommu group 23
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: Adding to iommu group 24
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.0: Adding to iommu group 25
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.2: Adding to iommu group 25
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.4: Adding to iommu group 25
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.5: Adding to iommu group 25
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0: Adding to iommu group 26
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: Adding to iommu group 26
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: Adding to iommu group 27
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: Adding to iommu group 27
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.0: Adding to iommu group 28
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.2: Adding to iommu group 29
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.4: Adding to iommu group 30
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.0: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.1: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.2: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.3: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.4: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.5: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.6: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.7: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:09.0: Adding to iommu group 32
Jun 20 11:51:43 localhost kernel: pci 0000:17:09.1: Adding to iommu group 32
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.0: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.1: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.2: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.3: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.4: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.5: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.6: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.7: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0f.0: Adding to iommu group 34
Jun 20 11:51:43 localhost kernel: pci 0000:17:0f.1: Adding to iommu group 34
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.0: Adding to iommu group 35
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.1: Adding to iommu group 35
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.2: Adding to iommu group 35
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.3: Adding to iommu group 35
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.0: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.1: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.2: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.3: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.4: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.5: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.6: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.0: Adding to iommu group 37
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.2: Adding to iommu group 38
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.4: Adding to iommu group 39
Jun 20 11:51:43 localhost kernel: pci 0000:3a:08.0: Adding to iommu group 40
Jun 20 11:51:43 localhost kernel: pci 0000:3a:09.0: Adding to iommu group 41
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.0: Adding to iommu group 42
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.1: Adding to iommu group 43
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.2: Adding to iommu group 44
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.3: Adding to iommu group 45
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.4: Adding to iommu group 46
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.5: Adding to iommu group 47
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.6: Adding to iommu group 48
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.7: Adding to iommu group 49
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.0: Adding to iommu group 50
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.1: Adding to iommu group 51
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.2: Adding to iommu group 52
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.3: Adding to iommu group 53
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.0: Adding to iommu group 54
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.1: Adding to iommu group 55
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.2: Adding to iommu group 56
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.3: Adding to iommu group 57
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.4: Adding to iommu group 58
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.5: Adding to iommu group 59
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.6: Adding to iommu group 60
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.7: Adding to iommu group 61
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.0: Adding to iommu group 62
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.1: Adding to iommu group 63
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.2: Adding to iommu group 64
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.3: Adding to iommu group 65
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.0: Adding to iommu group 66
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.2: Adding to iommu group 67
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.4: Adding to iommu group 68
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0e.0: Adding to iommu group 69
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0e.1: Adding to iommu group 70
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0f.0: Adding to iommu group 71
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0f.1: Adding to iommu group 72
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.0: Adding to iommu group 73
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.1: Adding to iommu group 74
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.2: Adding to iommu group 74
Jun 20 11:51:43 localhost kernel: pci 0000:5d:15.0: Adding to iommu group 75
Jun 20 11:51:43 localhost kernel: pci 0000:5d:15.1: Adding to iommu group 75
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.0: Adding to iommu group 76
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.1: Adding to iommu group 76
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.4: Adding to iommu group 76
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.5: Adding to iommu group 76
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.0: Adding to iommu group 77
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.2: Adding to iommu group 78
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.4: Adding to iommu group 79
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.0: Adding to iommu group 80
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.1: Adding to iommu group 81
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.2: Adding to iommu group 82
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.0: Adding to iommu group 83
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.2: Adding to iommu group 84
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.4: Adding to iommu group 85
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.0: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.1: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.2: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.3: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.4: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.5: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.6: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.7: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:09.0: Adding to iommu group 87
Jun 20 11:51:43 localhost kernel: pci 0000:85:09.1: Adding to iommu group 87
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.0: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.1: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.2: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.3: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.4: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.5: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.6: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.7: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0f.0: Adding to iommu group 89
Jun 20 11:51:43 localhost kernel: pci 0000:85:0f.1: Adding to iommu group 89
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.0: Adding to iommu group 90
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.1: Adding to iommu group 90
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.2: Adding to iommu group 90
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.3: Adding to iommu group 90
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.0: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.1: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.2: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.3: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.4: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.5: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.6: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.0: Adding to iommu group 92
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.2: Adding to iommu group 93
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.4: Adding to iommu group 94
Jun 20 11:51:43 localhost kernel: pci 0000:ae:08.0: Adding to iommu group 95
Jun 20 11:51:43 localhost kernel: pci 0000:ae:09.0: Adding to iommu group 96
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.0: Adding to iommu group 97
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.1: Adding to iommu group 98
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.2: Adding to iommu group 99
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.3: Adding to iommu group 100
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.4: Adding to iommu group 101
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.5: Adding to iommu group 102
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.6: Adding to iommu group 103
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.7: Adding to iommu group 104
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.0: Adding to iommu group 105
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.1: Adding to iommu group 106
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.2: Adding to iommu group 107
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.3: Adding to iommu group 108
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.0: Adding to iommu group 109
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.1: Adding to iommu group 110
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.2: Adding to iommu group 111
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.3: Adding to iommu group 112
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.4: Adding to iommu group 113
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.5: Adding to iommu group 114
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.6: Adding to iommu group 115
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.7: Adding to iommu group 116
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.0: Adding to iommu group 117
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.1: Adding to iommu group 118
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.2: Adding to iommu group 119
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.3: Adding to iommu group 120
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.0: Adding to iommu group 121
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.2: Adding to iommu group 122
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.4: Adding to iommu group 123
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0e.0: Adding to iommu group 124
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0e.1: Adding to iommu group 125
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0f.0: Adding to iommu group 126
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0f.1: Adding to iommu group 127
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.0: Adding to iommu group 128
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.1: Adding to iommu group 129
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.2: Adding to iommu group 129
Jun 20 11:51:43 localhost kernel: pci 0000:d7:15.0: Adding to iommu group 130
Jun 20 11:51:43 localhost kernel: pci 0000:d7:15.1: Adding to iommu group 130
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.0: Adding to iommu group 131
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.1: Adding to iommu group 131
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.4: Adding to iommu group 131
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.5: Adding to iommu group 131
Jun 20 11:51:43 localhost kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
Jun 20 11:51:43 localhost kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun 20 11:51:43 localhost kernel: software IO TLB: mapped [mem 0x00000000611ff000-0x00000000651ff000] (64MB)
Jun 20 11:51:43 localhost kernel: Initialise system trusted keyrings
Jun 20 11:51:43 localhost kernel: Key type blacklist registered
Jun 20 11:51:43 localhost kernel: workingset: timestamp_bits=36 max_order=25 bucket_order=0
Jun 20 11:51:43 localhost kernel: zbud: loaded
Jun 20 11:51:43 localhost kernel: fuse: init (API version 7.39)
Jun 20 11:51:43 localhost kernel: integrity: Platform Keyring initialized
Jun 20 11:51:43 localhost kernel: integrity: Machine keyring initialized
Jun 20 11:51:43 localhost kernel: Key type asymmetric registered
Jun 20 11:51:43 localhost kernel: Asymmetric key parser 'x509' registered
Jun 20 11:51:43 localhost kernel: Freeing initrd memory: 32624K
Jun 20 11:51:43 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
Jun 20 11:51:43 localhost kernel: io scheduler mq-deadline registered
Jun 20 11:51:43 localhost kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 24
Jun 20 11:51:43 localhost kernel: pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Jun 20 11:51:43 localhost kernel: pcieport 0000:00:1c.4: PME: Signaling with IRQ 25
Jun 20 11:51:43 localhost kernel: pcieport 0000:00:1c.5: PME: Signaling with IRQ 26
Jun 20 11:51:43 localhost kernel: pcieport 0000:17:02.0: PME: Signaling with IRQ 28
Jun 20 11:51:43 localhost kernel: pcieport 0000:3a:00.0: PME: Signaling with IRQ 30
Jun 20 11:51:43 localhost kernel: pcieport 0000:5d:00.0: PME: Signaling with IRQ 32
Jun 20 11:51:43 localhost kernel: pcieport 0000:ae:00.0: PME: Signaling with IRQ 34
Jun 20 11:51:43 localhost kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun 20 11:51:43 localhost kernel: efifb: probing for efifb
Jun 20 11:51:43 localhost kernel: efifb: framebuffer at 0x91000000, using 3072k, total 3072k
Jun 20 11:51:43 localhost kernel: efifb: mode is 1024x768x32, linelength=4096, pages=1
Jun 20 11:51:43 localhost kernel: efifb: scrolling: redraw
Jun 20 11:51:43 localhost kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jun 20 11:51:43 localhost kernel: Console: switching to colour frame buffer device 128x48
Jun 20 11:51:43 localhost kernel: fb0: EFI VGA frame buffer device
Jun 20 11:51:43 localhost kernel: Monitor-Mwait will be used to enter C-1 state
Jun 20 11:51:43 localhost kernel: ACPI: \_SB_.SCK0.CP00: Found 1 idle states
Jun 20 11:51:43 localhost kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
Jun 20 11:51:43 localhost kernel: pstore: Using crash dump compression: deflate
Jun 20 11:51:43 localhost kernel: pstore: Registered erst as persistent store backend
Jun 20 11:51:43 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Jun 20 11:51:43 localhost kernel: 00:02: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
Jun 20 11:51:43 localhost kernel: 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Jun 20 11:51:43 localhost kernel: Linux agpgart interface v0.103
Jun 20 11:51:43 localhost kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
Jun 20 11:51:43 localhost kernel: i8042: PNP: No PS/2 controller found.
Jun 20 11:51:43 localhost kernel: mousedev: PS/2 mouse device common for all mice
Jun 20 11:51:43 localhost kernel: rtc_cmos 00:00: RTC can wake from S4
Jun 20 11:51:43 localhost kernel: rtc_cmos 00:00: registered as rtc0
Jun 20 11:51:43 localhost kernel: rtc_cmos 00:00: setting system clock to 2024-06-20T11:51:41 UTC (1718884301)
Jun 20 11:51:43 localhost kernel: rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram
Jun 20 11:51:43 localhost kernel: intel_pstate: Intel P-state driver initializing
Jun 20 11:51:43 localhost kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jun 20 11:51:43 localhost kernel: NET: Registered PF_INET6 protocol family
Jun 20 11:51:43 localhost kernel: Segment Routing with IPv6
Jun 20 11:51:43 localhost kernel: In-situ OAM (IOAM) with IPv6
Jun 20 11:51:43 localhost kernel: mip6: Mobile IPv6
Jun 20 11:51:43 localhost kernel: NET: Registered PF_PACKET protocol family
Jun 20 11:51:43 localhost kernel: mpls_gso: MPLS GSO support
Jun 20 11:51:43 localhost kernel: microcode: Microcode Update Driver: v2.2.
Jun 20 11:51:43 localhost kernel: tsc: Refined TSC clocksource calibration: 2095.077 MHz
Jun 20 11:51:43 localhost kernel: resctrl: MB allocation detected
Jun 20 11:51:43 localhost kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e33060eadb, max_idle_ns: 440795261188 ns
Jun 20 11:51:43 localhost kernel: resctrl: L3 monitoring detected
Jun 20 11:51:43 localhost kernel: IPI shorthand broadcast: enabled
Jun 20 11:51:43 localhost kernel: clocksource: Switched to clocksource tsc
Jun 20 11:51:43 localhost kernel: sched_clock: Marking stable (9024001236, 136757006)->(9463591876, -302833634)
Jun 20 11:51:43 localhost kernel: registered taskstats version 1
Jun 20 11:51:43 localhost kernel: Loading compiled-in X.509 certificates
Jun 20 11:51:43 localhost kernel: Loaded X.509 cert 'Build time autogenerated kernel key: eb1a22c3035f28ea7cb3c332b220c5a6366bed53'
Jun 20 11:51:43 localhost kernel: Key type .fscrypt registered
Jun 20 11:51:43 localhost kernel: Key type fscrypt-provisioning registered
Jun 20 11:51:43 localhost kernel: Key type encrypted registered
Jun 20 11:51:43 localhost kernel: AppArmor: AppArmor sha1 policy hashing enabled
Jun 20 11:51:43 localhost kernel: integrity: Loading X.509 certificate: UEFI:db
Jun 20 11:51:43 localhost kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
Jun 20 11:51:43 localhost kernel: integrity: Loading X.509 certificate: UEFI:db
Jun 20 11:51:43 localhost kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
Jun 20 11:51:43 localhost kernel: integrity: Loading X.509 certificate: UEFI:db
Jun 20 11:51:43 localhost kernel: integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
Jun 20 11:51:43 localhost kernel: integrity: Loading X.509 certificate: UEFI:db
Jun 20 11:51:43 localhost kernel: integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
Jun 20 11:51:43 localhost kernel: ima: No TPM chip found, activating TPM-bypass!
Jun 20 11:51:43 localhost kernel: ima: Allocated hash algorithm: sha256
Jun 20 11:51:43 localhost kernel: ima: No architecture policies found
Jun 20 11:51:43 localhost kernel: evm: Initialising EVM extended attributes:
Jun 20 11:51:43 localhost kernel: evm: security.selinux
Jun 20 11:51:43 localhost kernel: evm: security.SMACK64 (disabled)
Jun 20 11:51:43 localhost kernel: evm: security.SMACK64EXEC (disabled)
Jun 20 11:51:43 localhost kernel: evm: security.SMACK64TRANSMUTE (disabled)
Jun 20 11:51:43 localhost kernel: evm: security.SMACK64MMAP (disabled)
Jun 20 11:51:43 localhost kernel: evm: security.apparmor
Jun 20 11:51:43 localhost kernel: evm: security.ima
Jun 20 11:51:43 localhost kernel: evm: security.capability
Jun 20 11:51:43 localhost kernel: evm: HMAC attrs: 0x1
Jun 20 11:51:43 localhost kernel: RAS: Correctable Errors collector initialized.
Jun 20 11:51:43 localhost kernel: clk: Disabling unused clocks
Jun 20 11:51:43 localhost kernel: Freeing unused decrypted memory: 2028K
Jun 20 11:51:43 localhost kernel: Freeing unused kernel image (initmem) memory: 3956K
Jun 20 11:51:43 localhost kernel: Write protecting the kernel read-only data: 28672k
Jun 20 11:51:43 localhost kernel: Freeing unused kernel image (rodata/data gap) memory: 1772K
Jun 20 11:51:43 localhost kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 20 11:51:43 localhost kernel: Run /init as init process
Jun 20 11:51:43 localhost kernel:   with arguments:
Jun 20 11:51:43 localhost kernel:     /init
Jun 20 11:51:43 localhost kernel:   with environment:
Jun 20 11:51:43 localhost kernel:     HOME=/
Jun 20 11:51:43 localhost kernel:     TERM=linux
Jun 20 11:51:43 localhost systemd[1]: Inserted module 'autofs4'
Jun 20 11:51:43 localhost systemd[1]: systemd 254.5-1gardenlinux1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Jun 20 11:51:43 localhost systemd[1]: Detected architecture x86-64.
Jun 20 11:51:43 localhost systemd[1]: Running in initrd.
Jun 20 11:51:43 localhost systemd[1]: No hostname configured, using default hostname.
Jun 20 11:51:43 localhost systemd[1]: Hostname set to <localhost>.
Jun 20 11:51:43 localhost systemd[1]: Initializing machine ID from random generator.
Jun 20 11:51:43 localhost systemd[1]: Queued start job for default target initrd.target.
Jun 20 11:51:43 localhost systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
Jun 20 11:51:43 localhost systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
Jun 20 11:51:43 localhost systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System.
Jun 20 11:51:43 localhost systemd[1]: Reached target paths.target - Path Units.
Jun 20 11:51:43 localhost systemd[1]: Reached target slices.target - Slice Units.
Jun 20 11:51:43 localhost systemd[1]: Reached target swap.target - Swaps.
Jun 20 11:51:43 localhost systemd[1]: Reached target timers.target - Timer Units.
Jun 20 11:51:43 localhost systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
Jun 20 11:51:43 localhost systemd[1]: Listening on systemd-journald.socket - Journal Socket.
Jun 20 11:51:43 localhost systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
Jun 20 11:51:43 localhost systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
Jun 20 11:51:43 localhost systemd[1]: Reached target sockets.target - Socket Units.
Jun 20 11:51:43 localhost systemd[1]: dracut-cmdline-ask.service - dracut ask for additional cmdline parameters was skipped because no trigger condition checks were met.
Jun 20 11:51:43 localhost systemd[1]: Starting dracut-cmdline.service - dracut cmdline hook...
Jun 20 11:51:43 localhost systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
Jun 20 11:51:43 localhost systemd[1]: Started rngd.service - Hardware RNG Entropy Gatherer Daemon.
Jun 20 11:51:43 localhost systemd[1]: Starting systemd-journald.service - Journal Service...
Jun 20 11:51:43 localhost systemd-journald[512]: Collecting audit messages is disabled.
Jun 20 11:51:43 localhost systemd[1]: systemd-modules-load.service - Load Kernel Modules was skipped because no trigger condition checks were met.
Jun 20 11:51:43 localhost systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
Jun 20 11:51:43 localhost systemd[1]: Finished dracut-cmdline.service - dracut cmdline hook.
Jun 20 11:51:43 localhost systemd[1]: Started systemd-journald.service - Journal Service.
Jun 20 11:51:43 localhost kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
Jun 20 11:51:43 localhost kernel: device-mapper: uevent: version 1.0.3
Jun 20 11:51:43 localhost kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
Jun 20 11:51:44 localhost kernel: wmi_bus wmi_bus-PNP0C14:00: WQBC data block query control method not found
Jun 20 11:51:44 localhost kernel: cryptd: max_cpu_qlen set to 1000
Jun 20 11:51:44 localhost kernel: SCSI subsystem initialized
Jun 20 11:51:44 localhost kernel: ACPI: bus type USB registered
Jun 20 11:51:44 localhost kernel: usbcore: registered new interface driver usbfs
Jun 20 11:51:44 localhost kernel: usbcore: registered new interface driver hub
Jun 20 11:51:44 localhost kernel: usbcore: registered new device driver usb
Jun 20 11:51:44 localhost kernel: AVX2 version of gcm_enc/dec engaged.
Jun 20 11:51:44 localhost kernel: AES CTR mode by8 optimization enabled
Jun 20 11:51:44 localhost kernel: megasas: 07.725.01.00-rc1
Jun 20 11:51:44 localhost kernel: libata version 3.00 loaded.
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: BAR:0x1  BAR's base_addr(phys):0x000000009d900000  mapped virt_addr:0x00000000ea24119c
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: FW now in Ready state
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: 63 bit DMA mask and 32 bit consistent mask
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: firmware supports msix        : (96)
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: requested/available msix 33/33 poll_queue 0
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Jun 20 11:51:44 localhost kernel: ahci 0000:00:11.5: version 3.0
Jun 20 11:51:44 localhost kernel: ahci 0000:00:11.5: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
Jun 20 11:51:44 localhost kernel: ahci 0000:00:11.5: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: current msix/online cpus        : (33/32)
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: RDPQ mode        : (disabled)
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: Current firmware supports maximum commands: 928         LDIO threshold: 0
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: Performance mode :Latency (latency index = 1)
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: FW supports sync cache        : No
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: megasas_disable_intr_fusion is called outbound_intr_mask:0x40000009
Jun 20 11:51:44 localhost kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
Jun 20 11:51:44 localhost kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 20 11:51:44 localhost kernel: usb usb1: Product: xHCI Host Controller
Jun 20 11:51:44 localhost kernel: usb usb1: Manufacturer: Linux 6.6.12-amd64 xhci-hcd
Jun 20 11:51:44 localhost kernel: usb usb1: SerialNumber: 0000:00:14.0
Jun 20 11:51:44 localhost kernel: hub 1-0:1.0: USB hub found
Jun 20 11:51:44 localhost kernel: hub 1-0:1.0: 16 ports detected
Jun 20 11:51:44 localhost kernel: scsi host1: ahci
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: FW provided supportMaxExtLDs: 1        max_lds: 64
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: controller type        : MR(2048MB)
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: Online Controller Reset(OCR)        : Enabled
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: Secure JBOD support        : No
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: NVMe passthru support        : No
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: FW provided TM TaskAbort/Reset timeout        : 0 secs/0 secs
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: JBOD sequence map support        : No
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: PCI Lane Margining support        : No
Jun 20 11:51:44 localhost kernel: scsi host2: ahci
Jun 20 11:51:44 localhost kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
Jun 20 11:51:44 localhost kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 20 11:51:44 localhost kernel: usb usb2: Product: xHCI Host Controller
Jun 20 11:51:44 localhost kernel: usb usb2: Manufacturer: Linux 6.6.12-amd64 xhci-hcd
Jun 20 11:51:45 localhost kernel: usb usb2: SerialNumber: 0000:00:14.0
Jun 20 11:51:45 localhost kernel: scsi host3: ahci
Jun 20 11:51:45 localhost kernel: hub 2-0:1.0: USB hub found
Jun 20 11:51:45 localhost kernel: scsi host4: ahci
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: megasas_enable_intr_fusion is called outbound_intr_mask:0x40000000
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: INIT adapter done
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: JBOD sequence map is disabled megasas_setup_jbod_map 5796
Jun 20 11:51:45 localhost kernel: hub 2-0:1.0: 10 ports detected
Jun 20 11:51:45 localhost kernel: usb: port power management may be unreliable
Jun 20 11:51:45 localhost kernel: scsi host5: ahci
Jun 20 11:51:45 localhost kernel: scsi host6: ahci
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: pci id                : (0x1000)/(0x005d)/(0x1028)/(0x1f42)
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: unevenspan support        : yes
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: firmware crash dump        : no
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: JBOD sequence map        : disabled
Jun 20 11:51:45 localhost kernel: ata1: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80100 irq 69
Jun 20 11:51:45 localhost kernel: ata2: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80180 irq 69
Jun 20 11:51:45 localhost kernel: ata3: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80200 irq 69
Jun 20 11:51:45 localhost kernel: ata4: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80280 irq 69
Jun 20 11:51:45 localhost kernel: ata5: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80300 irq 69
Jun 20 11:51:45 localhost kernel: ata6: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80380 irq 69
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: Max firmware commands: 927 shared with default hw_queues = 32 poll_queues 0
Jun 20 11:51:45 localhost kernel: scsi host0: Avago SAS based MegaRAID driver
Jun 20 11:51:45 localhost kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
Jun 20 11:51:45 localhost kernel: scsi 0:2:0:0: Direct-Access     DELL     PERC H730P Adp   4.30 PQ: 0 ANSI: 5
Jun 20 11:51:45 localhost kernel: ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
Jun 20 11:51:45 localhost kernel: usb 1-14: new high-speed USB device number 2 using xhci_hcd
Jun 20 11:51:45 localhost kernel: scsi host7: ahci
Jun 20 11:51:45 localhost kernel: scsi host8: ahci
Jun 20 11:51:45 localhost kernel: scsi host9: ahci
Jun 20 11:51:45 localhost kernel: scsi host10: ahci
Jun 20 11:51:45 localhost kernel: scsi host11: ahci
Jun 20 11:51:45 localhost kernel: scsi host12: ahci
Jun 20 11:51:45 localhost kernel: scsi host13: ahci
Jun 20 11:51:45 localhost kernel: usb 1-14: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
Jun 20 11:51:45 localhost kernel: usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun 20 11:51:45 localhost kernel: scsi host14: ahci
Jun 20 11:51:45 localhost kernel: ata7: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00100 irq 71
Jun 20 11:51:45 localhost kernel: ata8: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00180 irq 71
Jun 20 11:51:45 localhost kernel: ata1: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata9: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00200 irq 71
Jun 20 11:51:45 localhost kernel: ata6: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata10: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00280 irq 71
Jun 20 11:51:45 localhost kernel: ata4: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata11: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00300 irq 71
Jun 20 11:51:45 localhost kernel: ata12: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00380 irq 71
Jun 20 11:51:45 localhost kernel: ata2: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata13: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00400 irq 71
Jun 20 11:51:45 localhost kernel: ata14: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00480 irq 71
Jun 20 11:51:45 localhost kernel: ata3: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: hub 1-14:1.0: USB hub found
Jun 20 11:51:45 localhost kernel: ata5: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: hub 1-14:1.0: 4 ports detected
Jun 20 11:51:45 localhost kernel: ata9: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata13: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata12: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:46 localhost kernel: ata7: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:46 localhost kernel: ata10: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:46 localhost kernel: ata11: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:46 localhost kernel: ata14: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun 20 11:51:46 localhost kernel: ata8: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:46 localhost kernel: ata14.00: ATAPI: PLDS DVD+/-RW DU-8A5LH, 6D5M, max UDMA/133
Jun 20 11:51:46 localhost kernel: ata14.00: configured for UDMA/133
Jun 20 11:51:46 localhost kernel: scsi 14:0:0:0: CD-ROM            PLDS     DVD+-RW DU-8A5LH 6D5M PQ: 0 ANSI: 5
Jun 20 11:51:46 localhost kernel: sd 0:2:0:0: [sda] 1170997248 512-byte logical blocks: (600 GB/558 GiB)
Jun 20 11:51:46 localhost kernel: sd 0:2:0:0: [sda] Write Protect is off
Jun 20 11:51:46 localhost kernel: sd 0:2:0:0: [sda] Mode Sense: 1f 00 00 08
Jun 20 11:51:46 localhost kernel: sd 0:2:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Jun 20 11:51:46 localhost kernel: sr 14:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
Jun 20 11:51:46 localhost kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jun 20 11:51:46 localhost kernel:  sda: sda1 sda2
Jun 20 11:51:46 localhost kernel: sd 0:2:0:0: [sda] Attached SCSI disk
Jun 20 11:51:46 localhost kernel: sr 14:0:0:0: Attached scsi CD-ROM sr0
Jun 20 11:51:46 localhost kernel: usb 1-14.1: new high-speed USB device number 3 using xhci_hcd
Jun 20 11:51:46 localhost kernel: usb 1-14.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
Jun 20 11:51:46 localhost kernel: usb 1-14.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun 20 11:51:46 localhost kernel: hub 1-14.1:1.0: USB hub found
Jun 20 11:51:46 localhost kernel: hub 1-14.1:1.0: 4 ports detected
Jun 20 11:51:46 localhost kernel: usb 1-14.4: new high-speed USB device number 4 using xhci_hcd
Jun 20 11:51:46 localhost kernel: usb 1-14.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
Jun 20 11:51:46 localhost kernel: usb 1-14.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun 20 11:51:46 localhost kernel: hub 1-14.4:1.0: USB hub found
Jun 20 11:51:46 localhost kernel: hub 1-14.4:1.0: 4 ports detected
Jun 20 11:51:47 localhost kernel: EXT4-fs (sda2): mounted filesystem 3cce84f6-6a7c-4f85-8fca-3af70112ad04 ro with ordered data mode. Quota mode: none.
Jun 20 11:51:48 localhost systemd-journald[512]: Received SIGTERM from PID 1 (systemd).
Jun 20 11:51:43 localhost kernel: Linux version 6.6.12-amd64 (debian-kernel@lists.debian.org) (gcc-13 (Debian 13.2.0-9) 13.2.0, GNU ld (GNU Binutils for Debian) 2.41.50.20231227) #1 SMP PREEMPT_DYNAMIC Debian 6.6.12-0gardenlinux1 (2024-01-17)
Jun 20 11:51:43 localhost kernel: Command line: initrd=\Default\6.6.12-amd64\initrd root=LABEL=ROOT console=tty0 console=ttyS0,115200 ro earlyprintk=ttyS0,115200 consoleblank=0
Jun 20 11:51:43 localhost kernel: BIOS-provided physical RAM map:
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000682fefff] usable
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x00000000682ff000-0x000000006ebfefff] reserved
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x000000006ebff000-0x000000006f9fefff] ACPI NVS
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x000000006f9ff000-0x000000006fffefff] ACPI data
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x000000006ffff000-0x000000006fffffff] usable
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 20 11:51:43 localhost kernel: BIOS-e820: [mem 0x0000000100000000-0x000000187bffffff] usable
Jun 20 11:51:43 localhost kernel: printk: bootconsole [earlyser0] enabled
Jun 20 11:51:43 localhost kernel: NX (Execute Disable) protection: active
Jun 20 11:51:43 localhost kernel: APIC: Static calls initialized
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4beca020-0x4bed205f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4beca020-0x4bed205f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be98020-0x4bec9c5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be98020-0x4bec9c5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be66020-0x4be97c5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be66020-0x4be97c5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be4d020-0x4be6565f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4be4d020-0x4be6565f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bd8e020-0x4be4ca5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bd8e020-0x4be4ca5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bccf020-0x4bd8da5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bccf020-0x4bd8da5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bc9d020-0x4bccec5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bc9d020-0x4bccec5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bc6b020-0x4bc9cc5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bc6b020-0x4bc9cc5f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bbac020-0x4bc6a65f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4bbac020-0x4bc6a65f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4baed020-0x4bbab65f] usable ==> usable
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x4baed020-0x4bbab65f] usable ==> usable
Jun 20 11:51:43 localhost kernel: extended physical RAM map:
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x0000000000100000-0x000000004baed01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004baed020-0x000000004bbab65f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bbab660-0x000000004bbac01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bbac020-0x000000004bc6a65f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bc6a660-0x000000004bc6b01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bc6b020-0x000000004bc9cc5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bc9cc60-0x000000004bc9d01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bc9d020-0x000000004bccec5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bccec60-0x000000004bccf01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bccf020-0x000000004bd8da5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bd8da60-0x000000004bd8e01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bd8e020-0x000000004be4ca5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be4ca60-0x000000004be4d01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be4d020-0x000000004be6565f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be65660-0x000000004be6601f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be66020-0x000000004be97c5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be97c60-0x000000004be9801f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004be98020-0x000000004bec9c5f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bec9c60-0x000000004beca01f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004beca020-0x000000004bed205f] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000004bed2060-0x00000000682fefff] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x00000000682ff000-0x000000006ebfefff] reserved
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000006ebff000-0x000000006f9fefff] ACPI NVS
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000006f9ff000-0x000000006fffefff] ACPI data
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x000000006ffff000-0x000000006fffffff] usable
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x0000000070000000-0x000000008fffffff] reserved
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 20 11:51:43 localhost kernel: reserve setup_data: [mem 0x0000000100000000-0x000000187bffffff] usable
Jun 20 11:51:43 localhost kernel: efi: EFI v2.7 by Dell Inc.
Jun 20 11:51:43 localhost kernel: efi: ACPI=0x6fffe000 ACPI 2.0=0x6fffe014 SMBIOS=0x68ebe000 SMBIOS 3.0=0x68ebc000 MEMATTR=0x651ff020 RNG=0x6fc0f0a0 INITRD=0x55f015a0 
Jun 20 11:51:43 localhost kernel: random: crng init done
Jun 20 11:51:43 localhost kernel: efi: Remove mem47: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
Jun 20 11:51:43 localhost kernel: e820: remove [mem 0x80000000-0x8fffffff] reserved
Jun 20 11:51:43 localhost kernel: efi: Not removing mem48: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
Jun 20 11:51:43 localhost kernel: secureboot: Secure boot disabled
Jun 20 11:51:43 localhost kernel: SMBIOS 3.2.0 present.
Jun 20 11:51:43 localhost kernel: DMI: Dell Inc. PowerEdge R440/04JN2K, BIOS 2.13.3 12/17/2021
Jun 20 11:51:43 localhost kernel: tsc: Detected 2100.000 MHz processor
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 20 11:51:43 localhost kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 20 11:51:43 localhost kernel: last_pfn = 0x187c000 max_arch_pfn = 0x400000000
Jun 20 11:51:43 localhost kernel: MTRR map: 9 entries (3 fixed + 6 variable; max 23), built from 10 variable MTRRs
Jun 20 11:51:43 localhost kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x70000000-0x73ffffff] usable ==> reserved
Jun 20 11:51:43 localhost kernel: e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
Jun 20 11:51:43 localhost kernel: x2apic: enabled by BIOS, switching to x2apic ops
Jun 20 11:51:43 localhost kernel: last_pfn = 0x70000 max_arch_pfn = 0x400000000
Jun 20 11:51:43 localhost kernel: Using GB pages for direct mapping
Jun 20 11:51:43 localhost kernel: RAMDISK: [mem 0x4bed3000-0x4deaefff]
Jun 20 11:51:43 localhost kernel: ACPI: Early table checksum verification disabled
Jun 20 11:51:43 localhost kernel: ACPI: RSDP 0x000000006FFFE014 000024 (v02 DELL  )
Jun 20 11:51:43 localhost kernel: ACPI: XSDT 0x000000006FBFF188 0000FC (v01 DELL   PE_SC3   00000000      01000013)
Jun 20 11:51:43 localhost kernel: ACPI: FACP 0x000000006FFF7000 000114 (v06 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: DSDT 0x000000006FCFF000 2E81B0 (v02 DELL   PE_SC3   00000003 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: FACS 0x000000006F56D000 000040
Jun 20 11:51:43 localhost kernel: ACPI: SSDT 0x000000006FFFC000 0005F8 (v02 DELL   Tpm2Tabl 00001000 INTL 20180508)
Jun 20 11:51:43 localhost kernel: ACPI: TPM2 0x000000006FFFB000 000038 (v04 DELL   PE_SC3   00000002      01000013)
Jun 20 11:51:43 localhost kernel: ACPI: SSDT 0x000000006FFFA000 00046C (v02 INTEL  ADDRXLAT 00000001 INTL 20180508)
Jun 20 11:51:43 localhost kernel: ACPI: WD__ 0x000000006FFF9000 000134 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: SLIC 0x000000006FFF8000 000024 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: HPET 0x000000006FFF6000 000038 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: APIC 0x000000006FFF4000 0016DE (v04 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: MCFG 0x000000006FFF3000 00003C (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: MIGT 0x000000006FFF2000 000040 (v01 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: MSCT 0x000000006FFF1000 000090 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: PCAT 0x000000006FFF0000 000088 (v02 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: PCCT 0x000000006FFEF000 00006E (v01 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: RASF 0x000000006FFEE000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: SLIT 0x000000006FFED000 00042C (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: SRAT 0x000000006FFEA000 002D30 (v03 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: SVOS 0x000000006FFE9000 000032 (v01 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: WSMT 0x000000006FFE8000 000028 (v01 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: OEM4 0x000000006FC51000 0AD1C1 (v02 INTEL  CPU  CST 00003000 INTL 20180508)
Jun 20 11:51:43 localhost kernel: ACPI: SSDT 0x000000006FC19000 037465 (v02 INTEL  SSDT  PM 00004000 INTL 20180508)
Jun 20 11:51:43 localhost kernel: ACPI: SSDT 0x000000006FFFD000 000C94 (v02 DELL   PE_SC3   00000000 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: SSDT 0x000000006FC15000 00357F (v02 INTEL  SpsNm    00000002 INTL 20180508)
Jun 20 11:51:43 localhost kernel: ACPI: DMAR 0x000000006FC14000 0001B0 (v01 DELL   PE_SC3   00000001 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: HEST 0x000000006FC13000 00017C (v01 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: BERT 0x000000006FC12000 000030 (v01 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: ERST 0x000000006FC11000 000230 (v01 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: EINJ 0x000000006FC10000 000150 (v01 DELL   PE_SC3   00000002 DELL 00000001)
Jun 20 11:51:43 localhost kernel: ACPI: Reserving FACP table memory at [mem 0x6fff7000-0x6fff7113]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving DSDT table memory at [mem 0x6fcff000-0x6ffe71af]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving FACS table memory at [mem 0x6f56d000-0x6f56d03f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0x6fffc000-0x6fffc5f7]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving TPM2 table memory at [mem 0x6fffb000-0x6fffb037]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0x6fffa000-0x6fffa46b]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving WD__ table memory at [mem 0x6fff9000-0x6fff9133]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SLIC table memory at [mem 0x6fff8000-0x6fff8023]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving HPET table memory at [mem 0x6fff6000-0x6fff6037]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving APIC table memory at [mem 0x6fff4000-0x6fff56dd]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving MCFG table memory at [mem 0x6fff3000-0x6fff303b]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving MIGT table memory at [mem 0x6fff2000-0x6fff203f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving MSCT table memory at [mem 0x6fff1000-0x6fff108f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving PCAT table memory at [mem 0x6fff0000-0x6fff0087]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving PCCT table memory at [mem 0x6ffef000-0x6ffef06d]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving RASF table memory at [mem 0x6ffee000-0x6ffee02f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SLIT table memory at [mem 0x6ffed000-0x6ffed42b]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SRAT table memory at [mem 0x6ffea000-0x6ffecd2f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SVOS table memory at [mem 0x6ffe9000-0x6ffe9031]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving WSMT table memory at [mem 0x6ffe8000-0x6ffe8027]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving OEM4 table memory at [mem 0x6fc51000-0x6fcfe1c0]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0x6fc19000-0x6fc50464]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0x6fffd000-0x6fffdc93]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving SSDT table memory at [mem 0x6fc15000-0x6fc1857e]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving DMAR table memory at [mem 0x6fc14000-0x6fc141af]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving HEST table memory at [mem 0x6fc13000-0x6fc1317b]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving BERT table memory at [mem 0x6fc12000-0x6fc1202f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving ERST table memory at [mem 0x6fc11000-0x6fc1122f]
Jun 20 11:51:43 localhost kernel: ACPI: Reserving EINJ table memory at [mem 0x6fc10000-0x6fc1014f]
Jun 20 11:51:43 localhost kernel: APIC: Switched APIC routing to: cluster x2apic
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0000 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0010 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000e -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001e -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0002 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0012 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000c -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001c -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0004 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0014 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000a -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001a -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0006 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0016 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0008 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0018 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0001 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0011 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000f -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001f -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0003 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0013 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000d -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001d -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0005 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0015 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x000b -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x001b -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0007 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0017 -> Node 1
Jun 20 11:51:43 localhost kernel: SRAT: PXM 0 -> APIC 0x0009 -> Node 0
Jun 20 11:51:43 localhost kernel: SRAT: PXM 1 -> APIC 0x0019 -> Node 1
Jun 20 11:51:43 localhost kernel: ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
Jun 20 11:51:43 localhost kernel: ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0xc7bffffff]
Jun 20 11:51:43 localhost kernel: ACPI: SRAT: Node 1 PXM 1 [mem 0xc7c000000-0x187bffffff]
Jun 20 11:51:43 localhost kernel: NUMA: Initialized distance table, cnt=2
Jun 20 11:51:43 localhost kernel: NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0xc7bffffff] -> [mem 0x00000000-0xc7bffffff]
Jun 20 11:51:43 localhost kernel: NODE_DATA(0) allocated [mem 0xc7bfd5000-0xc7bffffff]
Jun 20 11:51:43 localhost kernel: NODE_DATA(1) allocated [mem 0x187bfd4000-0x187bffefff]
Jun 20 11:51:43 localhost kernel: Zone ranges:
Jun 20 11:51:43 localhost kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jun 20 11:51:43 localhost kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jun 20 11:51:43 localhost kernel:   Normal   [mem 0x0000000100000000-0x000000187bffffff]
Jun 20 11:51:43 localhost kernel:   Device   empty
Jun 20 11:51:43 localhost kernel: Movable zone start for each node
Jun 20 11:51:43 localhost kernel: Early memory node ranges
Jun 20 11:51:43 localhost kernel:   node   0: [mem 0x0000000000001000-0x000000000009ffff]
Jun 20 11:51:43 localhost kernel:   node   0: [mem 0x0000000000100000-0x00000000682fefff]
Jun 20 11:51:43 localhost kernel:   node   0: [mem 0x000000006ffff000-0x000000006fffffff]
Jun 20 11:51:43 localhost kernel:   node   0: [mem 0x0000000100000000-0x0000000c7bffffff]
Jun 20 11:51:43 localhost kernel:   node   1: [mem 0x0000000c7c000000-0x000000187bffffff]
Jun 20 11:51:43 localhost kernel: Initmem setup node 0 [mem 0x0000000000001000-0x0000000c7bffffff]
Jun 20 11:51:43 localhost kernel: Initmem setup node 1 [mem 0x0000000c7c000000-0x000000187bffffff]
Jun 20 11:51:43 localhost kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jun 20 11:51:43 localhost kernel: On node 0, zone DMA: 96 pages in unavailable ranges
Jun 20 11:51:43 localhost kernel: On node 0, zone DMA32: 32000 pages in unavailable ranges
Jun 20 11:51:43 localhost kernel: On node 1, zone Normal: 16384 pages in unavailable ranges
Jun 20 11:51:43 localhost kernel: ACPI: PM-Timer IO Port: 0x508
Jun 20 11:51:43 localhost kernel: ACPI: X2APIC_NMI (uid[0xffffffff] high level lint[0x1])
Jun 20 11:51:43 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
Jun 20 11:51:43 localhost kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Jun 20 11:51:43 localhost kernel: IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-31
Jun 20 11:51:43 localhost kernel: IOAPIC[2]: apic_id 10, version 32, address 0xfec08000, GSI 32-39
Jun 20 11:51:43 localhost kernel: IOAPIC[3]: apic_id 11, version 32, address 0xfec10000, GSI 40-47
Jun 20 11:51:43 localhost kernel: IOAPIC[4]: apic_id 12, version 32, address 0xfec18000, GSI 48-55
Jun 20 11:51:43 localhost kernel: IOAPIC[5]: apic_id 15, version 32, address 0xfec20000, GSI 72-79
Jun 20 11:51:43 localhost kernel: IOAPIC[6]: apic_id 16, version 32, address 0xfec28000, GSI 80-87
Jun 20 11:51:43 localhost kernel: IOAPIC[7]: apic_id 17, version 32, address 0xfec30000, GSI 88-95
Jun 20 11:51:43 localhost kernel: IOAPIC[8]: apic_id 18, version 32, address 0xfec38000, GSI 96-103
Jun 20 11:51:43 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 20 11:51:43 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 20 11:51:43 localhost kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Jun 20 11:51:43 localhost kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Jun 20 11:51:43 localhost kernel: TSC deadline timer available
Jun 20 11:51:43 localhost kernel: smpboot: Allowing 32 CPUs, 0 hotplug CPUs
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4baed000-0x4baedfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bbab000-0x4bbabfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bbac000-0x4bbacfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bc6a000-0x4bc6afff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bc6b000-0x4bc6bfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bc9c000-0x4bc9cfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bc9d000-0x4bc9dfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bcce000-0x4bccefff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bccf000-0x4bccffff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bd8d000-0x4bd8dfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bd8e000-0x4bd8efff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be4c000-0x4be4cfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be4d000-0x4be4dfff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be65000-0x4be65fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be66000-0x4be66fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be97000-0x4be97fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4be98000-0x4be98fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bec9000-0x4bec9fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4beca000-0x4becafff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x4bed2000-0x4bed2fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x682ff000-0x6ebfefff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x6ebff000-0x6f9fefff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x6f9ff000-0x6fffefff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x70000000-0x7fffffff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x80000000-0xfdffffff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Jun 20 11:51:43 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xffffffff]
Jun 20 11:51:43 localhost kernel: [mem 0x80000000-0xfdffffff] available for PCI devices
Jun 20 11:51:43 localhost kernel: Booting paravirtualized kernel on bare hardware
Jun 20 11:51:43 localhost kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Jun 20 11:51:43 localhost kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:2
Jun 20 11:51:43 localhost kernel: percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
Jun 20 11:51:43 localhost kernel: pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
Jun 20 11:51:43 localhost kernel: pcpu-alloc: [0] 00 02 04 06 08 10 12 14 [0] 16 18 20 22 24 26 28 30 
Jun 20 11:51:43 localhost kernel: pcpu-alloc: [1] 01 03 05 07 09 11 13 15 [1] 17 19 21 23 25 27 29 31 
Jun 20 11:51:43 localhost kernel: Kernel command line: initrd=\Default\6.6.12-amd64\initrd root=LABEL=ROOT console=tty0 console=ttyS0,115200 ro earlyprintk=ttyS0,115200 consoleblank=0
Jun 20 11:51:43 localhost kernel: printk: log_buf_len individual max cpu contribution: 4096 bytes
Jun 20 11:51:43 localhost kernel: printk: log_buf_len total cpu_extra contributions: 126976 bytes
Jun 20 11:51:43 localhost kernel: printk: log_buf_len min size: 131072 bytes
Jun 20 11:51:43 localhost kernel: printk: log_buf_len: 262144 bytes
Jun 20 11:51:43 localhost kernel: printk: early log buf free: 111944(85%)
Jun 20 11:51:43 localhost kernel: Fallback order for Node 0: 0 1 
Jun 20 11:51:43 localhost kernel: Fallback order for Node 1: 1 0 
Jun 20 11:51:43 localhost kernel: Built 2 zonelists, mobility grouping on.  Total pages: 24659188
Jun 20 11:51:43 localhost kernel: Policy zone: Normal
Jun 20 11:51:43 localhost kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Jun 20 11:51:43 localhost kernel: software IO TLB: area num 32.
Jun 20 11:51:43 localhost kernel: Memory: 1823276K/100207228K available (16384K kernel code, 2360K rwdata, 10516K rodata, 3956K init, 3640K bss, 1833088K reserved, 0K cma-reserved)
Jun 20 11:51:43 localhost kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=2
Jun 20 11:51:43 localhost kernel: ftrace: allocating 42999 entries in 168 pages
Jun 20 11:51:43 localhost kernel: ftrace: allocated 168 pages with 3 groups
Jun 20 11:51:43 localhost kernel: Dynamic Preempt: voluntary
Jun 20 11:51:43 localhost kernel: rcu: Preemptible hierarchical RCU implementation.
Jun 20 11:51:43 localhost kernel: rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
Jun 20 11:51:43 localhost kernel:         Trampoline variant of Tasks RCU enabled.
Jun 20 11:51:43 localhost kernel:         Rude variant of Tasks RCU enabled.
Jun 20 11:51:43 localhost kernel:         Tracing variant of Tasks RCU enabled.
Jun 20 11:51:43 localhost kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Jun 20 11:51:43 localhost kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
Jun 20 11:51:43 localhost kernel: NR_IRQS: 524544, nr_irqs: 2040, preallocated irqs: 16
Jun 20 11:51:43 localhost kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Jun 20 11:51:43 localhost kernel: Console: colour dummy device 80x25
Jun 20 11:51:43 localhost kernel: printk: console [tty0] enabled
Jun 20 11:51:43 localhost kernel: printk: console [ttyS0] enabled
Jun 20 11:51:43 localhost kernel: printk: bootconsole [earlyser0] disabled
Jun 20 11:51:43 localhost kernel: mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
Jun 20 11:51:43 localhost kernel: ACPI: Core revision 20230628
Jun 20 11:51:43 localhost kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Jun 20 11:51:43 localhost kernel: APIC: Switch to symmetric I/O mode setup
Jun 20 11:51:43 localhost kernel: DMAR: Host address width 46
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000d37fc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar0: reg_base_addr d37fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000e0ffc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar1: reg_base_addr e0ffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000ee7fc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar2: reg_base_addr ee7fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000fbffc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar3: reg_base_addr fbffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000aaffc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar4: reg_base_addr aaffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000b87fc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar5: reg_base_addr b87fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x000000c5ffc000 flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: dmar6: reg_base_addr c5ffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: DRHD base: 0x0000009d7fc000 flags: 0x1
Jun 20 11:51:43 localhost kernel: DMAR: dmar7: reg_base_addr 9d7fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Jun 20 11:51:43 localhost kernel: DMAR: RMRR base: 0x0000006f55f000 end: 0x0000006f561fff
Jun 20 11:51:43 localhost kernel: DMAR: ATSR flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR: ATSR flags: 0x0
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 12 under DRHD base  0xc5ffc000 IOMMU 6
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 11 under DRHD base  0xb87fc000 IOMMU 5
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 10 under DRHD base  0xaaffc000 IOMMU 4
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 18 under DRHD base  0xfbffc000 IOMMU 3
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 17 under DRHD base  0xee7fc000 IOMMU 2
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 16 under DRHD base  0xe0ffc000 IOMMU 1
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 15 under DRHD base  0xd37fc000 IOMMU 0
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 8 under DRHD base  0x9d7fc000 IOMMU 7
Jun 20 11:51:43 localhost kernel: DMAR-IR: IOAPIC id 9 under DRHD base  0x9d7fc000 IOMMU 7
Jun 20 11:51:43 localhost kernel: DMAR-IR: HPET id 0 under DRHD base 0x9d7fc000
Jun 20 11:51:43 localhost kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Jun 20 11:51:43 localhost kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Jun 20 11:51:43 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 20 11:51:43 localhost kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e4530a99b6, max_idle_ns: 440795257976 ns
Jun 20 11:51:43 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4200.00 BogoMIPS (lpj=8400000)
Jun 20 11:51:43 localhost kernel: CPU0: Thermal monitoring enabled (TM1)
Jun 20 11:51:43 localhost kernel: process: using mwait in idle threads
Jun 20 11:51:43 localhost kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Jun 20 11:51:43 localhost kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Jun 20 11:51:43 localhost kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jun 20 11:51:43 localhost kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
Jun 20 11:51:43 localhost kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jun 20 11:51:43 localhost kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
Jun 20 11:51:43 localhost kernel: RETBleed: Mitigation: Enhanced IBRS
Jun 20 11:51:43 localhost kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jun 20 11:51:43 localhost kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Jun 20 11:51:43 localhost kernel: TAA: Mitigation: TSX disabled
Jun 20 11:51:43 localhost kernel: MMIO Stale Data: Vulnerable: Clear CPU buffers attempted, no microcode
Jun 20 11:51:43 localhost kernel: GDS: Vulnerable: No microcode
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
Jun 20 11:51:43 localhost kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[5]:  960, xstate_sizes[5]:   64
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[6]: 1024, xstate_sizes[6]:  512
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[7]: 1536, xstate_sizes[7]: 1024
Jun 20 11:51:43 localhost kernel: x86/fpu: xstate_offset[9]: 2560, xstate_sizes[9]:    8
Jun 20 11:51:43 localhost kernel: x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
Jun 20 11:51:43 localhost kernel: Freeing SMP alternatives memory: 36K
Jun 20 11:51:43 localhost kernel: pid_max: default: 32768 minimum: 301
Jun 20 11:51:43 localhost kernel: LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,tomoyo,bpf,integrity
Jun 20 11:51:43 localhost kernel: landlock: Up and running.
Jun 20 11:51:43 localhost kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
Jun 20 11:51:43 localhost kernel: AppArmor: AppArmor initialized
Jun 20 11:51:43 localhost kernel: TOMOYO Linux initialized
Jun 20 11:51:43 localhost kernel: LSM support for eBPF active
Jun 20 11:51:43 localhost kernel: Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
Jun 20 11:51:43 localhost kernel: Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, vmalloc hugepage)
Jun 20 11:51:43 localhost kernel: Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: smpboot: CPU0: Intel(R) Xeon(R) Silver 4208 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x7)
Jun 20 11:51:43 localhost kernel: RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Jun 20 11:51:43 localhost kernel: RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Jun 20 11:51:43 localhost kernel: RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Jun 20 11:51:43 localhost kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Jun 20 11:51:43 localhost kernel: ... version:                4
Jun 20 11:51:43 localhost kernel: ... bit width:              48
Jun 20 11:51:43 localhost kernel: ... generic registers:      4
Jun 20 11:51:43 localhost kernel: ... value mask:             0000ffffffffffff
Jun 20 11:51:43 localhost kernel: ... max period:             00007fffffffffff
Jun 20 11:51:43 localhost kernel: ... fixed-purpose events:   3
Jun 20 11:51:43 localhost kernel: ... event mask:             000000070000000f
Jun 20 11:51:43 localhost kernel: signal: max sigframe size: 3632
Jun 20 11:51:43 localhost kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1462
Jun 20 11:51:43 localhost kernel: rcu: Hierarchical SRCU implementation.
Jun 20 11:51:43 localhost kernel: rcu:         Max phase no-delay instances is 1000.
Jun 20 11:51:43 localhost kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jun 20 11:51:43 localhost kernel: smp: Bringing up secondary CPUs ...
Jun 20 11:51:43 localhost kernel: smpboot: x86: Booting SMP configuration:
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:        #1
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:    #2
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:    #3
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:    #4
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:    #5
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:    #6
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:    #7
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:    #8
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:    #9
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #10
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #11
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #12
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #13
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #14
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #15
Jun 20 11:51:43 localhost kernel: smpboot: CPU 1 Converting physical 0 to logical die 1
Jun 20 11:51:43 localhost kernel: 
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #16
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #17
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #18
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #19
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #20
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #21
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #22
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #23
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #24
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #25
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #26
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #27
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #28
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #29
Jun 20 11:51:43 localhost kernel: .... node  #0, CPUs:   #30
Jun 20 11:51:43 localhost kernel: .... node  #1, CPUs:   #31
Jun 20 11:51:43 localhost kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
Jun 20 11:51:43 localhost kernel: smp: Brought up 2 nodes, 32 CPUs
Jun 20 11:51:43 localhost kernel: smpboot: Max logical packages: 2
Jun 20 11:51:43 localhost kernel: smpboot: Total of 32 processors activated (134400.00 BogoMIPS)
Jun 20 11:51:43 localhost kernel: node 0 deferred pages initialised in 40ms
Jun 20 11:51:43 localhost kernel: node 1 deferred pages initialised in 44ms
Jun 20 11:51:43 localhost kernel: devtmpfs: initialized
Jun 20 11:51:43 localhost kernel: x86/mm: Memory block size: 2048MB
Jun 20 11:51:43 localhost kernel: ACPI: PM: Registering ACPI NVS region [mem 0x6ebff000-0x6f9fefff] (14680064 bytes)
Jun 20 11:51:43 localhost kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Jun 20 11:51:43 localhost kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: pinctrl core: initialized pinctrl subsystem
Jun 20 11:51:43 localhost kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jun 20 11:51:43 localhost kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Jun 20 11:51:43 localhost kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jun 20 11:51:43 localhost kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jun 20 11:51:43 localhost kernel: audit: initializing netlink subsys (disabled)
Jun 20 11:51:43 localhost kernel: audit: type=2000 audit(1718884293.740:1): state=initialized audit_enabled=0 res=1
Jun 20 11:51:43 localhost kernel: thermal_sys: Registered thermal governor 'fair_share'
Jun 20 11:51:43 localhost kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jun 20 11:51:43 localhost kernel: thermal_sys: Registered thermal governor 'step_wise'
Jun 20 11:51:43 localhost kernel: thermal_sys: Registered thermal governor 'user_space'
Jun 20 11:51:43 localhost kernel: thermal_sys: Registered thermal governor 'power_allocator'
Jun 20 11:51:43 localhost kernel: cpuidle: using governor ladder
Jun 20 11:51:43 localhost kernel: cpuidle: using governor menu
Jun 20 11:51:43 localhost kernel: Detected 1 PCC Subspaces
Jun 20 11:51:43 localhost kernel: Registering PCC driver as Mailbox controller
Jun 20 11:51:43 localhost kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jun 20 11:51:43 localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 20 11:51:43 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
Jun 20 11:51:43 localhost kernel: PCI: not using MMCONFIG
Jun 20 11:51:43 localhost kernel: PCI: Using configuration type 1 for base access
Jun 20 11:51:43 localhost kernel: PCI: Dell System detected, enabling pci=bfsort.
Jun 20 11:51:43 localhost kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Jun 20 11:51:43 localhost kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Jun 20 11:51:43 localhost kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Jun 20 11:51:43 localhost kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Jun 20 11:51:43 localhost kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Jun 20 11:51:43 localhost kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Jun 20 11:51:43 localhost kernel: ACPI: Added _OSI(Module Device)
Jun 20 11:51:43 localhost kernel: ACPI: Added _OSI(Processor Device)
Jun 20 11:51:43 localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 20 11:51:43 localhost kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 20 11:51:43 localhost kernel: ACPI: 6 ACPI AML tables successfully acquired and loaded
Jun 20 11:51:43 localhost kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Jun 20 11:51:43 localhost kernel: ACPI: Dynamic OEM Table Load:
Jun 20 11:51:43 localhost kernel: ACPI: _OSC evaluated successfully for all CPUs
Jun 20 11:51:43 localhost kernel: ACPI: Interpreter enabled
Jun 20 11:51:43 localhost kernel: ACPI: PM: (supports S0 S5)
Jun 20 11:51:43 localhost kernel: ACPI: Using IOAPIC for interrupt routing
Jun 20 11:51:43 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
Jun 20 11:51:43 localhost kernel: [Firmware Info]: PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] not reserved in ACPI motherboard resources
Jun 20 11:51:43 localhost kernel: PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved as EfiMemoryMappedIO
Jun 20 11:51:43 localhost kernel: HEST: Table parsing has been initialized.
Jun 20 11:51:43 localhost kernel: GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
Jun 20 11:51:43 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 20 11:51:43 localhost kernel: PCI: Using E820 reservations for host bridge windows
Jun 20 11:51:43 localhost kernel: ACPI: Enabled 5 GPEs in block 00 to 7F
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-16])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:00
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [io  0x1000-0x3fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xfe010000-0xfe010fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x90000000-0x9d7fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x380000000000-0x383fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: root bus resource [bus 00-16]
Jun 20 11:51:43 localhost kernel: pci 0000:00:00.0: [8086:2020] type 00 class 0x060000
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.0: [8086:2024] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.2: [8086:2025] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.4: [8086:2026] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.4: reg 0x10: [mem 0x93020000-0x93020fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.0: [8086:2014] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.1: [8086:2015] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.2: [8086:2016] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.0: [8086:a1ec] type 00 class 0xff0000
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.0: device has non-compliant BARs; disabling IO/MEM decoding
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: [8086:a1d2] type 00 class 0x010601
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x10: [mem 0x93016000-0x93017fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x14: [mem 0x9301f000-0x9301f0ff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x18: [io  0x2068-0x206f]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x1c: [io  0x2074-0x2077]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x20: [io  0x2040-0x205f]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: reg 0x24: [mem 0x92f80000-0x92ffffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: PME# supported from D3hot
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.0: [8086:a1af] type 00 class 0x0c0330
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.0: reg 0x10: [mem 0x93000000-0x9300ffff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.2: [8086:a1b1] type 00 class 0x118000
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.2: reg 0x10: [mem 0x9301c000-0x9301cfff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.0: [8086:a1ba] type 00 class 0x078000
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.0: reg 0x10: [mem 0x9301b000-0x9301bfff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.0: PME# supported from D3hot
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.1: [8086:a1bb] type 00 class 0x078000
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.1: reg 0x10: [mem 0x9301a000-0x9301afff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.1: PME# supported from D3hot
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.4: [8086:a1be] type 00 class 0x078000
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.4: reg 0x10: [mem 0x93019000-0x93019fff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.4: PME# supported from D3hot
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: [8086:a182] type 00 class 0x010601
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x10: [mem 0x93014000-0x93015fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x14: [mem 0x9301e000-0x9301e0ff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x18: [io  0x2060-0x2067]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x1c: [io  0x2070-0x2073]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x20: [io  0x2020-0x203f]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: reg 0x24: [mem 0x92f00000-0x92f7ffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: PME# supported from D3hot
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: [8086:a190] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4: [8086:a194] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: [8086:a195] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.0: [8086:a1c1] type 00 class 0x060100
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.2: [8086:a1a1] type 00 class 0x058000
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.2: reg 0x10: [mem 0x93010000-0x93013fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.4: [8086:a1a3] type 00 class 0x0c0500
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x93018000-0x930180ff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.4: reg 0x20: [io  0x2000-0x201f]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.5: [8086:a1a4] type 00 class 0x0c8000
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0:   bridge window [mem 0x92a00000-0x92dfffff]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0: [1556:be00] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4: PCI bridge to [bus 02-03]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4:   bridge window [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:03: extended config space not accessible
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: [102b:0536] type 00 class 0x030000
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: reg 0x10: [mem 0x91000000-0x91ffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: reg 0x14: [mem 0x92808000-0x9280bfff]
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: reg 0x18: [mem 0x92000000-0x927fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: BAR 0: assigned to efifb
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0:   bridge window [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: [14e4:165f] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: reg 0x10: [mem 0x92e30000-0x92e3ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: reg 0x18: [mem 0x92e40000-0x92e4ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: reg 0x20: [mem 0x92e50000-0x92e5ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:00:1c.5 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: [14e4:165f] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: reg 0x10: [mem 0x92e00000-0x92e0ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: reg 0x18: [mem 0x92e10000-0x92e1ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: reg 0x20: [mem 0x92e20000-0x92e2ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 04]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5:   bridge window [mem 0x92e00000-0x92efffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: on NUMA node 0
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 6
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 5
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 11
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 6
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 5
Jun 20 11:51:43 localhost kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 17-39])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:17
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: root bus resource [io  0x4000-0x5fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: root bus resource [mem 0x9d800000-0xaaffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: root bus resource [mem 0x384000000000-0x387fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: root bus resource [bus 17-39]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0: [8086:2032] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.4: reg 0x10: [mem 0x9da00000-0x9da00fff]
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.0: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.1: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.2: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.3: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.4: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.5: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.6: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.7: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:09.0: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:09.1: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.0: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.1: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.2: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.3: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.4: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.5: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.6: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.7: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0f.0: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:0f.1: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.0: [8086:2054] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.1: [8086:2055] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.2: [8086:2056] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.3: [8086:2057] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.0: [8086:2080] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.1: [8086:2081] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.2: [8086:2082] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.3: [8086:2083] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.4: [8086:2084] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.5: [8086:2085] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.6: [8086:2086] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: [1000:005d] type 00 class 0x010400
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: reg 0x10: [io  0x4000-0x40ff]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: reg 0x14: [mem 0x9d900000-0x9d90ffff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: reg 0x1c: [mem 0x9d800000-0x9d8fffff 64bit]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: quirk_blacklist_vpd+0x0/0x30 took 11718 usecs
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: supports D1 D2
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0: PCI bridge to [bus 18]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0:   bridge window [io  0x4000-0x4fff]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0:   bridge window [mem 0x9d800000-0x9d9fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: on NUMA node 0
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 3a-5c])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:3a
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: root bus resource [io  0x6000-0x7fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: root bus resource [mem 0xab000000-0xb87fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: root bus resource [mem 0x388000000000-0x38bfffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: root bus resource [bus 3a-5c]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: [8086:2030] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.4: reg 0x10: [mem 0xb0000000-0xb0000fff]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:08.0: [8086:2066] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:09.0: [8086:2066] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.0: [8086:2040] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.1: [8086:2041] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.2: [8086:2042] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.3: [8086:2043] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.4: [8086:2044] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.5: [8086:2045] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.6: [8086:2046] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.7: [8086:2047] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.0: [8086:2048] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.1: [8086:2049] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.2: [8086:204a] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.3: [8086:204b] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.0: [8086:2040] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.1: [8086:2041] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.2: [8086:2042] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.3: [8086:2043] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.4: [8086:2044] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.5: [8086:2045] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.6: [8086:2046] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.7: [8086:2047] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.0: [8086:2048] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.1: [8086:2049] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.2: [8086:204a] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.3: [8086:204b] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: [15b3:101d] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: reg 0x10: [mem 0xae000000-0xafffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: PME# supported from D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: reg 0x1a4: [mem 0x00000000-0x000fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: VF(n) BAR0 space: [mem 0x00000000-0x07efffff 64bit pref] (contains BAR0 for 127 VFs)
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:3a:00.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: [15b3:101d] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: reg 0x10: [mem 0xac000000-0xadffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: reg 0x30: [mem 0xfff00000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: PME# supported from D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: reg 0x1a4: [mem 0x00000000-0x000fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: VF(n) BAR0 space: [mem 0x00000000-0x07efffff 64bit pref] (contains BAR0 for 127 VFs)
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: PCI bridge to [bus 3b]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0:   bridge window [mem 0xac000000-0xafffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: on NUMA node 0
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC03] (domain 0000 [bus 5d-7f])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:5d
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: root bus resource [io  0x8000-0x9fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: root bus resource [mem 0xb8800000-0xc5ffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: root bus resource [mem 0x38c000000000-0x38ffffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: root bus resource [bus 5d-7f]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: [8086:2030] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: enabling Extended Tags
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.4: reg 0x10: [mem 0xb8900000-0xb8900fff]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0e.0: [8086:2058] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0e.1: [8086:2059] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0f.0: [8086:2058] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0f.1: [8086:2059] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.0: [8086:204c] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.1: [8086:204d] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.2: [8086:204e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:15.0: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:15.1: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.0: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.1: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.4: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.5: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: [14e4:165f] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: reg 0x10: [mem 0xb8830000-0xb883ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: reg 0x18: [mem 0xb8840000-0xb884ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: reg 0x20: [mem 0xb8850000-0xb885ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: [14e4:165f] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: reg 0x10: [mem 0xb8800000-0xb880ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: reg 0x18: [mem 0xb8810000-0xb881ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: reg 0x20: [mem 0xb8820000-0xb882ffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: PCI bridge to [bus 5e]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0:   bridge window [mem 0xb8800000-0xb88fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: on NUMA node 0
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC06] (domain 0000 [bus 80-84])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:06: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:06: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:06: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:06: host bridge window [io  0x0000 window] (ignored, not CPU addressable)
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:80
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: root bus resource [mem 0xc6000000-0xd37fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: root bus resource [mem 0x390000000000-0x393fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: root bus resource [bus 80-84]
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.0: [8086:2024] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.2: [8086:2025] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.4: [8086:2026] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.4: reg 0x10: [mem 0xc6000000-0xc6000fff]
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.0: [8086:2014] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.1: [8086:2015] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.2: [8086:2016] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: on NUMA node 1
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC07] (domain 0000 [bus 85-ad])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:07: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:07: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:07: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:85
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: root bus resource [io  0xa000-0xbfff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: root bus resource [mem 0xd3800000-0xe0ffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: root bus resource [mem 0x394000000000-0x397fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: root bus resource [bus 85-ad]
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.4: reg 0x10: [mem 0xd3800000-0xd3800fff]
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.0: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.1: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.2: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.3: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.4: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.5: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.6: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.7: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:09.0: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:09.1: [8086:208d] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.0: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.1: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.2: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.3: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.4: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.5: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.6: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.7: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0f.0: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:0f.1: [8086:208e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.0: [8086:2054] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.1: [8086:2055] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.2: [8086:2056] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.3: [8086:2057] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.0: [8086:2080] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.1: [8086:2081] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.2: [8086:2082] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.3: [8086:2083] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.4: [8086:2084] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.5: [8086:2085] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.6: [8086:2086] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: on NUMA node 1
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC08] (domain 0000 [bus ae-d6])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:08: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:08: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:08: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:08: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:ae
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: root bus resource [io  0xc000-0xdfff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: root bus resource [mem 0xe1000000-0xee7fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: root bus resource [mem 0x398000000000-0x39bfffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: root bus resource [bus ae-d6]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: [8086:2030] type 01 class 0x060400
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: PME# supported from D0 D3hot D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.4: reg 0x10: [mem 0xe1100000-0xe1100fff]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:08.0: [8086:2066] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:09.0: [8086:2066] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.0: [8086:2040] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.1: [8086:2041] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.2: [8086:2042] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.3: [8086:2043] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.4: [8086:2044] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.5: [8086:2045] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.6: [8086:2046] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.7: [8086:2047] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.0: [8086:2048] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.1: [8086:2049] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.2: [8086:204a] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.3: [8086:204b] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.0: [8086:2040] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.1: [8086:2041] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.2: [8086:2042] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.3: [8086:2043] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.4: [8086:2044] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.5: [8086:2045] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.6: [8086:2046] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.7: [8086:2047] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.0: [8086:2048] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.1: [8086:2049] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.2: [8086:204a] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.3: [8086:204b] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: [15b3:a2d6] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: reg 0x10: [mem 0x39bffc000000-0x39bffdffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: reg 0x18: [mem 0x39bffe800000-0x39bffeffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: PME# supported from D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: reg 0x1a4: [mem 0x00000000-0x001fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0fdfffff 64bit pref] (contains BAR0 for 127 VFs)
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:ae:00.0 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: [15b3:a2d6] type 00 class 0x020000
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: reg 0x10: [mem 0x39bffa000000-0x39bffbffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: reg 0x18: [mem 0x39bffe000000-0x39bffe7fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: reg 0x30: [mem 0xfff00000-0xffffffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: PME# supported from D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: reg 0x1a4: [mem 0x00000000-0x001fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: VF(n) BAR0 space: [mem 0x00000000-0x0fdfffff 64bit pref] (contains BAR0 for 127 VFs)
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.2: [15b3:c2d3] type 00 class 0x080100
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.2: reg 0x10: [mem 0xe1000000-0xe10fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.2: PME# supported from D3cold
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: PCI bridge to [bus af]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0xe1000000-0xe10fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0x39bffa000000-0x39bffeffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: bridge has subordinate af but max busn b0
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: on NUMA node 1
Jun 20 11:51:43 localhost kernel: ACPI: PCI Root Bridge [PC09] (domain 0000 [bus d7-ff])
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:09: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:09: _OSC: platform does not support [SHPCHotplug AER LTR]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:09: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Jun 20 11:51:43 localhost kernel: acpi PNP0A08:09: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 20 11:51:43 localhost kernel: PCI host bridge to bus 0000:d7
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: root bus resource [io  0xe000-0xffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: root bus resource [mem 0xee800000-0xfbffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: root bus resource [mem 0x39c000000000-0x39ffffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: root bus resource [bus d7-ff]
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.0: [8086:2034] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.2: [8086:2035] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.4: [8086:2036] type 00 class 0x080020
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.4: reg 0x10: [mem 0xee800000-0xee800fff]
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0e.0: [8086:2058] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0e.1: [8086:2059] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0f.0: [8086:2058] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0f.1: [8086:2059] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.0: [8086:204c] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.1: [8086:204d] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.2: [8086:204e] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:15.0: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:15.1: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.0: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.1: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.4: [8086:2018] type 00 class 0x088000
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.5: [8086:2088] type 00 class 0x110100
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: on NUMA node 1
Jun 20 11:51:43 localhost kernel: iommu: Default domain type: Translated
Jun 20 11:51:43 localhost kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Jun 20 11:51:43 localhost kernel: pps_core: LinuxPPS API ver. 1 registered
Jun 20 11:51:43 localhost kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun 20 11:51:43 localhost kernel: PTP clock support registered
Jun 20 11:51:43 localhost kernel: EDAC MC: Ver: 3.0.0
Jun 20 11:51:43 localhost kernel: efivars: Registered efivars operations
Jun 20 11:51:43 localhost kernel: NetLabel: Initializing
Jun 20 11:51:43 localhost kernel: NetLabel:  domain hash size = 128
Jun 20 11:51:43 localhost kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jun 20 11:51:43 localhost kernel: NetLabel:  unlabeled traffic allowed by default
Jun 20 11:51:43 localhost kernel: PCI: Using ACPI for IRQ routing
Jun 20 11:51:43 localhost kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4baed020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4bbac020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4bc6b020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4bc9d020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4bccf020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4bd8e020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4be4d020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4be66020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4be98020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x4beca020-0x4bffffff]
Jun 20 11:51:43 localhost kernel: e820: reserve RAM buffer [mem 0x682ff000-0x6bffffff]
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: vgaarb: setting as boot VGA device
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: vgaarb: bridge control possible
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jun 20 11:51:43 localhost kernel: vgaarb: loaded
Jun 20 11:51:43 localhost kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Jun 20 11:51:43 localhost kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Jun 20 11:51:43 localhost kernel: clocksource: Switched to clocksource tsc-early
Jun 20 11:51:43 localhost kernel: VFS: Disk quotas dquot_6.6.0
Jun 20 11:51:43 localhost kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 20 11:51:43 localhost kernel: AppArmor: AppArmor Filesystem Enabled
Jun 20 11:51:43 localhost kernel: pnp: PnP ACPI init
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0500-0x05fe] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0400-0x047f] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0600-0x061f] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0ca0-0x0ca5] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0880-0x0883] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [io  0x0800-0x081f] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfed1c000-0xfed3ffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfed45000-0xfed8bfff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xff000000-0xffffffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfed12000-0xfed1200f] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfed12010-0xfed1201f] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfd000000-0xfdabffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfdad0000-0xfdadffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfdb00000-0xfdffffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfe000000-0xfe00ffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfe011000-0xfe01ffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfe036000-0xfe03bfff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfe03d000-0xfe3fffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:04: [mem 0xfe410000-0xfe7fffff] has been reserved
Jun 20 11:51:43 localhost kernel: system 00:05: [io  0x1000-0x10fe] has been reserved
Jun 20 11:51:43 localhost kernel: pnp: PnP ACPI: found 6 devices
Jun 20 11:51:43 localhost kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jun 20 11:51:43 localhost kernel: NET: Registered PF_INET protocol family
Jun 20 11:51:43 localhost kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
Jun 20 11:51:43 localhost kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: TCP: Hash tables configured (established 524288 bind 65536)
Jun 20 11:51:43 localhost kernel: MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
Jun 20 11:51:43 localhost kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Jun 20 11:51:43 localhost kernel: NET: Registered PF_XDP protocol family
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0x380000000000-0x3800001fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: BAR 14: assigned [mem 0x90000000-0x900fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x3000-0x3fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0:   bridge window [mem 0x92a00000-0x92dfffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0:   bridge window [mem 0x380000000000-0x3800001fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0:   bridge window [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4: PCI bridge to [bus 02-03]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4:   bridge window [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: BAR 6: assigned [mem 0x90000000-0x9003ffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 04]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5:   bridge window [mem 0x90000000-0x900fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5:   bridge window [mem 0x92e00000-0x92efffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 5 [io  0x1000-0x3fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 7 [mem 0x000c4000-0x000c7fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 8 [mem 0xfe010000-0xfe010fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 9 [mem 0x90000000-0x9d7fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:00: resource 10 [mem 0x380000000000-0x383fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:01: resource 1 [mem 0x92a00000-0x92dfffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:01: resource 2 [mem 0x380000000000-0x3800001fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:02: resource 1 [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:02: resource 2 [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:03: resource 1 [mem 0x92000000-0x928fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:03: resource 2 [mem 0x91000000-0x91ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:04: resource 1 [mem 0x90000000-0x900fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:04: resource 2 [mem 0x92e00000-0x92efffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: BAR 6: no space for [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0: PCI bridge to [bus 18]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0:   bridge window [io  0x4000-0x4fff]
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0:   bridge window [mem 0x9d800000-0x9d9fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: resource 4 [io  0x4000-0x5fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: resource 5 [mem 0x9d800000-0xaaffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:17: resource 6 [mem 0x384000000000-0x387fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:18: resource 0 [io  0x4000-0x4fff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:18: resource 1 [mem 0x9d800000-0x9d9fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: max bus depth: 1 pci_try_num: 2
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: BAR 14: assigned [mem 0xab000000-0xab1fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: BAR 6: assigned [mem 0xab000000-0xab0fffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: BAR 7: no space for [mem size 0x07f00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: BAR 7: failed to assign [mem size 0x07f00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: BAR 6: assigned [mem 0xab100000-0xab1fffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: BAR 7: no space for [mem size 0x07f00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: BAR 7: failed to assign [mem size 0x07f00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: PCI bridge to [bus 3b]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0:   bridge window [mem 0xab000000-0xab1fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0:   bridge window [mem 0xac000000-0xafffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: No. 2 try to assign unassigned res
Jun 20 11:51:43 localhost kernel: release child resource [mem 0xac000000-0xadffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: release child resource [mem 0xae000000-0xafffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: resource 15 [mem 0xac000000-0xafffffff 64bit pref] released
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: PCI bridge to [bus 3b]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: bridge window [mem 0x02000000-0x05ffffff 64bit pref] to [bus 3b] add_size 10000000 add_align 2000000
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: BAR 15: assigned [mem 0x388000000000-0x388013ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: BAR 0: assigned [mem 0x388000000000-0x388001ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: BAR 0: assigned [mem 0x388002000000-0x388003ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: BAR 7: assigned [mem 0x388004000000-0x38800befffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: BAR 7: assigned [mem 0x38800bf00000-0x388013dfffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: PCI bridge to [bus 3b]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0:   bridge window [mem 0xab000000-0xab1fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0:   bridge window [mem 0x388000000000-0x388013ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: resource 4 [io  0x6000-0x7fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: resource 5 [mem 0xab000000-0xb87fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3a: resource 6 [mem 0x388000000000-0x38bfffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3b: resource 1 [mem 0xab000000-0xab1fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:3b: resource 2 [mem 0x388000000000-0x388013ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: BAR 14: assigned [mem 0xb8a00000-0xb8afffff]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: BAR 6: assigned [mem 0xb8a00000-0xb8a3ffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: BAR 6: assigned [mem 0xb8a40000-0xb8a7ffff pref]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: PCI bridge to [bus 5e]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0:   bridge window [mem 0xb8a00000-0xb8afffff]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0:   bridge window [mem 0xb8800000-0xb88fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: resource 4 [io  0x8000-0x9fff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: resource 5 [mem 0xb8800000-0xc5ffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5d: resource 6 [mem 0x38c000000000-0x38ffffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5e: resource 1 [mem 0xb8a00000-0xb8afffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:5e: resource 2 [mem 0xb8800000-0xb88fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: resource 4 [mem 0xc6000000-0xd37fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:80: resource 5 [mem 0x390000000000-0x393fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: resource 4 [io  0xa000-0xbfff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: resource 5 [mem 0xd3800000-0xe0ffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:85: resource 6 [mem 0x394000000000-0x397fffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: max bus depth: 1 pci_try_num: 2
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 7: no space for [mem size 0x0fe00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 7: failed to assign [mem size 0x0fe00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 7: no space for [mem size 0x0fe00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 7: failed to assign [mem size 0x0fe00000 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 6: no space for [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 6: no space for [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 6: failed to assign [mem size 0x00100000 pref]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: PCI bridge to [bus af]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0xe1000000-0xe10fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0x39bffa000000-0x39bffeffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: No. 2 try to assign unassigned res
Jun 20 11:51:43 localhost kernel: release child resource [mem 0x39bffa000000-0x39bffbffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: release child resource [mem 0x39bffc000000-0x39bffdffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: release child resource [mem 0x39bffe000000-0x39bffe7fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: release child resource [mem 0x39bffe800000-0x39bffeffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: resource 15 [mem 0x39bffa000000-0x39bffeffffff 64bit pref] released
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: PCI bridge to [bus af]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: bridge window [mem 0x01000000-0x05ffffff 64bit pref] to [bus af] add_size 20000000 add_align 1000000
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: BAR 15: assigned [mem 0x398000000000-0x398024ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 0: assigned [mem 0x398000000000-0x398001ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 0: assigned [mem 0x398002000000-0x398003ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 2: assigned [mem 0x398004000000-0x3980047fffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 2: assigned [mem 0x398004800000-0x398004ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: BAR 7: assigned [mem 0x398005000000-0x398014dfffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: BAR 7: assigned [mem 0x398014e00000-0x398024bfffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: PCI bridge to [bus af]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0xe1000000-0xe10fffff]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0:   bridge window [mem 0x398000000000-0x398024ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: resource 4 [io  0xc000-0xdfff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: resource 5 [mem 0xe1000000-0xee7fffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:ae: resource 6 [mem 0x398000000000-0x39bfffffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:af: resource 1 [mem 0xe1000000-0xe10fffff]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:af: resource 2 [mem 0x398000000000-0x398024ffffff 64bit pref]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: resource 4 [io  0xe000-0xffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: resource 5 [mem 0xee800000-0xfbffffff window]
Jun 20 11:51:43 localhost kernel: pci_bus 0000:d7: resource 6 [mem 0x39c000000000-0x39ffffffffff window]
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.0: disabled boot interrupts on device [8086:2034]
Jun 20 11:51:43 localhost kernel: PCI: CLS 0 bytes, default 64
Jun 20 11:51:43 localhost kernel: Trying to unpack rootfs image as initramfs...
Jun 20 11:51:43 localhost kernel: DMAR: No SATC found
Jun 20 11:51:43 localhost kernel: DMAR: dmar6: Using Queued invalidation
Jun 20 11:51:43 localhost kernel: DMAR: dmar5: Using Queued invalidation
Jun 20 11:51:43 localhost kernel: DMAR: dmar4: Using Queued invalidation
Jun 20 11:51:43 localhost kernel: DMAR: dmar2: Using Queued invalidation
Jun 20 11:51:43 localhost kernel: DMAR: dmar7: Using Queued invalidation
Jun 20 11:51:43 localhost kernel: pci 0000:5d:00.0: Adding to iommu group 0
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.0: Adding to iommu group 1
Jun 20 11:51:43 localhost kernel: pci 0000:5e:00.1: Adding to iommu group 1
Jun 20 11:51:43 localhost kernel: pci 0000:3a:00.0: Adding to iommu group 2
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.0: Adding to iommu group 3
Jun 20 11:51:43 localhost kernel: pci 0000:3b:00.1: Adding to iommu group 4
Jun 20 11:51:43 localhost kernel: pci 0000:17:02.0: Adding to iommu group 5
Jun 20 11:51:43 localhost kernel: pci 0000:18:00.0: Adding to iommu group 6
Jun 20 11:51:43 localhost kernel: pci 0000:ae:00.0: Adding to iommu group 7
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.0: Adding to iommu group 8
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.1: Adding to iommu group 9
Jun 20 11:51:43 localhost kernel: pci 0000:af:00.2: Adding to iommu group 10
Jun 20 11:51:43 localhost kernel: pci 0000:00:00.0: Adding to iommu group 11
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.0: Adding to iommu group 12
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.2: Adding to iommu group 13
Jun 20 11:51:43 localhost kernel: pci 0000:00:05.4: Adding to iommu group 14
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.0: Adding to iommu group 15
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.1: Adding to iommu group 16
Jun 20 11:51:43 localhost kernel: pci 0000:00:08.2: Adding to iommu group 17
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.0: Adding to iommu group 18
Jun 20 11:51:43 localhost kernel: pci 0000:00:11.5: Adding to iommu group 18
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.0: Adding to iommu group 19
Jun 20 11:51:43 localhost kernel: pci 0000:00:14.2: Adding to iommu group 19
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.0: Adding to iommu group 20
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.1: Adding to iommu group 20
Jun 20 11:51:43 localhost kernel: pci 0000:00:16.4: Adding to iommu group 20
Jun 20 11:51:43 localhost kernel: pci 0000:00:17.0: Adding to iommu group 21
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.0: Adding to iommu group 22
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.4: Adding to iommu group 23
Jun 20 11:51:43 localhost kernel: pci 0000:00:1c.5: Adding to iommu group 24
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.0: Adding to iommu group 25
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.2: Adding to iommu group 25
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.4: Adding to iommu group 25
Jun 20 11:51:43 localhost kernel: pci 0000:00:1f.5: Adding to iommu group 25
Jun 20 11:51:43 localhost kernel: pci 0000:02:00.0: Adding to iommu group 26
Jun 20 11:51:43 localhost kernel: pci 0000:03:00.0: Adding to iommu group 26
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.0: Adding to iommu group 27
Jun 20 11:51:43 localhost kernel: pci 0000:04:00.1: Adding to iommu group 27
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.0: Adding to iommu group 28
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.2: Adding to iommu group 29
Jun 20 11:51:43 localhost kernel: pci 0000:17:05.4: Adding to iommu group 30
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.0: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.1: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.2: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.3: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.4: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.5: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.6: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:08.7: Adding to iommu group 31
Jun 20 11:51:43 localhost kernel: pci 0000:17:09.0: Adding to iommu group 32
Jun 20 11:51:43 localhost kernel: pci 0000:17:09.1: Adding to iommu group 32
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.0: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.1: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.2: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.3: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.4: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.5: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.6: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0e.7: Adding to iommu group 33
Jun 20 11:51:43 localhost kernel: pci 0000:17:0f.0: Adding to iommu group 34
Jun 20 11:51:43 localhost kernel: pci 0000:17:0f.1: Adding to iommu group 34
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.0: Adding to iommu group 35
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.1: Adding to iommu group 35
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.2: Adding to iommu group 35
Jun 20 11:51:43 localhost kernel: pci 0000:17:1d.3: Adding to iommu group 35
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.0: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.1: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.2: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.3: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.4: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.5: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:17:1e.6: Adding to iommu group 36
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.0: Adding to iommu group 37
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.2: Adding to iommu group 38
Jun 20 11:51:43 localhost kernel: pci 0000:3a:05.4: Adding to iommu group 39
Jun 20 11:51:43 localhost kernel: pci 0000:3a:08.0: Adding to iommu group 40
Jun 20 11:51:43 localhost kernel: pci 0000:3a:09.0: Adding to iommu group 41
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.0: Adding to iommu group 42
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.1: Adding to iommu group 43
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.2: Adding to iommu group 44
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.3: Adding to iommu group 45
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.4: Adding to iommu group 46
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.5: Adding to iommu group 47
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.6: Adding to iommu group 48
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0a.7: Adding to iommu group 49
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.0: Adding to iommu group 50
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.1: Adding to iommu group 51
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.2: Adding to iommu group 52
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0b.3: Adding to iommu group 53
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.0: Adding to iommu group 54
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.1: Adding to iommu group 55
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.2: Adding to iommu group 56
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.3: Adding to iommu group 57
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.4: Adding to iommu group 58
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.5: Adding to iommu group 59
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.6: Adding to iommu group 60
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0c.7: Adding to iommu group 61
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.0: Adding to iommu group 62
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.1: Adding to iommu group 63
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.2: Adding to iommu group 64
Jun 20 11:51:43 localhost kernel: pci 0000:3a:0d.3: Adding to iommu group 65
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.0: Adding to iommu group 66
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.2: Adding to iommu group 67
Jun 20 11:51:43 localhost kernel: pci 0000:5d:05.4: Adding to iommu group 68
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0e.0: Adding to iommu group 69
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0e.1: Adding to iommu group 70
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0f.0: Adding to iommu group 71
Jun 20 11:51:43 localhost kernel: pci 0000:5d:0f.1: Adding to iommu group 72
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.0: Adding to iommu group 73
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.1: Adding to iommu group 74
Jun 20 11:51:43 localhost kernel: pci 0000:5d:12.2: Adding to iommu group 74
Jun 20 11:51:43 localhost kernel: pci 0000:5d:15.0: Adding to iommu group 75
Jun 20 11:51:43 localhost kernel: pci 0000:5d:15.1: Adding to iommu group 75
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.0: Adding to iommu group 76
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.1: Adding to iommu group 76
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.4: Adding to iommu group 76
Jun 20 11:51:43 localhost kernel: pci 0000:5d:16.5: Adding to iommu group 76
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.0: Adding to iommu group 77
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.2: Adding to iommu group 78
Jun 20 11:51:43 localhost kernel: pci 0000:80:05.4: Adding to iommu group 79
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.0: Adding to iommu group 80
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.1: Adding to iommu group 81
Jun 20 11:51:43 localhost kernel: pci 0000:80:08.2: Adding to iommu group 82
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.0: Adding to iommu group 83
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.2: Adding to iommu group 84
Jun 20 11:51:43 localhost kernel: pci 0000:85:05.4: Adding to iommu group 85
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.0: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.1: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.2: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.3: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.4: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.5: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.6: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:08.7: Adding to iommu group 86
Jun 20 11:51:43 localhost kernel: pci 0000:85:09.0: Adding to iommu group 87
Jun 20 11:51:43 localhost kernel: pci 0000:85:09.1: Adding to iommu group 87
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.0: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.1: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.2: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.3: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.4: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.5: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.6: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0e.7: Adding to iommu group 88
Jun 20 11:51:43 localhost kernel: pci 0000:85:0f.0: Adding to iommu group 89
Jun 20 11:51:43 localhost kernel: pci 0000:85:0f.1: Adding to iommu group 89
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.0: Adding to iommu group 90
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.1: Adding to iommu group 90
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.2: Adding to iommu group 90
Jun 20 11:51:43 localhost kernel: pci 0000:85:1d.3: Adding to iommu group 90
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.0: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.1: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.2: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.3: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.4: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.5: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:85:1e.6: Adding to iommu group 91
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.0: Adding to iommu group 92
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.2: Adding to iommu group 93
Jun 20 11:51:43 localhost kernel: pci 0000:ae:05.4: Adding to iommu group 94
Jun 20 11:51:43 localhost kernel: pci 0000:ae:08.0: Adding to iommu group 95
Jun 20 11:51:43 localhost kernel: pci 0000:ae:09.0: Adding to iommu group 96
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.0: Adding to iommu group 97
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.1: Adding to iommu group 98
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.2: Adding to iommu group 99
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.3: Adding to iommu group 100
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.4: Adding to iommu group 101
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.5: Adding to iommu group 102
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.6: Adding to iommu group 103
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0a.7: Adding to iommu group 104
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.0: Adding to iommu group 105
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.1: Adding to iommu group 106
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.2: Adding to iommu group 107
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0b.3: Adding to iommu group 108
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.0: Adding to iommu group 109
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.1: Adding to iommu group 110
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.2: Adding to iommu group 111
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.3: Adding to iommu group 112
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.4: Adding to iommu group 113
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.5: Adding to iommu group 114
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.6: Adding to iommu group 115
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0c.7: Adding to iommu group 116
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.0: Adding to iommu group 117
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.1: Adding to iommu group 118
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.2: Adding to iommu group 119
Jun 20 11:51:43 localhost kernel: pci 0000:ae:0d.3: Adding to iommu group 120
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.0: Adding to iommu group 121
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.2: Adding to iommu group 122
Jun 20 11:51:43 localhost kernel: pci 0000:d7:05.4: Adding to iommu group 123
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0e.0: Adding to iommu group 124
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0e.1: Adding to iommu group 125
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0f.0: Adding to iommu group 126
Jun 20 11:51:43 localhost kernel: pci 0000:d7:0f.1: Adding to iommu group 127
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.0: Adding to iommu group 128
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.1: Adding to iommu group 129
Jun 20 11:51:43 localhost kernel: pci 0000:d7:12.2: Adding to iommu group 129
Jun 20 11:51:43 localhost kernel: pci 0000:d7:15.0: Adding to iommu group 130
Jun 20 11:51:43 localhost kernel: pci 0000:d7:15.1: Adding to iommu group 130
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.0: Adding to iommu group 131
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.1: Adding to iommu group 131
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.4: Adding to iommu group 131
Jun 20 11:51:43 localhost kernel: pci 0000:d7:16.5: Adding to iommu group 131
Jun 20 11:51:43 localhost kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
Jun 20 11:51:43 localhost kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun 20 11:51:43 localhost kernel: software IO TLB: mapped [mem 0x00000000611ff000-0x00000000651ff000] (64MB)
Jun 20 11:51:43 localhost kernel: Initialise system trusted keyrings
Jun 20 11:51:43 localhost kernel: Key type blacklist registered
Jun 20 11:51:43 localhost kernel: workingset: timestamp_bits=36 max_order=25 bucket_order=0
Jun 20 11:51:43 localhost kernel: zbud: loaded
Jun 20 11:51:43 localhost kernel: fuse: init (API version 7.39)
Jun 20 11:51:43 localhost kernel: integrity: Platform Keyring initialized
Jun 20 11:51:43 localhost kernel: integrity: Machine keyring initialized
Jun 20 11:51:43 localhost kernel: Key type asymmetric registered
Jun 20 11:51:43 localhost kernel: Asymmetric key parser 'x509' registered
Jun 20 11:51:43 localhost kernel: Freeing initrd memory: 32624K
Jun 20 11:51:43 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
Jun 20 11:51:43 localhost kernel: io scheduler mq-deadline registered
Jun 20 11:51:43 localhost kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 24
Jun 20 11:51:43 localhost kernel: pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Jun 20 11:51:43 localhost kernel: pcieport 0000:00:1c.4: PME: Signaling with IRQ 25
Jun 20 11:51:43 localhost kernel: pcieport 0000:00:1c.5: PME: Signaling with IRQ 26
Jun 20 11:51:43 localhost kernel: pcieport 0000:17:02.0: PME: Signaling with IRQ 28
Jun 20 11:51:43 localhost kernel: pcieport 0000:3a:00.0: PME: Signaling with IRQ 30
Jun 20 11:51:43 localhost kernel: pcieport 0000:5d:00.0: PME: Signaling with IRQ 32
Jun 20 11:51:43 localhost kernel: pcieport 0000:ae:00.0: PME: Signaling with IRQ 34
Jun 20 11:51:43 localhost kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun 20 11:51:43 localhost kernel: efifb: probing for efifb
Jun 20 11:51:43 localhost kernel: efifb: framebuffer at 0x91000000, using 3072k, total 3072k
Jun 20 11:51:43 localhost kernel: efifb: mode is 1024x768x32, linelength=4096, pages=1
Jun 20 11:51:43 localhost kernel: efifb: scrolling: redraw
Jun 20 11:51:43 localhost kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jun 20 11:51:43 localhost kernel: Console: switching to colour frame buffer device 128x48
Jun 20 11:51:43 localhost kernel: fb0: EFI VGA frame buffer device
Jun 20 11:51:43 localhost kernel: Monitor-Mwait will be used to enter C-1 state
Jun 20 11:51:43 localhost kernel: ACPI: \_SB_.SCK0.CP00: Found 1 idle states
Jun 20 11:51:43 localhost kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
Jun 20 11:51:43 localhost kernel: pstore: Using crash dump compression: deflate
Jun 20 11:51:43 localhost kernel: pstore: Registered erst as persistent store backend
Jun 20 11:51:43 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Jun 20 11:51:43 localhost kernel: 00:02: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
Jun 20 11:51:43 localhost kernel: 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Jun 20 11:51:43 localhost kernel: Linux agpgart interface v0.103
Jun 20 11:51:43 localhost kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
Jun 20 11:51:43 localhost kernel: i8042: PNP: No PS/2 controller found.
Jun 20 11:51:43 localhost kernel: mousedev: PS/2 mouse device common for all mice
Jun 20 11:51:43 localhost kernel: rtc_cmos 00:00: RTC can wake from S4
Jun 20 11:51:43 localhost kernel: rtc_cmos 00:00: registered as rtc0
Jun 20 11:51:43 localhost kernel: rtc_cmos 00:00: setting system clock to 2024-06-20T11:51:41 UTC (1718884301)
Jun 20 11:51:43 localhost kernel: rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram
Jun 20 11:51:43 localhost kernel: intel_pstate: Intel P-state driver initializing
Jun 20 11:51:43 localhost kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jun 20 11:51:43 localhost kernel: NET: Registered PF_INET6 protocol family
Jun 20 11:51:43 localhost kernel: Segment Routing with IPv6
Jun 20 11:51:43 localhost kernel: In-situ OAM (IOAM) with IPv6
Jun 20 11:51:43 localhost kernel: mip6: Mobile IPv6
Jun 20 11:51:43 localhost kernel: NET: Registered PF_PACKET protocol family
Jun 20 11:51:43 localhost kernel: mpls_gso: MPLS GSO support
Jun 20 11:51:43 localhost kernel: microcode: Microcode Update Driver: v2.2.
Jun 20 11:51:43 localhost kernel: tsc: Refined TSC clocksource calibration: 2095.077 MHz
Jun 20 11:51:43 localhost kernel: resctrl: MB allocation detected
Jun 20 11:51:43 localhost kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e33060eadb, max_idle_ns: 440795261188 ns
Jun 20 11:51:43 localhost kernel: resctrl: L3 monitoring detected
Jun 20 11:51:43 localhost kernel: IPI shorthand broadcast: enabled
Jun 20 11:51:43 localhost kernel: clocksource: Switched to clocksource tsc
Jun 20 11:51:43 localhost kernel: sched_clock: Marking stable (9024001236, 136757006)->(9463591876, -302833634)
Jun 20 11:51:43 localhost kernel: registered taskstats version 1
Jun 20 11:51:43 localhost kernel: Loading compiled-in X.509 certificates
Jun 20 11:51:43 localhost kernel: Loaded X.509 cert 'Build time autogenerated kernel key: eb1a22c3035f28ea7cb3c332b220c5a6366bed53'
Jun 20 11:51:43 localhost kernel: Key type .fscrypt registered
Jun 20 11:51:43 localhost kernel: Key type fscrypt-provisioning registered
Jun 20 11:51:43 localhost kernel: Key type encrypted registered
Jun 20 11:51:43 localhost kernel: AppArmor: AppArmor sha1 policy hashing enabled
Jun 20 11:51:43 localhost kernel: integrity: Loading X.509 certificate: UEFI:db
Jun 20 11:51:43 localhost kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
Jun 20 11:51:43 localhost kernel: integrity: Loading X.509 certificate: UEFI:db
Jun 20 11:51:43 localhost kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
Jun 20 11:51:43 localhost kernel: integrity: Loading X.509 certificate: UEFI:db
Jun 20 11:51:43 localhost kernel: integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
Jun 20 11:51:43 localhost kernel: integrity: Loading X.509 certificate: UEFI:db
Jun 20 11:51:43 localhost kernel: integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
Jun 20 11:51:43 localhost kernel: ima: No TPM chip found, activating TPM-bypass!
Jun 20 11:51:43 localhost kernel: ima: Allocated hash algorithm: sha256
Jun 20 11:51:43 localhost kernel: ima: No architecture policies found
Jun 20 11:51:43 localhost kernel: evm: Initialising EVM extended attributes:
Jun 20 11:51:43 localhost kernel: evm: security.selinux
Jun 20 11:51:43 localhost kernel: evm: security.SMACK64 (disabled)
Jun 20 11:51:43 localhost kernel: evm: security.SMACK64EXEC (disabled)
Jun 20 11:51:43 localhost kernel: evm: security.SMACK64TRANSMUTE (disabled)
Jun 20 11:51:43 localhost kernel: evm: security.SMACK64MMAP (disabled)
Jun 20 11:51:43 localhost kernel: evm: security.apparmor
Jun 20 11:51:43 localhost kernel: evm: security.ima
Jun 20 11:51:43 localhost kernel: evm: security.capability
Jun 20 11:51:43 localhost kernel: evm: HMAC attrs: 0x1
Jun 20 11:51:43 localhost kernel: RAS: Correctable Errors collector initialized.
Jun 20 11:51:43 localhost kernel: clk: Disabling unused clocks
Jun 20 11:51:43 localhost kernel: Freeing unused decrypted memory: 2028K
Jun 20 11:51:43 localhost kernel: Freeing unused kernel image (initmem) memory: 3956K
Jun 20 11:51:43 localhost kernel: Write protecting the kernel read-only data: 28672k
Jun 20 11:51:43 localhost kernel: Freeing unused kernel image (rodata/data gap) memory: 1772K
Jun 20 11:51:43 localhost kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 20 11:51:43 localhost kernel: Run /init as init process
Jun 20 11:51:43 localhost kernel:   with arguments:
Jun 20 11:51:43 localhost kernel:     /init
Jun 20 11:51:43 localhost kernel:   with environment:
Jun 20 11:51:43 localhost kernel:     HOME=/
Jun 20 11:51:43 localhost kernel:     TERM=linux
Jun 20 11:51:43 localhost systemd[1]: Inserted module 'autofs4'
Jun 20 11:51:43 localhost systemd[1]: systemd 254.5-1gardenlinux1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Jun 20 11:51:43 localhost systemd[1]: Detected architecture x86-64.
Jun 20 11:51:43 localhost systemd[1]: Running in initrd.
Jun 20 11:51:43 localhost systemd[1]: No hostname configured, using default hostname.
Jun 20 11:51:43 localhost systemd[1]: Hostname set to <localhost>.
Jun 20 11:51:43 localhost systemd[1]: Initializing machine ID from random generator.
Jun 20 11:51:43 localhost systemd[1]: Queued start job for default target initrd.target.
Jun 20 11:51:43 localhost systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
Jun 20 11:51:43 localhost systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
Jun 20 11:51:43 localhost systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System.
Jun 20 11:51:43 localhost systemd[1]: Reached target paths.target - Path Units.
Jun 20 11:51:43 localhost systemd[1]: Reached target slices.target - Slice Units.
Jun 20 11:51:43 localhost systemd[1]: Reached target swap.target - Swaps.
Jun 20 11:51:43 localhost systemd[1]: Reached target timers.target - Timer Units.
Jun 20 11:51:43 localhost systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
Jun 20 11:51:43 localhost systemd[1]: Listening on systemd-journald.socket - Journal Socket.
Jun 20 11:51:43 localhost systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
Jun 20 11:51:43 localhost systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
Jun 20 11:51:43 localhost systemd[1]: Reached target sockets.target - Socket Units.
Jun 20 11:51:43 localhost systemd[1]: dracut-cmdline-ask.service - dracut ask for additional cmdline parameters was skipped because no trigger condition checks were met.
Jun 20 11:51:43 localhost systemd[1]: Starting dracut-cmdline.service - dracut cmdline hook...
Jun 20 11:51:43 localhost systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
Jun 20 11:51:43 localhost systemd[1]: Started rngd.service - Hardware RNG Entropy Gatherer Daemon.
Jun 20 11:51:43 localhost systemd[1]: Starting systemd-journald.service - Journal Service...
Jun 20 11:51:43 localhost systemd-journald[512]: Collecting audit messages is disabled.
Jun 20 11:51:43 localhost systemd[1]: systemd-modules-load.service - Load Kernel Modules was skipped because no trigger condition checks were met.
Jun 20 11:51:43 localhost systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
Jun 20 11:51:43 localhost systemd[1]: Finished dracut-cmdline.service - dracut cmdline hook.
Jun 20 11:51:43 localhost systemd[1]: Started systemd-journald.service - Journal Service.
Jun 20 11:51:43 localhost kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
Jun 20 11:51:43 localhost kernel: device-mapper: uevent: version 1.0.3
Jun 20 11:51:43 localhost kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
Jun 20 11:51:44 localhost kernel: wmi_bus wmi_bus-PNP0C14:00: WQBC data block query control method not found
Jun 20 11:51:44 localhost kernel: cryptd: max_cpu_qlen set to 1000
Jun 20 11:51:44 localhost kernel: SCSI subsystem initialized
Jun 20 11:51:44 localhost kernel: ACPI: bus type USB registered
Jun 20 11:51:44 localhost kernel: usbcore: registered new interface driver usbfs
Jun 20 11:51:44 localhost kernel: usbcore: registered new interface driver hub
Jun 20 11:51:44 localhost kernel: usbcore: registered new device driver usb
Jun 20 11:51:44 localhost kernel: AVX2 version of gcm_enc/dec engaged.
Jun 20 11:51:44 localhost kernel: AES CTR mode by8 optimization enabled
Jun 20 11:51:44 localhost kernel: megasas: 07.725.01.00-rc1
Jun 20 11:51:44 localhost kernel: libata version 3.00 loaded.
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: BAR:0x1  BAR's base_addr(phys):0x000000009d900000  mapped virt_addr:0x00000000ea24119c
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: FW now in Ready state
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: 63 bit DMA mask and 32 bit consistent mask
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: firmware supports msix        : (96)
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: requested/available msix 33/33 poll_queue 0
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Jun 20 11:51:44 localhost kernel: ahci 0000:00:11.5: version 3.0
Jun 20 11:51:44 localhost kernel: ahci 0000:00:11.5: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
Jun 20 11:51:44 localhost kernel: ahci 0000:00:11.5: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: current msix/online cpus        : (33/32)
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: RDPQ mode        : (disabled)
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: Current firmware supports maximum commands: 928         LDIO threshold: 0
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Jun 20 11:51:44 localhost kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: Performance mode :Latency (latency index = 1)
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: FW supports sync cache        : No
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: megasas_disable_intr_fusion is called outbound_intr_mask:0x40000009
Jun 20 11:51:44 localhost kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
Jun 20 11:51:44 localhost kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 20 11:51:44 localhost kernel: usb usb1: Product: xHCI Host Controller
Jun 20 11:51:44 localhost kernel: usb usb1: Manufacturer: Linux 6.6.12-amd64 xhci-hcd
Jun 20 11:51:44 localhost kernel: usb usb1: SerialNumber: 0000:00:14.0
Jun 20 11:51:44 localhost kernel: hub 1-0:1.0: USB hub found
Jun 20 11:51:44 localhost kernel: hub 1-0:1.0: 16 ports detected
Jun 20 11:51:44 localhost kernel: scsi host1: ahci
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: FW provided supportMaxExtLDs: 1        max_lds: 64
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: controller type        : MR(2048MB)
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: Online Controller Reset(OCR)        : Enabled
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: Secure JBOD support        : No
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: NVMe passthru support        : No
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: FW provided TM TaskAbort/Reset timeout        : 0 secs/0 secs
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: JBOD sequence map support        : No
Jun 20 11:51:44 localhost kernel: megaraid_sas 0000:18:00.0: PCI Lane Margining support        : No
Jun 20 11:51:44 localhost kernel: scsi host2: ahci
Jun 20 11:51:44 localhost kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
Jun 20 11:51:44 localhost kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 20 11:51:44 localhost kernel: usb usb2: Product: xHCI Host Controller
Jun 20 11:51:44 localhost kernel: usb usb2: Manufacturer: Linux 6.6.12-amd64 xhci-hcd
Jun 20 11:51:45 localhost kernel: usb usb2: SerialNumber: 0000:00:14.0
Jun 20 11:51:45 localhost kernel: scsi host3: ahci
Jun 20 11:51:45 localhost kernel: hub 2-0:1.0: USB hub found
Jun 20 11:51:45 localhost kernel: scsi host4: ahci
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: megasas_enable_intr_fusion is called outbound_intr_mask:0x40000000
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: INIT adapter done
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: JBOD sequence map is disabled megasas_setup_jbod_map 5796
Jun 20 11:51:45 localhost kernel: hub 2-0:1.0: 10 ports detected
Jun 20 11:51:45 localhost kernel: usb: port power management may be unreliable
Jun 20 11:51:45 localhost kernel: scsi host5: ahci
Jun 20 11:51:45 localhost kernel: scsi host6: ahci
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: pci id                : (0x1000)/(0x005d)/(0x1028)/(0x1f42)
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: unevenspan support        : yes
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: firmware crash dump        : no
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: JBOD sequence map        : disabled
Jun 20 11:51:45 localhost kernel: ata1: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80100 irq 69
Jun 20 11:51:45 localhost kernel: ata2: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80180 irq 69
Jun 20 11:51:45 localhost kernel: ata3: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80200 irq 69
Jun 20 11:51:45 localhost kernel: ata4: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80280 irq 69
Jun 20 11:51:45 localhost kernel: ata5: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80300 irq 69
Jun 20 11:51:45 localhost kernel: ata6: SATA max UDMA/133 abar m524288@0x92f80000 port 0x92f80380 irq 69
Jun 20 11:51:45 localhost kernel: megaraid_sas 0000:18:00.0: Max firmware commands: 927 shared with default hw_queues = 32 poll_queues 0
Jun 20 11:51:45 localhost kernel: scsi host0: Avago SAS based MegaRAID driver
Jun 20 11:51:45 localhost kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
Jun 20 11:51:45 localhost kernel: scsi 0:2:0:0: Direct-Access     DELL     PERC H730P Adp   4.30 PQ: 0 ANSI: 5
Jun 20 11:51:45 localhost kernel: ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
Jun 20 11:51:45 localhost kernel: usb 1-14: new high-speed USB device number 2 using xhci_hcd
Jun 20 11:51:45 localhost kernel: scsi host7: ahci
Jun 20 11:51:45 localhost kernel: scsi host8: ahci
Jun 20 11:51:45 localhost kernel: scsi host9: ahci
Jun 20 11:51:45 localhost kernel: scsi host10: ahci
Jun 20 11:51:45 localhost kernel: scsi host11: ahci
Jun 20 11:51:45 localhost kernel: scsi host12: ahci
Jun 20 11:51:45 localhost kernel: scsi host13: ahci
Jun 20 11:51:45 localhost kernel: usb 1-14: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
Jun 20 11:51:45 localhost kernel: usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun 20 11:51:45 localhost kernel: scsi host14: ahci
Jun 20 11:51:45 localhost kernel: ata7: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00100 irq 71
Jun 20 11:51:45 localhost kernel: ata8: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00180 irq 71
Jun 20 11:51:45 localhost kernel: ata1: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata9: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00200 irq 71
Jun 20 11:51:45 localhost kernel: ata6: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata10: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00280 irq 71
Jun 20 11:51:45 localhost kernel: ata4: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata11: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00300 irq 71
Jun 20 11:51:45 localhost kernel: ata12: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00380 irq 71
Jun 20 11:51:45 localhost kernel: ata2: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata13: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00400 irq 71
Jun 20 11:51:45 localhost kernel: ata14: SATA max UDMA/133 abar m524288@0x92f00000 port 0x92f00480 irq 71
Jun 20 11:51:45 localhost kernel: ata3: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: hub 1-14:1.0: USB hub found
Jun 20 11:51:45 localhost kernel: ata5: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: hub 1-14:1.0: 4 ports detected
Jun 20 11:51:45 localhost kernel: ata9: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata13: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:45 localhost kernel: ata12: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:46 localhost kernel: ata7: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:46 localhost kernel: ata10: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:46 localhost kernel: ata11: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:46 localhost kernel: ata14: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun 20 11:51:46 localhost kernel: ata8: SATA link down (SStatus 0 SControl 300)
Jun 20 11:51:46 localhost kernel: ata14.00: ATAPI: PLDS DVD+/-RW DU-8A5LH, 6D5M, max UDMA/133
Jun 20 11:51:46 localhost kernel: ata14.00: configured for UDMA/133
Jun 20 11:51:46 localhost kernel: scsi 14:0:0:0: CD-ROM            PLDS     DVD+-RW DU-8A5LH 6D5M PQ: 0 ANSI: 5
Jun 20 11:51:46 localhost kernel: sd 0:2:0:0: [sda] 1170997248 512-byte logical blocks: (600 GB/558 GiB)
Jun 20 11:51:46 localhost kernel: sd 0:2:0:0: [sda] Write Protect is off
Jun 20 11:51:46 localhost kernel: sd 0:2:0:0: [sda] Mode Sense: 1f 00 00 08
Jun 20 11:51:46 localhost kernel: sd 0:2:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Jun 20 11:51:46 localhost kernel: sr 14:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
Jun 20 11:51:46 localhost kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jun 20 11:51:46 localhost kernel:  sda: sda1 sda2
Jun 20 11:51:46 localhost kernel: sd 0:2:0:0: [sda] Attached SCSI disk
Jun 20 11:51:46 localhost kernel: sr 14:0:0:0: Attached scsi CD-ROM sr0
Jun 20 11:51:46 localhost kernel: usb 1-14.1: new high-speed USB device number 3 using xhci_hcd
Jun 20 11:51:46 localhost kernel: usb 1-14.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
Jun 20 11:51:46 localhost kernel: usb 1-14.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun 20 11:51:46 localhost kernel: hub 1-14.1:1.0: USB hub found
Jun 20 11:51:46 localhost kernel: hub 1-14.1:1.0: 4 ports detected
Jun 20 11:51:46 localhost kernel: usb 1-14.4: new high-speed USB device number 4 using xhci_hcd
Jun 20 11:51:46 localhost kernel: usb 1-14.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
Jun 20 11:51:46 localhost kernel: usb 1-14.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun 20 11:51:46 localhost kernel: hub 1-14.4:1.0: USB hub found
Jun 20 11:51:46 localhost kernel: hub 1-14.4:1.0: 4 ports detected
Jun 20 11:51:47 localhost kernel: EXT4-fs (sda2): mounted filesystem 3cce84f6-6a7c-4f85-8fca-3af70112ad04 ro with ordered data mode. Quota mode: none.
Jun 20 11:51:48 localhost systemd-journald[512]: Received SIGTERM from PID 1 (systemd).
Jun 20 11:51:52 localhost systemd[1]: systemd 254.5-1gardenlinux1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Jun 20 11:51:52 localhost systemd[1]: Detected architecture x86-64.
Jun 20 11:51:52 localhost systemd[1]: Hostname set to <localhost>.
Jun 20 11:51:52 localhost systemd-crontab-generator[855]: ignoring /etc/cron.d/sysstat because there is sysstat-collect.timer
Jun 20 11:51:52 localhost systemd-crontab-generator[855]: ignoring /etc/cron.daily/sysstat because there is sysstat-summary.timer
Jun 20 11:51:52 localhost systemd-crontab-generator[855]: ignoring /etc/cron.daily/logrotate because native timer is present
Jun 20 11:51:52 localhost systemd-crontab-generator[855]: ignoring /etc/cron.daily/dpkg because there is dpkg-db-backup.timer
Jun 20 11:51:52 localhost systemd-crontab-generator[855]: ignoring /etc/cron.daily/apt-compat because there is apt-daily.timer
Jun 20 11:51:52 localhost systemd[1]: initrd-switch-root.service: Deactivated successfully.
Jun 20 11:51:52 localhost systemd[1]: Stopped initrd-switch-root.service - Switch Root.
Jun 20 11:51:52 localhost systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
Jun 20 11:51:52 localhost systemd[1]: Created slice machine.slice - Virtual Machine and Container Slice.
Jun 20 11:51:52 localhost systemd[1]: Created slice system-getty.slice - Slice /system/getty.
Jun 20 11:51:52 localhost systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
Jun 20 11:51:52 localhost systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
Jun 20 11:51:52 localhost systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
Jun 20 11:51:52 localhost systemd[1]: Created slice user.slice - User and Session Slice.
Jun 20 11:51:52 localhost systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
Jun 20 11:51:52 localhost systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
Jun 20 11:51:52 localhost systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
Jun 20 11:51:52 localhost systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
Jun 20 11:51:52 localhost systemd[1]: Stopped target initrd-switch-root.target - Switch Root.
Jun 20 11:51:52 localhost systemd[1]: Stopped target initrd-fs.target - Initrd File Systems.
Jun 20 11:51:52 localhost systemd[1]: Stopped target initrd-root-fs.target - Initrd Root File System.
Jun 20 11:51:52 localhost systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
Jun 20 11:51:52 localhost systemd[1]: Reached target slices.target - Slice Units.
Jun 20 11:51:52 localhost systemd[1]: Reached target swap.target - Swaps.
Jun 20 11:51:52 localhost systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
Jun 20 11:51:52 localhost systemd[1]: Reached target virt-guest-shutdown.target - libvirt guests shutdown target.
Jun 20 11:51:52 localhost systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
Jun 20 11:51:52 localhost systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
Jun 20 11:51:52 localhost systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
Jun 20 11:51:52 localhost systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
Jun 20 11:51:52 localhost systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
Jun 20 11:51:52 localhost systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
Jun 20 11:51:52 localhost systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
Jun 20 11:51:52 localhost systemd[1]: Listening on systemd-networkd.socket - Network Service Netlink Socket.
Jun 20 11:51:52 localhost systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
Jun 20 11:51:52 localhost systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
Jun 20 11:51:52 localhost systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
Jun 20 11:51:52 localhost systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
Jun 20 11:51:52 localhost systemd[1]: Mounting proc-fs-nfsd.mount - NFSD configuration filesystem...
Jun 20 11:51:52 localhost systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
Jun 20 11:51:52 localhost systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
Jun 20 11:51:52 localhost systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
Jun 20 11:51:52 localhost systemd[1]: Mounting tmp.mount - Temporary Directory (/tmp)...
Jun 20 11:51:52 localhost systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
Jun 20 11:51:52 localhost systemd[1]: Finished blk-availability.service - Availability of block devices.
Jun 20 11:51:52 localhost kernel: RPC: Registered named UNIX socket transport module.
Jun 20 11:51:52 localhost systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
Jun 20 11:51:52 localhost kernel: RPC: Registered udp transport module.
Jun 20 11:51:52 localhost kernel: RPC: Registered tcp transport module.
Jun 20 11:51:52 localhost kernel: RPC: Registered tcp-with-tls transport module.
Jun 20 11:51:52 localhost kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
Jun 20 11:51:52 localhost systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jun 20 11:51:52 localhost systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
Jun 20 11:51:52 localhost systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
Jun 20 11:51:52 localhost systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
Jun 20 11:51:52 localhost systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
Jun 20 11:51:52 localhost kernel: pstore: backend 'erst' already in use: ignoring 'efi_pstore'
Jun 20 11:51:52 localhost systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
Jun 20 11:51:52 localhost systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
Jun 20 11:51:52 localhost kernel: ACPI: bus type drm_connector registered
Jun 20 11:51:52 localhost kernel: loop: module loaded
Jun 20 11:51:52 localhost systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
Jun 20 11:51:52 localhost systemd[1]: Starting nftables.service - nftables...
Jun 20 11:51:52 localhost systemd[1]: Starting systemd-journald.service - Journal Service...
Jun 20 11:51:52 localhost systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
Jun 20 11:51:52 localhost systemd-journald[903]: Collecting audit messages is enabled.
Jun 20 11:51:52 localhost systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line...
Jun 20 11:51:52 localhost systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jun 20 11:51:52 localhost systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
Jun 20 11:51:52 localhost systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
Jun 20 11:51:52 localhost systemd[1]: Started systemd-journald.service - Journal Service.
Jun 20 11:51:52 localhost kernel: EXT4-fs (sda2): re-mounted 3cce84f6-6a7c-4f85-8fca-3af70112ad04 r/w. Quota mode: none.
Jun 20 11:51:52 localhost kernel: audit: type=1130 audit(1718884312.787:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 20 11:51:52 localhost kernel: audit: type=1130 audit(1718884312.943:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 20 11:51:53 localhost kernel: audit: type=1325 audit(1718884312.991:4): table=filter:2 family=1 entries=24 op=nft_register_chain pid=899 subj=unconfined comm="nft"
Jun 20 11:51:53 localhost kernel: audit: type=1130 audit(1718884313.003:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 20 11:51:53 localhost kernel: audit: type=1130 audit(1718884313.063:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 20 11:51:53 localhost kernel: audit: type=1131 audit(1718884313.063:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 20 11:51:53 localhost kernel: audit: type=1130 audit(1718884313.143:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 20 11:51:53 localhost kernel: audit: type=1131 audit(1718884313.143:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 20 11:51:53 localhost kernel: audit: type=1130 audit(1718884313.227:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 20 11:51:53 localhost kernel: audit: type=1131 audit(1718884313.227:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 20 11:51:55 localhost systemd-journald[903]: Received client request to flush runtime journal.
Jun 20 11:51:55 localhost systemd-journald[903]: /var/log/journal/d315bb39bce641858226fa8c7a580c4d/system.journal: Journal file uses a different sequence number ID, rotating.
Jun 20 11:51:55 localhost systemd-journald[903]: Rotating system journal.
Jun 20 11:51:55 localhost kernel: ACPI Error: No handler for Region [SYSI] (0000000076559ae1) [IPMI] (20230628/evregion-130)
Jun 20 11:51:55 localhost kernel: ACPI Error: Region IPMI (ID=7) has no handler (20230628/exfldio-261)
Jun 20 11:51:55 localhost kernel: ACPI Error: Aborting method \_SB.PMI0._GHL due to previous error (AE_NOT_EXIST) (20230628/psparse-529)
Jun 20 11:51:55 localhost kernel: ACPI Error: 
Jun 20 11:51:55 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Jun 20 11:51:55 localhost kernel: Aborting method 
Jun 20 11:51:55 localhost kernel: ACPI: button: Power Button [PWRF]
Jun 20 11:51:55 localhost kernel: \_SB.PMI0._PMC due to previous error (AE_NOT_EXIST) (20230628/psparse-529)
Jun 20 11:51:55 localhost kernel: ACPI: \_SB_.PMI0: _PMC evaluation failed: AE_NOT_EXIST
Jun 20 11:51:55 localhost kernel: IPMI message handler: version 39.2
Jun 20 11:51:55 localhost kernel: lpc_ich 0000:00:1f.0: I/O space for ACPI uninitialized
Jun 20 11:51:55 localhost kernel: lpc_ich 0000:00:1f.0: No MFD cells added
Jun 20 11:51:55 localhost kernel: input: PC Speaker as /devices/platform/pcspkr/input/input1
Jun 20 11:51:55 localhost kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Jun 20 11:51:55 localhost kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Jun 20 11:51:55 localhost kernel: pci 0000:00:1f.1: [8086:a1a0] type 00 class 0x058000
Jun 20 11:51:55 localhost kernel: pci 0000:00:1f.1: reg 0x10: [mem 0xfd000000-0xfdffffff 64bit]
Jun 20 11:51:55 localhost kernel: pci 0000:00:1f.1: Adding to iommu group 132
Jun 20 11:51:55 localhost kernel: ipmi device interface
Jun 20 11:51:55 localhost kernel: sd 0:2:0:0: Attached scsi generic sg0 type 0
Jun 20 11:51:55 localhost kernel: sr 14:0:0:0: Attached scsi generic sg1 type 5
Jun 20 11:51:55 localhost kernel: dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
Jun 20 11:51:55 localhost kernel: i2c i2c-0: 6/16 memory slots populated (from DMI)
Jun 20 11:51:55 localhost kernel: i2c i2c-0: Systems with more than 4 memory slots not supported yet, not instantiating SPD
Jun 20 11:51:55 localhost kernel: ipmi_si: IPMI System Interface driver
Jun 20 11:51:55 localhost kernel: ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
Jun 20 11:51:55 localhost kernel: ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
Jun 20 11:51:55 localhost kernel: ipmi_si: Adding SMBIOS-specified kcs state machine
Jun 20 11:51:55 localhost kernel: ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
Jun 20 11:51:55 localhost kernel: ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
Jun 20 11:51:55 localhost kernel: ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
Jun 20 11:51:55 localhost kernel: ipmi_si: Adding ACPI-specified kcs state machine
Jun 20 11:51:55 localhost kernel: ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
Jun 20 11:51:55 localhost kernel: mei_me 0000:00:16.0: Device doesn't have valid ME Interface
Jun 20 11:51:55 localhost kernel: iTCO_vendor_support: vendor-support=0
Jun 20 11:51:55 localhost kernel: tg3 0000:04:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 4c:d9:8f:95:32:16
Jun 20 11:51:55 localhost kernel: tg3 0000:04:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
Jun 20 11:51:55 localhost kernel: RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 655360 ms ovfl timer
Jun 20 11:51:55 localhost kernel: tg3 0000:04:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
Jun 20 11:51:55 localhost kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Jun 20 11:51:55 localhost kernel: tg3 0000:04:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
Jun 20 11:51:55 localhost kernel: tg3 0000:04:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 4c:d9:8f:95:32:17
Jun 20 11:51:55 localhost kernel: RAPL PMU: hw unit of domain dram 2^-16 Joules
Jun 20 11:51:55 localhost kernel: tg3 0000:04:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
Jun 20 11:51:55 localhost kernel: ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
Jun 20 11:51:55 localhost kernel: ipmi_si IPI0001:00: Using irq 10
Jun 20 11:51:55 localhost kernel: tg3 0000:04:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
Jun 20 11:51:55 localhost kernel: ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
Jun 20 11:51:55 localhost kernel: tg3 0000:04:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
Jun 20 11:51:55 localhost kernel: tg3 0000:5e:00.0 eth2: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 4c:d9:8f:7a:f7:8b
Jun 20 11:51:55 localhost kernel: ipmi_si IPI0001:00: IPMI kcs interface initialized
Jun 20 11:51:55 localhost kernel: tg3 0000:5e:00.0 eth2: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
Jun 20 11:51:55 localhost kernel: tg3 0000:5e:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
Jun 20 11:51:55 localhost kernel: tg3 0000:5e:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
Jun 20 11:51:55 localhost kernel: mlx5_core 0000:3b:00.0: firmware version: 22.41.1000
Jun 20 11:51:55 localhost kernel: mlx5_core 0000:3b:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:3a:00.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Jun 20 11:51:55 localhost kernel: tg3 0000:5e:00.1 eth3: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 4c:d9:8f:7a:f7:8c
Jun 20 11:51:55 localhost kernel: tg3 0000:5e:00.1 eth3: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
Jun 20 11:51:55 localhost kernel: tg3 0000:5e:00.1 eth3: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
Jun 20 11:51:55 localhost kernel: tg3 0000:5e:00.1 eth3: dma_rwctrl[00000001] dma_mask[64-bit]
Jun 20 11:51:55 localhost kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jun 20 11:51:55 localhost kernel: ipmi_ssif: IPMI SSIF Interface driver
Jun 20 11:51:55 localhost kernel: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
Jun 20 11:51:55 localhost kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
Jun 20 11:51:55 localhost kernel: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
Jun 20 11:51:55 localhost kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Jun 20 11:51:55 localhost kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jun 20 11:51:55 localhost kernel: Console: switching to colour dummy device 80x25
Jun 20 11:51:55 localhost kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Jun 20 11:51:55 localhost kernel: tg3 0000:5e:00.1 ens1f1: renamed from eth3
Jun 20 11:51:55 localhost kernel: mgag200 0000:03:00.0: vgaarb: deactivate vga console
Jun 20 11:51:55 localhost kernel: [drm] Initialized mgag200 1.0.0 20110418 for 0000:03:00.0 on minor 0
Jun 20 11:51:55 localhost kernel: fbcon: mgag200drmfb (fb0) is primary device
Jun 20 11:51:55 localhost kernel: platform regulatory.0: firmware: failed to load regulatory.db (-2)
Jun 20 11:51:55 localhost kernel: firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
Jun 20 11:51:55 localhost kernel: platform regulatory.0: firmware: failed to load regulatory.db (-2)
Jun 20 11:51:55 localhost kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Jun 20 11:51:55 localhost kernel: cfg80211: failed to load regulatory.db
Jun 20 11:51:55 localhost kernel: tg3 0000:04:00.0 eno1: renamed from eth0
Jun 20 11:51:55 localhost kernel: tg3 0000:5e:00.0 ens1f0: renamed from eth2
Jun 20 11:51:55 localhost kernel: tg3 0000:04:00.1 eno2: renamed from eth1
Jun 20 11:51:55 localhost kernel: Console: switching to colour frame buffer device 128x48
Jun 20 11:51:55 localhost kernel: mgag200 0000:03:00.0: [drm] fb0: mgag200drmfb frame buffer device
Jun 20 11:51:55 localhost kernel: mlx5_core 0000:3b:00.0: Rate limit: 127 rates are supported, range: 0Mbps to 97656Mbps
Jun 20 11:51:55 localhost kernel: mlx5_core 0000:3b:00.0: E-Switch: Total vports 129, per vport: max uc(128) max mc(2048)
Jun 20 11:51:55 localhost kernel: mlx5_core 0000:3b:00.0: mlx5_pcie_event:292:(pid 11): PCIe slot power capability was not advertised.
Jun 20 11:51:56 localhost kernel: EDAC MC0: Giving out device to module skx_edac controller Skylake Socket#0 IMC#0: DEV 0000:3a:0a.0 (INTERRUPT)
Jun 20 11:51:56 localhost kernel: EDAC MC1: Giving out device to module skx_edac controller Skylake Socket#0 IMC#1: DEV 0000:3a:0c.0 (INTERRUPT)
Jun 20 11:51:56 localhost kernel: EDAC MC2: Giving out device to module skx_edac controller Skylake Socket#1 IMC#0: DEV 0000:ae:0a.0 (INTERRUPT)
Jun 20 11:51:56 localhost kernel: EDAC MC3: Giving out device to module skx_edac controller Skylake Socket#1 IMC#1: DEV 0000:ae:0c.0 (INTERRUPT)
Jun 20 11:51:56 localhost kernel: intel_rapl_common: Found RAPL domain package
Jun 20 11:51:56 localhost kernel: intel_rapl_common: Found RAPL domain dram
Jun 20 11:51:56 localhost kernel: intel_rapl_common: package-0:dram:long_term locked by BIOS
Jun 20 11:51:56 localhost kernel: intel_rapl_common: Found RAPL domain package
Jun 20 11:51:56 localhost kernel: intel_rapl_common: Found RAPL domain dram
Jun 20 11:51:56 localhost kernel: intel_rapl_common: package-1:dram:long_term locked by BIOS
Jun 20 11:51:56 localhost kernel: mlx5_core 0000:3b:00.0: MLX5E: StrdRq(1) RqSz(8) StrdSz(2048) RxCqeCmprss(0 enhanced)
Jun 20 11:51:56 localhost kernel: mlx5_core 0000:3b:00.1: firmware version: 22.41.1000
Jun 20 11:51:56 localhost kernel: mlx5_core 0000:3b:00.1: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:3a:00.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Jun 20 11:51:56 localhost kernel: mlx5_core 0000:3b:00.1: Rate limit: 127 rates are supported, range: 0Mbps to 97656Mbps
Jun 20 11:51:56 localhost kernel: mlx5_core 0000:3b:00.1: E-Switch: Total vports 129, per vport: max uc(128) max mc(2048)
Jun 20 11:51:56 localhost kernel: mlx5_core 0000:3b:00.1: mlx5_pcie_event:292:(pid 11): PCIe slot power capability was not advertised.
Jun 20 11:51:56 localhost kernel: mlx5_core 0000:3b:00.1: MLX5E: StrdRq(1) RqSz(8) StrdSz(2048) RxCqeCmprss(0 enhanced)
Jun 20 11:51:57 localhost kernel: mlx5_core 0000:af:00.0: firmware version: 24.39.2048
Jun 20 11:51:57 localhost kernel: mlx5_core 0000:af:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:ae:00.0 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
Jun 20 11:51:57 localhost kernel: mlx5_core 0000:af:00.0: Rate limit: 127 rates are supported, range: 0Mbps to 24414Mbps
Jun 20 11:51:57 localhost kernel: mlx5_core 0000:af:00.0: E-Switch: Total vports 129, per vport: max uc(128) max mc(2048)
Jun 20 11:51:57 localhost kernel: mlx5_core 0000:af:00.0: mlx5_pcie_event:292:(pid 1114): PCIe slot power capability was not advertised.
Jun 20 11:51:57 localhost kernel: mlx5_core 0000:af:00.0: MLX5E: StrdRq(1) RqSz(8) StrdSz(2048) RxCqeCmprss(0 enhanced)
Jun 20 11:51:57 localhost kernel: mlx5_core 0000:af:00.1: firmware version: 24.39.2048
Jun 20 11:51:57 localhost kernel: mlx5_core 0000:af:00.1: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:ae:00.0 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
Jun 20 11:51:58 localhost kernel: mlx5_core 0000:af:00.1: Rate limit: 127 rates are supported, range: 0Mbps to 24414Mbps
Jun 20 11:51:58 localhost kernel: mlx5_core 0000:af:00.1: E-Switch: Total vports 129, per vport: max uc(128) max mc(2048)
Jun 20 11:51:58 localhost kernel: port_module: 39 callbacks suppressed
Jun 20 11:51:58 localhost kernel: mlx5_core 0000:af:00.1: Port module event: module 1, Cable plugged
Jun 20 11:51:58 localhost kernel: mlx5_core 0000:af:00.1: mlx5_pcie_event:292:(pid 11): PCIe slot power capability was not advertised.
Jun 20 11:51:58 localhost kernel: mlx5_core 0000:af:00.1: MLX5E: StrdRq(1) RqSz(8) StrdSz(2048) RxCqeCmprss(0 enhanced)
Jun 20 11:51:58 localhost kernel: mlx5_core 0000:af:00.0 ens3f0np0: renamed from eth2
Jun 20 11:51:58 localhost kernel: mlx5_core 0000:af:00.1 ens3f1np1: renamed from eth3
Jun 20 11:51:58 localhost kernel: mlx5_core 0000:3b:00.0 ens2f0np0: renamed from eth0
Jun 20 11:51:58 localhost kernel: mlx5_core 0000:3b:00.1 ens2f1np1: renamed from eth1
Jun 20 11:51:59 localhost kernel: tg3 0000:04:00.0 eno1: Link is up at 1000 Mbps, full duplex
Jun 20 11:51:59 localhost kernel: tg3 0000:04:00.0 eno1: Flow control is on for TX and on for RX
Jun 20 11:51:59 localhost kernel: tg3 0000:04:00.0 eno1: EEE is disabled
Jun 20 11:51:59 localhost kernel: mlx5_core 0000:af:00.0: mlx5_fw_tracer_handle_traces:741:(pid 11): FWTracer: Events were lost
Jun 20 11:52:01 localhost kernel: mlx5_core 0000:af:00.0 ens3f0np0: Link up
Jun 20 11:52:01 localhost kernel: mlx5_core 0000:3b:00.0 ens2f0np0: Link up
Jun 20 11:52:01 localhost kernel: mlx5_core 0000:3b:00.1 ens2f1np1: Link up
Jun 20 11:52:02 localhost kernel: VFIO - User Level meta-driver version: 0.3
Jun 20 11:52:03 localhost kernel: NFSD: Using nfsdcld client tracking operations.
Jun 20 11:52:03 localhost kernel: NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000000)
Jun 20 11:52:03 localhost kernel: tun: Universal TUN/TAP device driver, 1.6
Jun 20 11:52:03 localhost kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
Jun 20 11:52:07 localhost kernel: Bridge firewalling registered
Jun 20 11:52:07 localhost kernel: Initializing XFRM netlink socket
Jun 20 11:52:55 localhost kernel: usb 1-14.1.1: new high-speed USB device number 5 using xhci_hcd
Jun 20 11:52:56 localhost kernel: usb 1-14.1.1: New USB device found, idVendor=0624, idProduct=0249, bcdDevice= 0.00
Jun 20 11:52:56 localhost kernel: usb 1-14.1.1: New USB device strings: Mfr=4, Product=5, SerialNumber=6
Jun 20 11:52:56 localhost kernel: usb 1-14.1.1: Product: Keyboard/Mouse Function
Jun 20 11:52:56 localhost kernel: usb 1-14.1.1: Manufacturer: Avocent
Jun 20 11:52:56 localhost kernel: usb 1-14.1.1: SerialNumber: 20151118
Jun 20 11:52:56 localhost kernel: hid: raw HID events driver (C) Jiri Kosina
Jun 20 11:52:56 localhost kernel: usbcore: registered new interface driver usbhid
Jun 20 11:52:56 localhost kernel: usbhid: USB HID core driver
Jun 20 11:52:56 localhost kernel: input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:14.0/usb1/1-14/1-14.1/1-14.1.1/1-14.1.1:1.0/0003:0624:0249.0001/input/input2
Jun 20 11:52:56 localhost kernel: hid-generic 0003:0624:0249.0001: input,hidraw0: USB HID v1.00 Keyboard [Avocent Keyboard/Mouse Function] on usb-0000:00:14.0-14.1.1/input0
Jun 20 11:52:56 localhost kernel: input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:14.0/usb1/1-14/1-14.1/1-14.1.1/1-14.1.1:1.1/0003:0624:0249.0002/input/input3
Jun 20 11:52:56 localhost kernel: hid-generic 0003:0624:0249.0002: input,hidraw1: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:14.0-14.1.1/input1
Jun 20 11:53:15 localhost systemd-journald[903]: /var/log/journal/d315bb39bce641858226fa8c7a580c4d/user-1001.journal: Journal file uses a different sequence number ID, rotating.
Jun 20 11:54:03 localhost kernel: mlx5_core 0000:3b:00.0: E-Switch: Disable: mode(LEGACY), nvfs(0), necvfs(0), active vports(0)
Jun 20 11:54:06 localhost kernel: mlx5_core 0000:3b:00.0 ens2f0np0: Link up
Jun 20 11:54:06 localhost kernel: mlx5_core 0000:3b:00.0 ens2f0np0: Dropping C-tag vlan stripping offload due to S-tag vlan
Jun 20 11:54:06 localhost kernel: mlx5_core 0000:3b:00.0 ens2f0np0: Disabling HW_VLAN CTAG FILTERING, not supported in switchdev mode
Jun 20 11:54:06 localhost kernel: mlx5_core 0000:3b:00.0: E-Switch: Enable: mode(OFFLOADS), nvfs(0), necvfs(0), active vports(0)
Jun 20 11:54:32 localhost kernel: mlx5_core 0000:3b:00.1: E-Switch: Disable: mode(LEGACY), nvfs(0), necvfs(0), active vports(0)
Jun 20 11:54:34 localhost kernel: mlx5_core 0000:3b:00.1 ens2f1np1: Link up
Jun 20 11:54:34 localhost kernel: mlx5_core 0000:3b:00.1 ens2f1np1: Dropping C-tag vlan stripping offload due to S-tag vlan
Jun 20 11:54:34 localhost kernel: mlx5_core 0000:3b:00.1 ens2f1np1: Disabling HW_VLAN CTAG FILTERING, not supported in switchdev mode
Jun 20 11:54:34 localhost kernel: mlx5_core 0000:3b:00.1: E-Switch: Enable: mode(OFFLOADS), nvfs(0), necvfs(0), active vports(0)
Jun 20 11:54:45 localhost kernel: mlx5_core 0000:3b:00.0: shared_fdb:1 mode:mpesw
Jun 20 11:54:46 localhost kernel: mlx5_core 0000:3b:00.0: Operation mode is single FDB

[-- Attachment #3: devlink.txt --]
[-- Type: text/plain, Size: 4422 bytes --]

pci/0000:3b:00.0:
  name max_macs type generic
    values:
      cmode driverinit value 128
  name enable_roce type generic
    values:
      cmode driverinit value true
  name enable_remote_dev_reset type generic
    values:
      cmode runtime value true
  name enable_eth type generic
    values:
      cmode driverinit value true
  name enable_rdma type generic
    values:
      cmode driverinit value true
  name io_eq_size type generic
    values:
      cmode driverinit value 1024
  name event_eq_size type generic
    values:
      cmode driverinit value 4096
  name flow_steering_mode type driver-specific
    values:
      cmode runtime value smfs
  name fdb_large_groups type driver-specific
    values:
      cmode driverinit value 15
  name esw_port_metadata type driver-specific
    values:
      cmode runtime value true
  name esw_multiport type driver-specific
    values:
      cmode runtime value true
  name hairpin_num_queues type driver-specific
    values:
      cmode driverinit value 2
  name hairpin_queue_size type driver-specific
    values:
      cmode driverinit value 1024
pci/0000:3b:00.1:
  name max_macs type generic
    values:
      cmode driverinit value 128
  name enable_roce type generic
    values:
      cmode driverinit value true
  name enable_remote_dev_reset type generic
    values:
      cmode runtime value true
  name enable_eth type generic
    values:
      cmode driverinit value true
  name enable_rdma type generic
    values:
      cmode driverinit value true
  name io_eq_size type generic
    values:
      cmode driverinit value 1024
  name event_eq_size type generic
    values:
      cmode driverinit value 4096
  name flow_steering_mode type driver-specific
    values:
      cmode runtime value smfs
  name fdb_large_groups type driver-specific
    values:
      cmode driverinit value 15
  name esw_port_metadata type driver-specific
    values:
      cmode runtime value true
  name esw_multiport type driver-specific
    values:
      cmode runtime value true
  name hairpin_num_queues type driver-specific
    values:
      cmode driverinit value 2
  name hairpin_queue_size type driver-specific
    values:
      cmode driverinit value 1024
pci/0000:af:00.0:
  name max_macs type generic
    values:
      cmode driverinit value 128
  name enable_roce type generic
    values:
      cmode driverinit value true
  name enable_remote_dev_reset type generic
    values:
      cmode runtime value true
  name enable_eth type generic
    values:
      cmode driverinit value true
  name enable_rdma type generic
    values:
      cmode driverinit value true
  name io_eq_size type generic
    values:
      cmode driverinit value 1024
  name event_eq_size type generic
    values:
      cmode driverinit value 4096
  name flow_steering_mode type driver-specific
    values:
      cmode runtime value smfs
  name fdb_large_groups type driver-specific
    values:
      cmode driverinit value 15
  name esw_port_metadata type driver-specific
    values:
      cmode runtime value true
  name esw_multiport type driver-specific
    values:
      cmode runtime value false
  name hairpin_num_queues type driver-specific
    values:
      cmode driverinit value 1
  name hairpin_queue_size type driver-specific
    values:
      cmode driverinit value 1024
pci/0000:af:00.1:
  name max_macs type generic
    values:
      cmode driverinit value 128
  name enable_roce type generic
    values:
      cmode driverinit value true
  name enable_remote_dev_reset type generic
    values:
      cmode runtime value true
  name enable_eth type generic
    values:
      cmode driverinit value true
  name enable_rdma type generic
    values:
      cmode driverinit value true
  name io_eq_size type generic
    values:
      cmode driverinit value 1024
  name event_eq_size type generic
    values:
      cmode driverinit value 4096
  name flow_steering_mode type driver-specific
    values:
      cmode runtime value smfs
  name fdb_large_groups type driver-specific
    values:
      cmode driverinit value 15
  name esw_port_metadata type driver-specific
    values:
      cmode runtime value true
  name esw_multiport type driver-specific
    values:
      cmode runtime value false
  name hairpin_num_queues type driver-specific
    values:
      cmode driverinit value 1
  name hairpin_queue_size type driver-specific
    values:
      cmode driverinit value 1024

[-- Attachment #4: sysfs_output_pf0.txt --]
[-- Type: text/plain, Size: 392 bytes --]

/sys/kernel/debug/mlx5/0000:3b:00.0/lag/flags
shared_fdb:on
fdb_selection_mode:native
/sys/kernel/debug/mlx5/0000:3b:00.0/lag/mapping
1:0
2:0
/sys/kernel/debug/mlx5/0000:3b:00.0/lag/members
0000:3b:00.0
0000:3b:00.1
/sys/kernel/debug/mlx5/0000:3b:00.0/lag/port_sel_mode
mpesw
/sys/kernel/debug/mlx5/0000:3b:00.0/lag/state
active
/sys/kernel/debug/mlx5/0000:3b:00.0/lag/type
multiport_eswitch

[-- Attachment #5: sysfs_output_pf1.txt --]
[-- Type: text/plain, Size: 392 bytes --]

/sys/kernel/debug/mlx5/0000:3b:00.1/lag/flags
shared_fdb:on
fdb_selection_mode:native
/sys/kernel/debug/mlx5/0000:3b:00.1/lag/mapping
1:0
2:0
/sys/kernel/debug/mlx5/0000:3b:00.1/lag/members
0000:3b:00.0
0000:3b:00.1
/sys/kernel/debug/mlx5/0000:3b:00.1/lag/port_sel_mode
mpesw
/sys/kernel/debug/mlx5/0000:3b:00.1/lag/state
active
/sys/kernel/debug/mlx5/0000:3b:00.1/lag/type
multiport_eswitch

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

* RE: Enabling multiport eswitch (mlx5) breaks PF1 bifurcation immediately
  2024-06-20 15:34   ` Guelce, Guevenc
@ 2024-06-24 12:57     ` Dariusz Sosnowski
  0 siblings, 0 replies; 4+ messages in thread
From: Dariusz Sosnowski @ 2024-06-24 12:57 UTC (permalink / raw)
  To: Guelce, Guevenc, users, Li, Tao

> -----Original Message-----
> From: Guelce, Guevenc <guevenc.guelce@sap.com>
> Sent: Thursday, June 20, 2024 17:34
> To: Dariusz Sosnowski <dsosnowski@nvidia.com>; users@dpdk.org; Li, Tao
> <tao.li06@sap.com>
> Subject: RE: Enabling multiport eswitch (mlx5) breaks PF1 bifurcation immediately
> 
> Hi Dariusz,
> 
> Thanks a lot for looking into this.
> I am attaching the infos you requested to this email. I reproduced the issue
> described below on another machine and that machine has two Nvidia cards and
> a newer ConnectX6 Firmware.
> The card I used for testing and reproducing is ConnectX6 on PCI address
> 0000:3b:00.0 and 0000:3b:00.1 I ran the commands I mentioned below in the
> email and PF1 traffic of this card to linux kernel was cut off.
> 
> ----<test environment>----
> pci/0000:3b:00.0:
>   driver mlx5_core
>   versions:
>       fixed:
>         fw.psid MT_0000000359
>       running:
>         fw.version 22.41.1000
>         fw 22.41.1000
>       stored:
>         fw.version 22.41.1000
>         fw 22.41.1000
> auxiliary/mlx5_core.eth.0:
>   driver mlx5_core.eth
> pci/0000:3b:00.1:
>   driver mlx5_core
>   versions:
>       fixed:
>         fw.psid MT_0000000359
>       running:
>         fw.version 22.41.1000
>         fw 22.41.1000
>       stored:
>         fw.version 22.41.1000
>         fw 22.41.1000
> 
> Linux Kernel Version: 6.6.12
> ----</test environment>----
> 
> We didn’t configure any LAG but we enabled this firmware setting
> "LAG_RESOURCE_ALLOCATION"
> as it is needed for multiport eswitch per documentation here:
> https://doc.dpdk.org/guides/nics/mlx5.html#id1
> 
> 
> Linux logs and sysfs / devlink outputs are on attach as a text file.
> 
> Thanks & Regards,
> 
> Guvenc Gulce
> 
> 
> -----Original Message-----
> From: Dariusz Sosnowski <dsosnowski@nvidia.com>
> Sent: Wednesday, 19 June 2024 20:13
> To: Guelce, Guevenc <guevenc.guelce@sap.com>; users@dpdk.org
> Subject: RE: Enabling multiport eswitch (mlx5) breaks PF1 bifurcation immediately
> 
> Hi,
> 
> > From: Guelce, Guevenc <guevenc.guelce@sap.com>
> > Sent: Friday, June 14, 2024 11:18
> > To: users@dpdk.org
> > Cc: Dariusz Sosnowski <dsosnowski@nvidia.com>
> > Subject: Enabling multiport eswitch (mlx5) breaks PF1 bifurcation
> > immediately Hi all, Hi Dariusz,
> >
> >
> > Thanks a lot for your help so far. We really appreciate it.
> > I just want to touch base with this question which was asked by my colleague
> Tao a while back.
> >
> > Our question is actually quite simple. Issuing the commands listed
> > below on a ConnectX-6 Dx Card breaks the bifurcated nature of the mlx5
> > driver in linux kernel for PF1. (No traffic is forwarded to linux
> > kernel anymore on PF1) You don’t need to start any testpmd or dpdk
> application. Just issuing the following commands below breaks the PF1 in linux
> kernel already.
> >
> > sudo devlink dev eswitch set pci/0000:8a:00.0 mode switchdev sudo
> > devlink dev eswitch set pci/0000:8a:00.1 mode switchdev sudo devlink
> > dev param set pci/0000:8a:00.0 name esw_multiport value true cmode
> > runtime sudo devlink dev param set pci/0000:8a:00.1 name esw_multiport
> > value true cmode runtime
> >
> >
> > ----<test environment>-----
> > pci/0000:8a:00.0:
> >   driver mlx5_core
> >   versions:
> >       fixed:
> >         fw.psid MT_0000000359
> >       running:
> >         fw.version 22.39.2048
> >         fw 22.39.2048
> > Linux kernel version: 6.6.16
> > DPDK: 23.11 (But not really needed to reproduce the issue) ----</test
> > environment>------
> >
> >
> > This makes the eswitch multiport feature for us unusable. Could you please
> advise whether we are missing smt here ?
> > As we are really keen to use this feature.
> 
> Could you please send us the following info? It would help with debugging the
> issue.
> 
> - Despite the Multiport E-Switch configuration, do you configure any additional
> bonding?
> - Output of commands:
>     - sudo devlink dev param show
>     - for f in /sys/kernel/debug/mlx5/0000:8a:00.0/lag/*; do echo $f; cat $f; done
>     - for f in /sys/kernel/debug/mlx5/0000:8a:00.1/lag/*; do echo $f; cat $f; done
> - Output of dmesg, ideally all logs since boot.

Thank you for all the logs.

From the logs and command outputs, it looks like the Multiport E-Switch was configured correctly.
All devlink configurations also seems correct, so receiving traffic on PF1 in kernel should be working.

This issue appears to be related to kernel driver, so it would require digging into what happens inside it.

Could you please reach out to upstream maintainers of mlx5 Linux kernel driver?
They would be able to assist you much better in that case.

Best regards,
Dariusz Sosnowski

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

end of thread, other threads:[~2024-06-24 12:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-14  9:18 Enabling multiport eswitch (mlx5) breaks PF1 bifurcation immediately Guelce, Guevenc
2024-06-19 18:12 ` Dariusz Sosnowski
2024-06-20 15:34   ` Guelce, Guevenc
2024-06-24 12:57     ` Dariusz Sosnowski

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