linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: Fixes tag needs some work in the netfilter tree
@ 2024-02-08  4:57 Stephen Rothwell
  2024-02-08  8:07 ` Jozsef Kadlecsik
  2024-02-08  8:30 ` linux-next20240208: tg3 driver nw interfaces not getting configured Aithal, Srikanth
  0 siblings, 2 replies; 13+ messages in thread
From: Stephen Rothwell @ 2024-02-08  4:57 UTC (permalink / raw)
  To: Pablo Neira Ayuso, NetFilter
  Cc: Jozsef Kadlecsik, Linux Kernel Mailing List, Linux Next Mailing List

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

Hi all,

In commit

  6099505cd2a2 ("netfilter: ipset: Missing gc cancellations fixed")

Fixes tag

  Fixes: fdb8e12cc2cc ("netfilter: ipset: fix performance regression in swap operation")

has these problem(s):

  - Target SHA1 does not exist

Maybe you meant:

Fixes: 97f7cf1cd80e ("netfilter: ipset: fix performance regression in swap operation")

-- 
Cheers,
Stephen Rothwell

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

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

* Re: linux-next: Fixes tag needs some work in the netfilter tree
  2024-02-08  4:57 linux-next: Fixes tag needs some work in the netfilter tree Stephen Rothwell
@ 2024-02-08  8:07 ` Jozsef Kadlecsik
  2024-02-08  8:30 ` linux-next20240208: tg3 driver nw interfaces not getting configured Aithal, Srikanth
  1 sibling, 0 replies; 13+ messages in thread
From: Jozsef Kadlecsik @ 2024-02-08  8:07 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Pablo Neira Ayuso, NetFilter, Linux Kernel Mailing List,
	Linux Next Mailing List

Hi,

On Thu, 8 Feb 2024, Stephen Rothwell wrote:

> In commit
> 
>   6099505cd2a2 ("netfilter: ipset: Missing gc cancellations fixed")
> 
> Fixes tag
> 
>   Fixes: fdb8e12cc2cc ("netfilter: ipset: fix performance regression in swap operation")
> 
> has these problem(s):
> 
>   - Target SHA1 does not exist
> 
> Maybe you meant:
> 
> Fixes: 97f7cf1cd80e ("netfilter: ipset: fix performance regression in swap operation")

Yes, exactly. Accidentally I used the tag from my git tree and that caused 
the incorrect tag value. If that's OK, I'll send a fix for the nf-next 
tree when the patch reaches it.

Best regards,
Jozsef
-- 
E-mail  : kadlec@blackhole.kfki.hu, kadlecsik.jozsef@wigner.hu
PGP key : https://wigner.hu/~kadlec/pgp_public_key.txt
Address : Wigner Research Centre for Physics
          H-1525 Budapest 114, POB. 49, Hungary

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

* linux-next20240208: tg3 driver nw interfaces not getting configured
  2024-02-08  4:57 linux-next: Fixes tag needs some work in the netfilter tree Stephen Rothwell
  2024-02-08  8:07 ` Jozsef Kadlecsik
@ 2024-02-08  8:30 ` Aithal, Srikanth
  2024-02-08 10:46   ` Heiner Kallweit
  1 sibling, 1 reply; 13+ messages in thread
From: Aithal, Srikanth @ 2024-02-08  8:30 UTC (permalink / raw)
  To: Stephen Rothwell, hkallweit1, andrew, Jakub Kicinski
  Cc: Linux Next Mailing List, Linux Regressions, open list

Hi,

On 6.8.0-rc3-next-20240208, the network interfaces are not getting 
configured.

I have 'NetXtreme BCM5720 Gigabit Ethernet PCIe'
        configuration: autonegotiation=on broadcast=yes driver=tg3

If I revert below commit I am able to get back the interfaces mentioned.

commit 9bc791341bc9a5c22b94889aa37993bb69faa317
Author: Heiner Kallweit <hkallweit1@gmail.com>
Date:   Sat Feb 3 22:12:50 2024 +0100

     tg3: convert EEE handling to use linkmode bitmaps

     Convert EEE handling to use linkmode bitmaps. This prepares for
     removing the legacy bitmaps from struct ethtool_keee.
     No functional change intended.

     Note: The change to mii_eee_cap1_mod_linkmode_t(tp->eee.advertised, 
val)
     in tg3_phy_autoneg_cfg() isn't completely obvious, but it doesn't 
change
     the current functionality.

     Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
     Reviewed-by: Andrew Lunn <andrew@lunn.ch>
     Link: 
https://lore.kernel.org/r/0652b910-6bcc-421f-8769-38f7dae5037e@gmail.com
     Signed-off-by: Jakub Kicinski <kuba@kernel.org>


The same works fine on 6.8.0-rc3-next-20240207.

Thanks,
Srikanth Aithal
sraithal@amd.com

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

* Re: linux-next20240208: tg3 driver nw interfaces not getting configured
  2024-02-08  8:30 ` linux-next20240208: tg3 driver nw interfaces not getting configured Aithal, Srikanth
@ 2024-02-08 10:46   ` Heiner Kallweit
  2024-02-08 11:05     ` Aithal, Srikanth
  0 siblings, 1 reply; 13+ messages in thread
From: Heiner Kallweit @ 2024-02-08 10:46 UTC (permalink / raw)
  To: Aithal, Srikanth, Stephen Rothwell, andrew, Jakub Kicinski
  Cc: Linux Next Mailing List, Linux Regressions, open list

On 08.02.2024 09:30, Aithal, Srikanth wrote:
> Hi,
> 
> On 6.8.0-rc3-next-20240208, the network interfaces are not getting configured.
> 
Thanks for the report. Could you please elaborate on what "not getting
configured" means in detail?
- Any error in any log?
- Any other error message?
- Interface doesn't come up or which specific configuration are you missing?

> I have 'NetXtreme BCM5720 Gigabit Ethernet PCIe'
>        configuration: autonegotiation=on broadcast=yes driver=tg3
> 
> If I revert below commit I am able to get back the interfaces mentioned.
> 
> commit 9bc791341bc9a5c22b94889aa37993bb69faa317
> Author: Heiner Kallweit <hkallweit1@gmail.com>
> Date:   Sat Feb 3 22:12:50 2024 +0100
> 
>     tg3: convert EEE handling to use linkmode bitmaps
> 
>     Convert EEE handling to use linkmode bitmaps. This prepares for
>     removing the legacy bitmaps from struct ethtool_keee.
>     No functional change intended.
> 
>     Note: The change to mii_eee_cap1_mod_linkmode_t(tp->eee.advertised, val)
>     in tg3_phy_autoneg_cfg() isn't completely obvious, but it doesn't change
>     the current functionality.
> 
>     Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
>     Reviewed-by: Andrew Lunn <andrew@lunn.ch>
>     Link: https://lore.kernel.org/r/0652b910-6bcc-421f-8769-38f7dae5037e@gmail.com
>     Signed-off-by: Jakub Kicinski <kuba@kernel.org>
> 
> 
> The same works fine on 6.8.0-rc3-next-20240207.
> 
> Thanks,
> Srikanth Aithal
> sraithal@amd.com
Heiner

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

* Re: linux-next20240208: tg3 driver nw interfaces not getting configured
  2024-02-08 10:46   ` Heiner Kallweit
@ 2024-02-08 11:05     ` Aithal, Srikanth
  2024-02-08 14:02       ` Heiner Kallweit
  0 siblings, 1 reply; 13+ messages in thread
From: Aithal, Srikanth @ 2024-02-08 11:05 UTC (permalink / raw)
  To: Heiner Kallweit, Stephen Rothwell, andrew, Jakub Kicinski
  Cc: Linux Next Mailing List, Linux Regressions, open list

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

On 2/8/2024 4:16 PM, Heiner Kallweit wrote:
> On 08.02.2024 09:30, Aithal, Srikanth wrote:
>> Hi,
>>
>> On 6.8.0-rc3-next-20240208, the network interfaces are not getting configured.
>>
> Thanks for the report. Could you please elaborate on what "not getting
> configured" means in detail?
> - Any error in any log?
> - Any other error message?
> - Interface doesn't come up or which specific configuration are you missing?
> 
I am not seeing any errors in the dmesg,

[    4.019383] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 
5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[    4.019391] tg3 0000:c1:00.0 eth0: attached PHY is 5720C 
(10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    4.019394] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] 
ASF[1] TSOcap[1]
[    4.019397] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    4.041082] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 
5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[    4.041087] tg3 0000:c1:00.1 eth1: attached PHY is 5720C 
(10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    4.041090] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] 
ASF[1] TSOcap[1]
[    4.041092] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    4.077483] tg3 0000:c1:00.1 eno8403: renamed from eth1
[    4.124657] tg3 0000:c1:00.0 eno8303: renamed from eth0

nmcli says interfaces are disconnected:

[root@localhost ~]# nmcli
eno8303: disconnected
         "Broadcom and subsidiaries NetXtreme BCM5720"
         ethernet (tg3), D0:8E:79:BB:95:90, hw, mtu 1500

eno8403: disconnected
         "Broadcom and subsidiaries NetXtreme BCM5720"
         ethernet (tg3), D0:8E:79:BB:95:91, hw, mtu 1500

I am attaching host dmesg.

>> I have 'NetXtreme BCM5720 Gigabit Ethernet PCIe'
>>         configuration: autonegotiation=on broadcast=yes driver=tg3
>>
>> If I revert below commit I am able to get back the interfaces mentioned.
>>
>> commit 9bc791341bc9a5c22b94889aa37993bb69faa317
>> Author: Heiner Kallweit <hkallweit1@gmail.com>
>> Date:   Sat Feb 3 22:12:50 2024 +0100
>>
>>      tg3: convert EEE handling to use linkmode bitmaps
>>
>>      Convert EEE handling to use linkmode bitmaps. This prepares for
>>      removing the legacy bitmaps from struct ethtool_keee.
>>      No functional change intended.
>>
>>      Note: The change to mii_eee_cap1_mod_linkmode_t(tp->eee.advertised, val)
>>      in tg3_phy_autoneg_cfg() isn't completely obvious, but it doesn't change
>>      the current functionality.
>>
>>      Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
>>      Reviewed-by: Andrew Lunn <andrew@lunn.ch>
>>      Link: https://lore.kernel.org/r/0652b910-6bcc-421f-8769-38f7dae5037e@gmail.com
>>      Signed-off-by: Jakub Kicinski <kuba@kernel.org>
>>
>>
>> The same works fine on 6.8.0-rc3-next-20240207.
>>
>> Thanks,
>> Srikanth Aithal
>> sraithal@amd.com
> Heiner

[-- Attachment #2: issue_tg3 --]
[-- Type: text/plain, Size: 203665 bytes --]

[    0.000000] Linux version 6.8.0-rc3-next-20240208 (root@) (gcc (GCC) 11.4.1 20230605 (Red Hat 11.4.1-2), GNU ld version 2.35.2-42.el9) #5 SMP PREEMPT_DYNAMIC Thu Feb  8 13:49:40 IST 2024
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt5)/vmlinuz-6.8.0-rc3-next-20240208 root=/dev/mapper/rhel_sharavati-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/rhel_sharavati-swap rd.lvm.lv=rhel_sharavati/root rd.lvm.lv=rhel_sharavati/swap rhgb quiet console=ttyS0,115200n8 earlyprintk
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000016000000 - 0x00000000568fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015ffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000016000000-0x00000000568fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056900000-0x00000000569fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000569fc000-0x00000000569fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000569fd000-0x000000005a14afff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a14b000-0x000000005a34afff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a34b000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] e820: update [mem 0x00bba020-0x00bffe5f] usable ==> usable
[    0.000000] e820: update [mem 0x00bba020-0x00bffe5f] usable ==> usable
[    0.000000] e820: update [mem 0x00b87020-0x00bb945f] usable ==> usable
[    0.000000] e820: update [mem 0x00b87020-0x00bb945f] usable ==> usable
[    0.000000] e820: update [mem 0x00b54020-0x00b8645f] usable ==> usable
[    0.000000] e820: update [mem 0x00b54020-0x00b8645f] usable ==> usable
[    0.000000] e820: update [mem 0x00b4b020-0x00b5305f] usable ==> usable
[    0.000000] e820: update [mem 0x00b4b020-0x00b5305f] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000000b4b01f] usable
[    0.000000] reserve setup_data: [mem 0x0000000000b4b020-0x0000000000b5305f] usable
[    0.000000] reserve setup_data: [mem 0x0000000000b53060-0x0000000000b5401f] usable
[    0.000000] reserve setup_data: [mem 0x0000000000b54020-0x0000000000b8645f] usable
[    0.000000] reserve setup_data: [mem 0x0000000000b86460-0x0000000000b8701f] usable
[    0.000000] reserve setup_data: [mem 0x0000000000b87020-0x0000000000bb945f] usable
[    0.000000] reserve setup_data: [mem 0x0000000000bb9460-0x0000000000bba01f] usable
[    0.000000] reserve setup_data: [mem 0x0000000000bba020-0x0000000000bffe5f] usable
[    0.000000] reserve setup_data: [mem 0x0000000000bffe60-0x0000000015ffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000016000000-0x00000000568fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000056900000-0x00000000569fbfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000569fc000-0x00000000569fcfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000569fd000-0x000000005a14afff] usable
[    0.000000] reserve setup_data: [mem 0x000000005a14b000-0x000000005a34afff] reserved
[    0.000000] reserve setup_data: [mem 0x000000005a34b000-0x0000000067acefff] usable
[    0.000000] reserve setup_data: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] reserve setup_data: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] reserve setup_data: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x6417c8a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6effd020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem55: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] e820: remove [mem 0x80000000-0x8fffffff] reserved
[    0.000000] efi: Remove mem56: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xaa000000-0xaaffffff] reserved
[    0.000000] efi: Remove mem57: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xc5000000-0xc5ffffff] reserved
[    0.000000] efi: Remove mem58: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xe0000000-0xe0ffffff] reserved
[    0.000000] efi: Remove mem59: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] e820: remove [mem 0xfd000000-0xffffffff] reserved
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.8.5 08/18/2022
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.375 MHz processor
[    0.000012] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000015] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000025] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.000031] MTRR map: 5 entries (2 fixed + 3 variable; max 19), built from 9 variable MTRRs
[    0.000033] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000256] x2apic: enabled by BIOS, switching to x2apic ops
[    0.000259] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.004751] Using GB pages for direct mapping
[    0.005477] Secure boot disabled
[    0.005478] RAMDISK: [mem 0x40778b5000-0x407f1fffff]
[    0.005482] ACPI: Early table checksum verification disabled
[    0.005484] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.005489] ACPI: XSDT 0x000000006EFC5188 0000D4 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.005494] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.005499] ACPI: DSDT 0x000000006EFDA000 019535 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.005501] ACPI: FACS 0x000000006EDB9000 000040
[    0.005504] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.005506] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.005509] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.005511] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.005513] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.005516] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.005518] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.005521] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.005523] ACPI: SSDT 0x000000006EFD8000 000D7B (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.005526] ACPI: EINJ 0x000000006EFD7000 000150 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.005529] ACPI: SSDT 0x000000006EFD6000 0006A4 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.005531] ACPI: SRAT 0x000000006EFD5000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.005534] ACPI: MSCT 0x000000006EFD4000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.005536] ACPI: SLIT 0x000000006EFD3000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.005538] ACPI: CRAT 0x000000006EFCB000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.005541] ACPI: CDIT 0x000000006EFCA000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.005543] ACPI: IVRS 0x000000006EFC9000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.005546] ACPI: SPCR 0x000000006EFC8000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.005548] ACPI: SLIC 0x000000006EFC7000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.005550] ACPI: SSDT 0x000000006EFC6000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.005553] ACPI: SSDT 0x000000006EFC3000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.005555] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.005556] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3534]
[    0.005557] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.005558] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.005559] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.005560] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.005561] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.005561] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.005562] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.005563] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.005564] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.005565] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d7a]
[    0.005566] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd714f]
[    0.005566] ACPI: Reserving SSDT table memory at [mem 0x6efd6000-0x6efd66a3]
[    0.005567] ACPI: Reserving SRAT table memory at [mem 0x6efd5000-0x6efd5ccf]
[    0.005568] ACPI: Reserving MSCT table memory at [mem 0x6efd4000-0x6efd404d]
[    0.005569] ACPI: Reserving SLIT table memory at [mem 0x6efd3000-0x6efd302f]
[    0.005570] ACPI: Reserving CRAT table memory at [mem 0x6efcb000-0x6efd22f7]
[    0.005570] ACPI: Reserving CDIT table memory at [mem 0x6efca000-0x6efca02b]
[    0.005571] ACPI: Reserving IVRS table memory at [mem 0x6efc9000-0x6efc91ef]
[    0.005572] ACPI: Reserving SPCR table memory at [mem 0x6efc8000-0x6efc804f]
[    0.005573] ACPI: Reserving SLIC table memory at [mem 0x6efc7000-0x6efc7175]
[    0.005574] ACPI: Reserving SSDT table memory at [mem 0x6efc6000-0x6efc6d65]
[    0.005575] ACPI: Reserving SSDT table memory at [mem 0x6efc3000-0x6efc493b]
[    0.005646] APIC: Switched APIC routing to: cluster x2apic
[    0.005658] SRAT: PXM 0 -> APIC 0x0000 -> Node 0
[    0.005660] SRAT: PXM 0 -> APIC 0x0001 -> Node 0
[    0.005660] SRAT: PXM 0 -> APIC 0x0002 -> Node 0
[    0.005661] SRAT: PXM 0 -> APIC 0x0003 -> Node 0
[    0.005662] SRAT: PXM 0 -> APIC 0x0004 -> Node 0
[    0.005662] SRAT: PXM 0 -> APIC 0x0005 -> Node 0
[    0.005663] SRAT: PXM 0 -> APIC 0x0006 -> Node 0
[    0.005664] SRAT: PXM 0 -> APIC 0x0007 -> Node 0
[    0.005664] SRAT: PXM 0 -> APIC 0x0008 -> Node 0
[    0.005665] SRAT: PXM 0 -> APIC 0x0009 -> Node 0
[    0.005666] SRAT: PXM 0 -> APIC 0x000a -> Node 0
[    0.005666] SRAT: PXM 0 -> APIC 0x000b -> Node 0
[    0.005667] SRAT: PXM 0 -> APIC 0x000c -> Node 0
[    0.005667] SRAT: PXM 0 -> APIC 0x000d -> Node 0
[    0.005668] SRAT: PXM 0 -> APIC 0x000e -> Node 0
[    0.005669] SRAT: PXM 0 -> APIC 0x000f -> Node 0
[    0.005669] SRAT: PXM 0 -> APIC 0x0010 -> Node 0
[    0.005670] SRAT: PXM 0 -> APIC 0x0011 -> Node 0
[    0.005671] SRAT: PXM 0 -> APIC 0x0012 -> Node 0
[    0.005671] SRAT: PXM 0 -> APIC 0x0013 -> Node 0
[    0.005672] SRAT: PXM 0 -> APIC 0x0014 -> Node 0
[    0.005672] SRAT: PXM 0 -> APIC 0x0015 -> Node 0
[    0.005673] SRAT: PXM 0 -> APIC 0x0016 -> Node 0
[    0.005674] SRAT: PXM 0 -> APIC 0x0017 -> Node 0
[    0.005674] SRAT: PXM 0 -> APIC 0x0018 -> Node 0
[    0.005675] SRAT: PXM 0 -> APIC 0x0019 -> Node 0
[    0.005675] SRAT: PXM 0 -> APIC 0x001a -> Node 0
[    0.005676] SRAT: PXM 0 -> APIC 0x001b -> Node 0
[    0.005677] SRAT: PXM 0 -> APIC 0x001c -> Node 0
[    0.005677] SRAT: PXM 0 -> APIC 0x001d -> Node 0
[    0.005678] SRAT: PXM 0 -> APIC 0x001e -> Node 0
[    0.005679] SRAT: PXM 0 -> APIC 0x001f -> Node 0
[    0.005679] SRAT: PXM 0 -> APIC 0x0020 -> Node 0
[    0.005680] SRAT: PXM 0 -> APIC 0x0021 -> Node 0
[    0.005680] SRAT: PXM 0 -> APIC 0x0022 -> Node 0
[    0.005681] SRAT: PXM 0 -> APIC 0x0023 -> Node 0
[    0.005682] SRAT: PXM 0 -> APIC 0x0024 -> Node 0
[    0.005682] SRAT: PXM 0 -> APIC 0x0025 -> Node 0
[    0.005683] SRAT: PXM 0 -> APIC 0x0026 -> Node 0
[    0.005683] SRAT: PXM 0 -> APIC 0x0027 -> Node 0
[    0.005684] SRAT: PXM 0 -> APIC 0x0028 -> Node 0
[    0.005685] SRAT: PXM 0 -> APIC 0x0029 -> Node 0
[    0.005685] SRAT: PXM 0 -> APIC 0x002a -> Node 0
[    0.005686] SRAT: PXM 0 -> APIC 0x002b -> Node 0
[    0.005687] SRAT: PXM 0 -> APIC 0x002c -> Node 0
[    0.005687] SRAT: PXM 0 -> APIC 0x002d -> Node 0
[    0.005688] SRAT: PXM 0 -> APIC 0x002e -> Node 0
[    0.005688] SRAT: PXM 0 -> APIC 0x002f -> Node 0
[    0.005689] SRAT: PXM 0 -> APIC 0x0030 -> Node 0
[    0.005690] SRAT: PXM 0 -> APIC 0x0031 -> Node 0
[    0.005690] SRAT: PXM 0 -> APIC 0x0032 -> Node 0
[    0.005691] SRAT: PXM 0 -> APIC 0x0033 -> Node 0
[    0.005692] SRAT: PXM 0 -> APIC 0x0034 -> Node 0
[    0.005692] SRAT: PXM 0 -> APIC 0x0035 -> Node 0
[    0.005693] SRAT: PXM 0 -> APIC 0x0036 -> Node 0
[    0.005693] SRAT: PXM 0 -> APIC 0x0037 -> Node 0
[    0.005694] SRAT: PXM 0 -> APIC 0x0038 -> Node 0
[    0.005695] SRAT: PXM 0 -> APIC 0x0039 -> Node 0
[    0.005695] SRAT: PXM 0 -> APIC 0x003a -> Node 0
[    0.005696] SRAT: PXM 0 -> APIC 0x003b -> Node 0
[    0.005696] SRAT: PXM 0 -> APIC 0x003c -> Node 0
[    0.005697] SRAT: PXM 0 -> APIC 0x003d -> Node 0
[    0.005698] SRAT: PXM 0 -> APIC 0x003e -> Node 0
[    0.005698] SRAT: PXM 0 -> APIC 0x003f -> Node 0
[    0.005699] SRAT: PXM 1 -> APIC 0x0040 -> Node 1
[    0.005700] SRAT: PXM 1 -> APIC 0x0041 -> Node 1
[    0.005700] SRAT: PXM 1 -> APIC 0x0042 -> Node 1
[    0.005701] SRAT: PXM 1 -> APIC 0x0043 -> Node 1
[    0.005701] SRAT: PXM 1 -> APIC 0x0044 -> Node 1
[    0.005702] SRAT: PXM 1 -> APIC 0x0045 -> Node 1
[    0.005703] SRAT: PXM 1 -> APIC 0x0046 -> Node 1
[    0.005703] SRAT: PXM 1 -> APIC 0x0047 -> Node 1
[    0.005704] SRAT: PXM 1 -> APIC 0x0048 -> Node 1
[    0.005705] SRAT: PXM 1 -> APIC 0x0049 -> Node 1
[    0.005705] SRAT: PXM 1 -> APIC 0x004a -> Node 1
[    0.005706] SRAT: PXM 1 -> APIC 0x004b -> Node 1
[    0.005706] SRAT: PXM 1 -> APIC 0x004c -> Node 1
[    0.005707] SRAT: PXM 1 -> APIC 0x004d -> Node 1
[    0.005708] SRAT: PXM 1 -> APIC 0x004e -> Node 1
[    0.005708] SRAT: PXM 1 -> APIC 0x004f -> Node 1
[    0.005709] SRAT: PXM 1 -> APIC 0x0050 -> Node 1
[    0.005710] SRAT: PXM 1 -> APIC 0x0051 -> Node 1
[    0.005710] SRAT: PXM 1 -> APIC 0x0052 -> Node 1
[    0.005711] SRAT: PXM 1 -> APIC 0x0053 -> Node 1
[    0.005712] SRAT: PXM 1 -> APIC 0x0054 -> Node 1
[    0.005712] SRAT: PXM 1 -> APIC 0x0055 -> Node 1
[    0.005713] SRAT: PXM 1 -> APIC 0x0056 -> Node 1
[    0.005713] SRAT: PXM 1 -> APIC 0x0057 -> Node 1
[    0.005714] SRAT: PXM 1 -> APIC 0x0058 -> Node 1
[    0.005715] SRAT: PXM 1 -> APIC 0x0059 -> Node 1
[    0.005715] SRAT: PXM 1 -> APIC 0x005a -> Node 1
[    0.005716] SRAT: PXM 1 -> APIC 0x005b -> Node 1
[    0.005716] SRAT: PXM 1 -> APIC 0x005c -> Node 1
[    0.005717] SRAT: PXM 1 -> APIC 0x005d -> Node 1
[    0.005718] SRAT: PXM 1 -> APIC 0x005e -> Node 1
[    0.005718] SRAT: PXM 1 -> APIC 0x005f -> Node 1
[    0.005719] SRAT: PXM 1 -> APIC 0x0060 -> Node 1
[    0.005720] SRAT: PXM 1 -> APIC 0x0061 -> Node 1
[    0.005720] SRAT: PXM 1 -> APIC 0x0062 -> Node 1
[    0.005721] SRAT: PXM 1 -> APIC 0x0063 -> Node 1
[    0.005721] SRAT: PXM 1 -> APIC 0x0064 -> Node 1
[    0.005722] SRAT: PXM 1 -> APIC 0x0065 -> Node 1
[    0.005723] SRAT: PXM 1 -> APIC 0x0066 -> Node 1
[    0.005723] SRAT: PXM 1 -> APIC 0x0067 -> Node 1
[    0.005724] SRAT: PXM 1 -> APIC 0x0068 -> Node 1
[    0.005724] SRAT: PXM 1 -> APIC 0x0069 -> Node 1
[    0.005725] SRAT: PXM 1 -> APIC 0x006a -> Node 1
[    0.005726] SRAT: PXM 1 -> APIC 0x006b -> Node 1
[    0.005726] SRAT: PXM 1 -> APIC 0x006c -> Node 1
[    0.005727] SRAT: PXM 1 -> APIC 0x006d -> Node 1
[    0.005728] SRAT: PXM 1 -> APIC 0x006e -> Node 1
[    0.005728] SRAT: PXM 1 -> APIC 0x006f -> Node 1
[    0.005729] SRAT: PXM 1 -> APIC 0x0070 -> Node 1
[    0.005729] SRAT: PXM 1 -> APIC 0x0071 -> Node 1
[    0.005730] SRAT: PXM 1 -> APIC 0x0072 -> Node 1
[    0.005731] SRAT: PXM 1 -> APIC 0x0073 -> Node 1
[    0.005731] SRAT: PXM 1 -> APIC 0x0074 -> Node 1
[    0.005732] SRAT: PXM 1 -> APIC 0x0075 -> Node 1
[    0.005732] SRAT: PXM 1 -> APIC 0x0076 -> Node 1
[    0.005733] SRAT: PXM 1 -> APIC 0x0077 -> Node 1
[    0.005734] SRAT: PXM 1 -> APIC 0x0078 -> Node 1
[    0.005734] SRAT: PXM 1 -> APIC 0x0079 -> Node 1
[    0.005735] SRAT: PXM 1 -> APIC 0x007a -> Node 1
[    0.005736] SRAT: PXM 1 -> APIC 0x007b -> Node 1
[    0.005736] SRAT: PXM 1 -> APIC 0x007c -> Node 1
[    0.005737] SRAT: PXM 1 -> APIC 0x007d -> Node 1
[    0.005737] SRAT: PXM 1 -> APIC 0x007e -> Node 1
[    0.005738] SRAT: PXM 1 -> APIC 0x007f -> Node 1
[    0.005740] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.005742] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.005743] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.005744] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.005748] NUMA: Initialized distance table, cnt=2
[    0.005751] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00000000-0x7fffffff]
[    0.005753] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00000000-0x207fffffff]
[    0.005761] NODE_DATA(0) allocated [mem 0x207fcd5000-0x207fcfffff]
[    0.005770] NODE_DATA(1) allocated [mem 0x4077889000-0x40778b3fff]
[    0.005910] crashkernel low memory reserved: 0x04000000 - 0x14000000 (256 MB)
[    0.005913] crashkernel reserved: 0x0000004057000000 - 0x0000004077000000 (512 MB)
[    0.006075] Zone ranges:
[    0.006075]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.006077]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.006079]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.006080]   Device   empty
[    0.006081] Movable zone start for each node
[    0.006082] Early memory node ranges
[    0.006083]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.006084]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.006085]   node   0: [mem 0x0000000000100000-0x0000000015ffffff]
[    0.006086]   node   0: [mem 0x0000000056900000-0x00000000569fbfff]
[    0.006087]   node   0: [mem 0x00000000569fd000-0x000000005a14afff]
[    0.006088]   node   0: [mem 0x000000005a34b000-0x0000000067acefff]
[    0.006088]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.006089]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.006090]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.006100]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.006111] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.006114] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.006117] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.006118] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.006130] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.006581] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.006622] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.006781] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006955] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.006968] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.226609] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.226634] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.226777] ACPI: PM-Timer IO Port: 0x408
[    0.226803] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.226806] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.226821] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.226827] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.226832] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.226837] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.226843] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.226847] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.226848] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.226857] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.226858] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.226862] ACPI: SPCR: console: uart,io,0x2f8,115200
[    0.226863] smpboot: Allowing 128 CPUs, 0 hotplug CPUs
[    0.226886] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.226888] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.226890] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.226892] PM: hibernation: Registered nosave memory: [mem 0x00b4b000-0x00b4bfff]
[    0.226893] PM: hibernation: Registered nosave memory: [mem 0x00b53000-0x00b53fff]
[    0.226894] PM: hibernation: Registered nosave memory: [mem 0x00b54000-0x00b54fff]
[    0.226896] PM: hibernation: Registered nosave memory: [mem 0x00b86000-0x00b86fff]
[    0.226896] PM: hibernation: Registered nosave memory: [mem 0x00b87000-0x00b87fff]
[    0.226898] PM: hibernation: Registered nosave memory: [mem 0x00bb9000-0x00bb9fff]
[    0.226899] PM: hibernation: Registered nosave memory: [mem 0x00bba000-0x00bbafff]
[    0.226900] PM: hibernation: Registered nosave memory: [mem 0x00bff000-0x00bfffff]
[    0.226902] PM: hibernation: Registered nosave memory: [mem 0x16000000-0x568fffff]
[    0.226904] PM: hibernation: Registered nosave memory: [mem 0x569fc000-0x569fcfff]
[    0.226906] PM: hibernation: Registered nosave memory: [mem 0x5a14b000-0x5a34afff]
[    0.226907] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6dfcefff]
[    0.226908] PM: hibernation: Registered nosave memory: [mem 0x6dfcf000-0x6edfefff]
[    0.226909] PM: hibernation: Registered nosave memory: [mem 0x6edff000-0x6effefff]
[    0.226910] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    0.226912] PM: hibernation: Registered nosave memory: [mem 0x70000000-0x7fffffff]
[    0.226913] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xffffffff]
[    0.226915] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    0.226917] [mem 0x80000000-0xffffffff] available for PCI devices
[    0.226918] Booting paravirtualized kernel on bare hardware
[    0.226920] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.226927] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    0.229875] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
[    0.229885] pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
[    0.229888] pcpu-alloc: [0] 000 001 002 003 004 005 006 007 
[    0.229892] pcpu-alloc: [0] 008 009 010 011 012 013 014 015 
[    0.229897] pcpu-alloc: [0] 016 017 018 019 020 021 022 023 
[    0.229901] pcpu-alloc: [0] 024 025 026 027 028 029 030 031 
[    0.229905] pcpu-alloc: [0] 064 065 066 067 068 069 070 071 
[    0.229909] pcpu-alloc: [0] 072 073 074 075 076 077 078 079 
[    0.229913] pcpu-alloc: [0] 080 081 082 083 084 085 086 087 
[    0.229917] pcpu-alloc: [0] 088 089 090 091 092 093 094 095 
[    0.229921] pcpu-alloc: [1] 032 033 034 035 036 037 038 039 
[    0.229926] pcpu-alloc: [1] 040 041 042 043 044 045 046 047 
[    0.229930] pcpu-alloc: [1] 048 049 050 051 052 053 054 055 
[    0.229934] pcpu-alloc: [1] 056 057 058 059 060 061 062 063 
[    0.229938] pcpu-alloc: [1] 096 097 098 099 100 101 102 103 
[    0.229942] pcpu-alloc: [1] 104 105 106 107 108 109 110 111 
[    0.229946] pcpu-alloc: [1] 112 113 114 115 116 117 118 119 
[    0.229950] pcpu-alloc: [1] 120 121 122 123 124 125 126 127 
[    0.229977] Kernel command line: BOOT_IMAGE=(hd0,gpt5)/vmlinuz-6.8.0-rc3-next-20240208 root=/dev/mapper/rhel_sharavati-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/rhel_sharavati-swap rd.lvm.lv=rhel_sharavati/root rd.lvm.lv=rhel_sharavati/swap rhgb quiet console=ttyS0,115200n8 earlyprintk
[    0.230118] Unknown kernel command line parameters "rhgb BOOT_IMAGE=(hd0,gpt5)/vmlinuz-6.8.0-rc3-next-20240208", will be passed to user space.
[    0.230136] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.230137] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    0.230137] printk: log_buf_len min size: 262144 bytes
[    0.230499] printk: log_buf_len: 1048576 bytes
[    0.230500] printk: early log buf free: 236808(90%)
[    0.231813] Fallback order for Node 0: 0 1 
[    0.231816] Fallback order for Node 1: 1 0 
[    0.231825] Built 2 zonelists, mobility grouping on.  Total pages: 65699411
[    0.231826] Policy zone: Normal
[    0.231832] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.231864] software IO TLB: area num 128.
[    0.673987] Memory: 261649540K/266975624K available (18432K kernel code, 3204K rwdata, 7176K rodata, 4580K init, 4332K bss, 5325824K reserved, 0K cma-reserved)
[    0.674331] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
[    0.674443] ftrace: allocating 52120 entries in 204 pages
[    0.684923] ftrace: allocated 204 pages with 4 groups
[    0.685726] Dynamic Preempt: voluntary
[    0.686078] rcu: Preemptible hierarchical RCU implementation.
[    0.686079] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    0.686080] 	Trampoline variant of Tasks RCU enabled.
[    0.686081] 	Rude variant of Tasks RCU enabled.
[    0.686081] 	Tracing variant of Tasks RCU enabled.
[    0.686082] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.686082] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    0.688732] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    0.688996] rcu: srcu_init: Setting srcu_struct sizes to big.
[    0.689135] Console: colour dummy device 80x25
[    0.689154] printk: legacy console [ttyS0] enabled
[    0.689251] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.689255] ACPI: Core revision 20230628
[    0.689443] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.689460] APIC: Switch to symmetric I/O mode setup
[    0.690476] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    0.692802] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.709460] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398d9b96bb5, max_idle_ns: 881590489203 ns
[    0.709465] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.75 BogoMIPS (lpj=7985500)
[    0.709480] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.709590] LVT offset 2 assigned for vector 0xf4
[    0.709624] process: using mwait in idle threads
[    0.709626] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    0.709627] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    0.709630] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.709632] Spectre V2 : Mitigation: Retpolines
[    0.709633] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.709634] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.709634] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.709636] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.709637] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    0.709638] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.709639] Speculative Return Stack Overflow: IBPB-extending microcode not applied!
[    0.709640] Speculative Return Stack Overflow: WARNING: See https://kernel.org/doc/html/latest/admin-guide/hw-vuln/srso.html for mitigation options.
[    0.709641] Speculative Return Stack Overflow: Vulnerable: Safe RET, no microcode
[    0.709644] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.709645] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.709646] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.709647] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.709648] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    0.709649] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.709650] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.709651] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    0.709652] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    0.735279] Freeing SMP alternatives memory: 44K
[    0.735282] pid_max: default: 131072 minimum: 1024
[    0.739152] LSM: initializing lsm=lockdown,capability,yama,apparmor,integrity
[    0.739176] Yama: becoming mindful.
[    0.739195] AppArmor: AppArmor initialized
[    0.746010] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    0.749180] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    0.749349] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    0.749488] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    0.858355] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    0.858661] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1.
[    0.858682] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1.
[    0.858714] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1.
[    0.858733] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    0.858766] ... version:                0
[    0.858768] ... bit width:              48
[    0.858769] ... generic registers:      6
[    0.858770] ... value mask:             0000ffffffffffff
[    0.858771] ... max period:             00007fffffffffff
[    0.858773] ... fixed-purpose events:   0
[    0.858774] ... event mask:             000000000000003f
[    0.859045] signal: max sigframe size: 3376
[    0.859080] rcu: Hierarchical SRCU implementation.
[    0.859082] rcu: 	Max phase no-delay instances is 1000.
[    0.859136] ------------[ cut here ]------------
[    0.859138] WARNING: CPU: 0 PID: 1 at kernel/resource.c:834 __insert_resource+0x8d/0x120
[    0.859144] Modules linked in:
[    0.859147] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 6.8.0-rc3-next-20240208 #5
[    0.859150] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.8.5 08/18/2022
[    0.859151] RIP: 0010:__insert_resource+0x8d/0x120
[    0.859154] Code: 39 f1 76 b1 5d e9 8e 12 03 01 4c 8d 4a 30 48 8b 52 30 48 85 d2 75 b6 49 89 50 30 4d 89 01 5d 49 89 40 28 31 c0 e9 6e 12 03 01 <0f> 0b 48 89 d0 5d e9 63 12 03 01 49 89 d2 eb 1a 49 39 72 08 77 19
[    0.859157] RSP: 0018:ffffb28b40147dd0 EFLAGS: 00010246
[    0.859160] RAX: ffff9cf6b78b4980 RBX: 0000000000000000 RCX: 0000000004000000
[    0.859162] RDX: ffffffffbb3ae300 RSI: 0000000013ffffff RDI: 0000000004000000
[    0.859163] RBP: ffffb28b40147dd0 R08: ffffffffbb3ae300 R09: 0000000013ffffff
[    0.859165] R10: 00000000e4dc841c R11: 00000000a423994e R12: ffffffffbb25e840
[    0.859167] R13: ffffffffbb3ae300 R14: 0000000000000000 R15: 0000000000000000
[    0.859168] FS:  0000000000000000(0000) GS:ffff9cd63fe00000(0000) knlGS:0000000000000000
[    0.859171] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.859172] CR2: ffff9cf6b77ff000 CR3: 0000001c7742e001 CR4: 0000000000770ef0
[    0.859174] PKRU: 55555554
[    0.859176] Call Trace:
[    0.859178]  <TASK>
[    0.859181]  ? show_regs+0x6d/0x80
[    0.859186]  ? __insert_resource+0x8d/0x120
[    0.859188]  ? __warn+0x90/0x150
[    0.859191]  ? __insert_resource+0x8d/0x120
[    0.859194]  ? report_bug+0x193/0x1a0
[    0.859199]  ? handle_bug+0x46/0x80
[    0.859203]  ? exc_invalid_op+0x1d/0x80
[    0.859206]  ? asm_exc_invalid_op+0x1f/0x30
[    0.859212]  ? __insert_resource+0x8d/0x120
[    0.859215]  insert_resource+0x2f/0x60
[    0.859217]  ? __pfx_insert_crashkernel_resources+0x10/0x10
[    0.859222]  insert_crashkernel_resources+0x6b/0x80
[    0.859225]  do_one_initcall+0x4d/0x320
[    0.859230]  ? srso_alias_return_thunk+0x5/0xfbef5
[    0.859233]  ? wake_up_process+0x19/0x20
[    0.859237]  ? srso_alias_return_thunk+0x5/0xfbef5
[    0.859241]  kernel_init_freeable+0x22c/0x440
[    0.859246]  ? __pfx_kernel_init+0x10/0x10
[    0.859251]  kernel_init+0x1e/0x1d0
[    0.859253]  ret_from_fork+0x40/0x60
[    0.859257]  ? __pfx_kernel_init+0x10/0x10
[    0.859260]  ret_from_fork_asm+0x1a/0x30
[    0.859266]  </TASK>
[    0.859268] ---[ end trace 0000000000000000 ]---
[    0.861836] MCE: In-kernel MCE decoding enabled.
[    0.861887] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.862894] smp: Bringing up secondary CPUs ...
[    0.863032] smpboot: x86: Booting SMP configuration:
[    0.863034] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    0.868460] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    1.013696] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    1.022371] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    1.029726] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    1.171465] smp: Brought up 2 nodes, 128 CPUs
[    1.171465] smpboot: Max logical packages: 1
[    1.171465] smpboot: Total of 128 processors activated (511072.00 BogoMIPS)
[    1.189271] devtmpfs: initialized
[    1.189271] x86/mm: Memory block size: 2048MB
[    1.197602] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    1.197605] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    1.197931] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    1.198025] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    1.198141] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    1.198369] pinctrl core: initialized pinctrl subsystem
[    1.198482] PM: RTC time: 16:19:16, date: 2024-02-08
[    1.199275] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    1.199807] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    1.199993] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.200178] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    1.200187] audit: initializing netlink subsys (disabled)
[    1.200195] audit: type=2000 audit(1707409155.508:1): state=initialized audit_enabled=0 res=1
[    1.200195] thermal_sys: Registered thermal governor 'fair_share'
[    1.200195] thermal_sys: Registered thermal governor 'bang_bang'
[    1.200195] thermal_sys: Registered thermal governor 'step_wise'
[    1.200195] thermal_sys: Registered thermal governor 'user_space'
[    1.200195] EISA bus registered
[    1.200195] cpuidle: using governor ladder
[    1.200195] cpuidle: using governor menu
[    1.201610] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    1.201612] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.201780] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    1.201786] PCI: not using ECAM ([mem 0x80000000-0x8fffffff] not reserved)
[    1.201788] PCI: Using configuration type 1 for base access
[    1.201790] PCI: Using configuration type 1 for extended access
[    1.201801] PCI: Dell System detected, enabling pci=bfsort.
[    1.201966] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    1.201966] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    1.201966] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    1.201966] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    1.201966] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    1.201966] Demotion targets for Node 0: null
[    1.201966] Demotion targets for Node 1: null
[    1.201966] ACPI: Added _OSI(Module Device)
[    1.201966] ACPI: Added _OSI(Processor Device)
[    1.201966] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.201966] ACPI: Added _OSI(Processor Aggregator Device)
[    1.232651] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    1.237556] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[    1.241679] ACPI: Interpreter enabled
[    1.241693] ACPI: PM: (supports S0 S5)
[    1.241694] ACPI: Using IOAPIC for interrupt routing
[    1.242252] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    1.242314] PCI: ECAM [mem 0x80000000-0x8fffffff] reserved as ACPI motherboard resource
[    1.242394] HEST: Table parsing has been initialized.
[    1.242792] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    1.242796] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.242798] PCI: Using E820 reservations for host bridge windows
[    1.245018] ACPI: Enabled 1 GPEs in block 00 to 1F
[    1.280264] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    1.280346] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    1.280425] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    1.280504] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    1.280582] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    1.280661] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    1.280740] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    1.280818] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    1.281314] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    1.281320] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.281491] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    1.281811] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    1.281813] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.282805] PCI host bridge to bus 0000:00
[    1.282807] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    1.282810] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    1.282814] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    1.282816] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    1.282818] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    1.282820] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    1.282823] pci_bus 0000:00: root bus resource [bus 00-3f]
[    1.282842] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    1.282984] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    1.283089] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.283174] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.283259] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.283341] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    1.283362] pci 0000:00:03.2: PCI bridge to [bus 01]
[    1.283368] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    1.283371] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    1.283446] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    1.284464] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.284555] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.284643] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.284725] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    1.284745] pci 0000:00:07.1: PCI bridge to [bus 02]
[    1.284752] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    1.284766] pci 0000:00:07.1: enabling Extended Tags
[    1.284818] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    1.284971] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.285055] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    1.285076] pci 0000:00:08.1: PCI bridge to [bus 03]
[    1.285083] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    1.285097] pci 0000:00:08.1: enabling Extended Tags
[    1.285151] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    1.285338] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    1.285464] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    1.285640] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    1.285733] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    1.285794] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    1.285852] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    1.285912] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    1.285970] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    1.286028] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    1.286086] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    1.286213] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    1.286227] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    1.286238] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    1.286250] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    1.286264] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    1.286271] pci 0000:01:00.0: enabling Extended Tags
[    1.286358] pci 0000:01:00.0: supports D1 D2
[    1.286391] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    1.286393] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    1.286404] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    1.286406] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    1.286568] pci 0000:00:03.2: PCI bridge to [bus 01]
[    1.286655] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    1.286700] pci 0000:02:00.0: enabling Extended Tags
[    1.286869] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    1.286890] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    1.286908] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    1.286919] pci 0000:02:00.2: enabling Extended Tags
[    1.287106] pci 0000:00:07.1: PCI bridge to [bus 02]
[    1.287240] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    1.287289] pci 0000:03:00.0: enabling Extended Tags
[    1.287505] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    1.287529] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    1.287547] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    1.287559] pci 0000:03:00.2: enabling Extended Tags
[    1.287741] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    1.287757] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    1.287791] pci 0000:03:00.3: enabling Extended Tags
[    1.287846] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    1.288011] pci 0000:00:08.1: PCI bridge to [bus 03]
[    1.288036] pci_bus 0000:00: on NUMA node 1
[    1.289391] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    1.289397] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.289566] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    1.289885] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    1.289887] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.290820] PCI host bridge to bus 0000:40
[    1.290823] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    1.290825] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    1.290828] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    1.290830] pci_bus 0000:40: root bus resource [bus 40-7f]
[    1.290844] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    1.290936] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    1.291032] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.291110] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.291188] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.291269] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    1.291291] pci 0000:40:03.1: PCI bridge to [bus 41]
[    1.291298] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    1.291396] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    1.303674] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    1.303698] pci 0000:40:03.2: PCI bridge to [bus 42]
[    1.303706] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    1.303804] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    1.316208] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    1.316232] pci 0000:40:03.3: PCI bridge to [bus 43]
[    1.316239] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    1.316338] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    1.328863] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    1.328887] pci 0000:40:03.4: PCI bridge to [bus 44]
[    1.328895] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    1.328992] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    1.341767] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.341853] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.341933] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.342014] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    1.342035] pci 0000:40:07.1: PCI bridge to [bus 45]
[    1.342041] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    1.342055] pci 0000:40:07.1: enabling Extended Tags
[    1.342105] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    1.342252] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.342331] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    1.342352] pci 0000:40:08.1: PCI bridge to [bus 46]
[    1.342358] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    1.342372] pci 0000:40:08.1: enabling Extended Tags
[    1.342424] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    1.342669] pci 0000:40:03.1: PCI bridge to [bus 41]
[    1.342751] pci 0000:40:03.2: PCI bridge to [bus 42]
[    1.342833] pci 0000:40:03.3: PCI bridge to [bus 43]
[    1.342913] pci 0000:40:03.4: PCI bridge to [bus 44]
[    1.342998] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    1.343042] pci 0000:45:00.0: enabling Extended Tags
[    1.343202] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    1.343223] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    1.343240] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    1.343251] pci 0000:45:00.2: enabling Extended Tags
[    1.343434] pci 0000:40:07.1: PCI bridge to [bus 45]
[    1.343567] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    1.343615] pci 0000:46:00.0: enabling Extended Tags
[    1.343821] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    1.343844] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    1.343862] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    1.343874] pci 0000:46:00.1: enabling Extended Tags
[    1.344052] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    1.344075] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    1.344093] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    1.344105] pci 0000:46:00.2: enabling Extended Tags
[    1.344285] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    1.344301] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    1.344334] pci 0000:46:00.3: enabling Extended Tags
[    1.344387] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    1.344551] pci 0000:40:08.1: PCI bridge to [bus 46]
[    1.344591] pci_bus 0000:40: on NUMA node 1
[    1.345217] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    1.345222] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.345389] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    1.345768] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    1.345771] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.346682] PCI host bridge to bus 0000:80
[    1.346685] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    1.346687] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    1.346690] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    1.346692] pci_bus 0000:80: root bus resource [bus 80-bf]
[    1.346706] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    1.346801] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    1.346896] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.346979] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    1.347002] pci 0000:80:01.1: PCI bridge to [bus 81]
[    1.347009] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    1.347108] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    1.360321] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    1.360345] pci 0000:80:01.2: PCI bridge to [bus 82]
[    1.360353] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    1.360453] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    1.373678] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.373764] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.373845] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.373925] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.374002] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.374082] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    1.374103] pci 0000:80:07.1: PCI bridge to [bus 83]
[    1.374109] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    1.374123] pci 0000:80:07.1: enabling Extended Tags
[    1.374175] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    1.374322] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.374403] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    1.374424] pci 0000:80:08.1: PCI bridge to [bus 84]
[    1.374430] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    1.374445] pci 0000:80:08.1: enabling Extended Tags
[    1.374497] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    1.374654] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    1.374675] pci 0000:80:08.2: PCI bridge to [bus 85]
[    1.374682] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    1.374696] pci 0000:80:08.2: enabling Extended Tags
[    1.374749] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    1.374982] pci 0000:80:01.1: PCI bridge to [bus 81]
[    1.375063] pci 0000:80:01.2: PCI bridge to [bus 82]
[    1.375150] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    1.375195] pci 0000:83:00.0: enabling Extended Tags
[    1.375360] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    1.375382] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    1.375399] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    1.375410] pci 0000:83:00.2: enabling Extended Tags
[    1.375597] pci 0000:80:07.1: PCI bridge to [bus 83]
[    1.375729] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    1.375778] pci 0000:84:00.0: enabling Extended Tags
[    1.375987] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    1.376011] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    1.376029] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    1.376041] pci 0000:84:00.2: enabling Extended Tags
[    1.376232] pci 0000:80:08.1: PCI bridge to [bus 84]
[    1.376366] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    1.376406] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    1.376418] pci 0000:85:00.0: enabling Extended Tags
[    1.376485] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    1.376657] pci 0000:80:08.2: PCI bridge to [bus 85]
[    1.376691] pci_bus 0000:80: on NUMA node 0
[    1.377374] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    1.377380] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.377600] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    1.377921] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    1.377923] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.378948] PCI host bridge to bus 0000:c0
[    1.378950] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    1.378953] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    1.378955] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    1.378958] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    1.378960] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.378962] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    1.378976] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    1.379067] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    1.379162] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.379239] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.379317] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.379398] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    1.379420] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    1.379427] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    1.379524] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    1.393164] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    1.393187] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    1.393195] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    1.393291] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    1.406928] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    1.406952] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    1.406960] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    1.407056] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    1.420956] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    1.420979] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    1.420987] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    1.421083] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    1.435205] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.435289] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.435370] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    1.435390] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    1.435403] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    1.435452] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    1.435596] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    1.435616] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    1.435623] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    1.435631] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    1.435679] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    1.435808] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.435890] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    1.435910] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    1.435916] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    1.435929] pci 0000:c0:07.1: enabling Extended Tags
[    1.435978] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    1.436120] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    1.436199] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    1.436219] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    1.436226] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    1.436239] pci 0000:c0:08.1: enabling Extended Tags
[    1.436290] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    1.436522] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    1.436603] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    1.436687] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    1.436766] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    1.436863] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    1.436886] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    1.436901] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    1.436916] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    1.436927] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    1.437019] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    1.437072] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    1.438520] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    1.438544] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    1.438559] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    1.438575] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    1.438585] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    1.438678] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    1.449498] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    1.449590] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    1.449625] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    1.449635] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    1.449648] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    1.461481] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    1.461527] pci_bus 0000:c3: extended config space not accessible
[    1.461568] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    1.461591] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    1.461605] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    1.461618] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    1.461675] pci 0000:c3:00.0: BAR 0: assigned to efifb
[    1.461685] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.461811] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    1.461923] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    1.461969] pci 0000:c8:00.0: enabling Extended Tags
[    1.462143] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    1.462165] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    1.462183] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    1.462195] pci 0000:c8:00.2: enabling Extended Tags
[    1.462407] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    1.462569] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    1.462619] pci 0000:c9:00.0: enabling Extended Tags
[    1.462829] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    1.462852] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    1.462869] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    1.462881] pci 0000:c9:00.2: enabling Extended Tags
[    1.463071] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    1.463119] pci_bus 0000:c0: on NUMA node 0
[    1.470362] iommu: Default domain type: Translated
[    1.470362] iommu: DMA domain TLB invalidation policy: lazy mode
[    1.470362] SCSI subsystem initialized
[    1.470362] libata version 3.00 loaded.
[    1.470362] ACPI: bus type USB registered
[    1.470362] usbcore: registered new interface driver usbfs
[    1.470362] usbcore: registered new interface driver hub
[    1.470362] usbcore: registered new device driver usb
[    1.470362] pps_core: LinuxPPS API ver. 1 registered
[    1.470362] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.470362] PTP clock support registered
[    1.470362] EDAC MC: Ver: 3.0.0
[    1.470362] EDAC DEBUG: edac_mc_sysfs_init: device mc created
[    1.470362] efivars: Registered efivars operations
[    1.470362] NetLabel: Initializing
[    1.470362] NetLabel:  domain hash size = 128
[    1.470362] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.470362] NetLabel:  unlabeled traffic allowed by default
[    1.470362] PCI: Using ACPI for IRQ routing
[    1.475993] PCI: pci_cache_line_size set to 64 bytes
[    1.476132] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    1.476134] e820: reserve RAM buffer [mem 0x00b4b020-0x00bfffff]
[    1.476136] e820: reserve RAM buffer [mem 0x00b54020-0x00bfffff]
[    1.476138] e820: reserve RAM buffer [mem 0x00b87020-0x00bfffff]
[    1.476140] e820: reserve RAM buffer [mem 0x00bba020-0x00bfffff]
[    1.476141] e820: reserve RAM buffer [mem 0x16000000-0x17ffffff]
[    1.476143] e820: reserve RAM buffer [mem 0x569fc000-0x57ffffff]
[    1.476145] e820: reserve RAM buffer [mem 0x5a14b000-0x5bffffff]
[    1.476146] e820: reserve RAM buffer [mem 0x67acf000-0x67ffffff]
[    1.476148] e820: reserve RAM buffer [mem 0x6f000000-0x6fffffff]
[    1.476149] e820: reserve RAM buffer [mem 0x207fd00000-0x207fffffff]
[    1.476151] e820: reserve RAM buffer [mem 0x407f200000-0x407fffffff]
[    1.476331] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    1.476333] pci 0000:c3:00.0: vgaarb: bridge control possible
[    1.476335] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.476338] vgaarb: loaded
[    1.476343] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    1.476343] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    1.478722] clocksource: Switched to clocksource tsc-early
[    1.479000] VFS: Disk quotas dquot_6.6.0
[    1.479048] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.479257] AppArmor: AppArmor Filesystem Enabled
[    1.479275] pnp: PnP ACPI init
[    1.479514] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    1.479601] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    1.481175] pnp: PnP ACPI: found 5 devices
[    1.486410] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.486519] NET: Registered PF_INET protocol family
[    1.486675] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    1.489811] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    1.489896] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    1.490107] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    1.490586] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    1.490705] TCP: Hash tables configured (established 524288 bind 65536)
[    1.491007] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    1.491299] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    1.491651] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.491659] NET: Registered PF_XDP protocol family
[    1.491664] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    1.491669] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    1.491672] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    1.491675] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    1.491685] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    1.491688] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    1.491690] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    1.491692] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    1.491695] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    1.491697] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    1.491699] pci 0000:00:03.2: PCI bridge to [bus 01]
[    1.491702] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    1.491707] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    1.491713] pci 0000:00:07.1: PCI bridge to [bus 02]
[    1.491717] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    1.491724] pci 0000:00:08.1: PCI bridge to [bus 03]
[    1.491727] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    1.491734] pci_bus 0000:00: No. 2 try to assign unassigned res
[    1.491736] release child resource [mem 0xf7300000-0xf73fffff 64bit]
[    1.491737] release child resource [mem 0xf7400000-0xf740ffff 64bit]
[    1.491739] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    1.491741] pci 0000:00:03.2: PCI bridge to [bus 01]
[    1.491746] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1100000 add_align 100000
[    1.491752] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe22fffff]: assigned
[    1.491757] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    1.491765] pci 0000:01:00.0: VF BAR 2 [mem 0xe1100000-0xe20fffff 64bit]: assigned
[    1.491770] pci 0000:01:00.0: BAR 1 [mem 0xe2100000-0xe210ffff 64bit]: assigned
[    1.491778] pci 0000:01:00.0: VF BAR 0 [mem 0xe2110000-0xe220ffff 64bit]: assigned
[    1.491782] pci 0000:00:03.2: PCI bridge to [bus 01]
[    1.491785] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    1.491789] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe22fffff]
[    1.491795] pci 0000:00:07.1: PCI bridge to [bus 02]
[    1.491799] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    1.491805] pci 0000:00:08.1: PCI bridge to [bus 03]
[    1.491809] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    1.491815] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    1.491817] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    1.491820] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    1.491822] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    1.491824] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    1.491826] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    1.491828] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    1.491830] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe22fffff]
[    1.491832] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    1.491834] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    1.491911] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    1.491914] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    1.491918] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    1.491920] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    1.491923] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    1.491925] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    1.491928] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    1.491930] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    1.491939] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    1.491941] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    1.491944] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    1.491946] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    1.491949] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    1.491951] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    1.491953] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    1.491955] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    1.491957] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    1.491960] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    1.491963] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    1.491965] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    1.491967] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    1.491969] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    1.491971] pci 0000:40:03.1: PCI bridge to [bus 41]
[    1.491975] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    1.491979] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    1.491984] pci 0000:40:03.2: PCI bridge to [bus 42]
[    1.491987] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    1.491991] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    1.491994] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    1.491999] pci 0000:40:03.3: PCI bridge to [bus 43]
[    1.492002] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    1.492006] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    1.492009] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    1.492014] pci 0000:40:03.4: PCI bridge to [bus 44]
[    1.492017] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    1.492021] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    1.492024] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    1.492030] pci 0000:40:07.1: PCI bridge to [bus 45]
[    1.492033] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    1.492040] pci 0000:40:08.1: PCI bridge to [bus 46]
[    1.492043] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    1.492049] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    1.492052] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    1.492054] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    1.492056] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    1.492058] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    1.492060] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    1.492062] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    1.492064] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    1.492067] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    1.492068] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    1.492070] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    1.492072] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    1.492074] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    1.492076] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    1.492078] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    1.492080] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    1.492145] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    1.492148] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    1.492151] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    1.492153] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    1.492159] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    1.492169] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    1.492172] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    1.492174] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    1.492177] pci 0000:80:01.1: PCI bridge to [bus 81]
[    1.492179] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    1.492183] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    1.492187] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    1.492192] pci 0000:80:01.2: PCI bridge to [bus 82]
[    1.492195] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    1.492199] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    1.492202] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    1.492208] pci 0000:80:07.1: PCI bridge to [bus 83]
[    1.492211] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    1.492217] pci 0000:80:08.1: PCI bridge to [bus 84]
[    1.492221] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    1.492227] pci 0000:80:08.2: PCI bridge to [bus 85]
[    1.492231] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    1.492237] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    1.492239] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    1.492241] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    1.492243] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    1.492245] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    1.492247] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    1.492249] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    1.492251] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    1.492253] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    1.492255] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    1.492257] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    1.492259] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    1.492357] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    1.492360] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    1.492363] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    1.492365] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    1.492368] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    1.492371] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    1.492373] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    1.492376] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    1.492386] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    1.492389] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    1.492391] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    1.492394] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    1.492396] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    1.492398] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    1.492401] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    1.492403] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    1.492405] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    1.492409] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    1.492411] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    1.492416] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    1.492419] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    1.492424] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    1.492427] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    1.492431] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    1.492434] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    1.492439] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    1.492442] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    1.492446] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    1.492449] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    1.492454] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    1.492457] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    1.492461] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    1.492464] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    1.492470] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    1.492473] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    1.492475] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    1.492479] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    1.492482] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    1.492488] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    1.492493] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    1.492497] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    1.492503] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    1.492507] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    1.492510] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    1.492515] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    1.492519] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    1.492525] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    1.492529] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    1.492535] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    1.492537] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    1.492539] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    1.492541] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    1.492543] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    1.492545] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    1.492547] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    1.492549] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    1.492551] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    1.492553] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    1.492555] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    1.492557] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    1.492559] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    1.492561] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    1.492563] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    1.492565] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    1.492567] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    1.492569] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    1.492571] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    1.492573] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    1.492575] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    1.492577] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    1.492579] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    1.492581] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    1.492583] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    1.493163] PCI: CLS 64 bytes, default 64
[    1.493170] AMD-Vi: IOMMU SNP support enabled.
[    1.493233] Trying to unpack rootfs image as initramfs...
[    1.493294] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    1.493435] pci 0000:c0:01.0: Adding to iommu group 0
[    1.493489] pci 0000:c0:02.0: Adding to iommu group 1
[    1.493633] pci 0000:c0:03.0: Adding to iommu group 2
[    1.493680] pci 0000:c0:03.1: Adding to iommu group 2
[    1.493726] pci 0000:c0:03.2: Adding to iommu group 2
[    1.493771] pci 0000:c0:03.3: Adding to iommu group 2
[    1.493817] pci 0000:c0:03.4: Adding to iommu group 2
[    1.493871] pci 0000:c0:04.0: Adding to iommu group 3
[    1.493967] pci 0000:c0:05.0: Adding to iommu group 4
[    1.494013] pci 0000:c0:05.1: Adding to iommu group 4
[    1.494059] pci 0000:c0:05.2: Adding to iommu group 4
[    1.494113] pci 0000:c0:07.0: Adding to iommu group 5
[    1.494145] pci 0000:c0:07.1: Adding to iommu group 6
[    1.494198] pci 0000:c0:08.0: Adding to iommu group 7
[    1.494230] pci 0000:c0:08.1: Adding to iommu group 8
[    1.494237] pci 0000:c1:00.0: Adding to iommu group 4
[    1.494243] pci 0000:c1:00.1: Adding to iommu group 4
[    1.494250] pci 0000:c2:00.0: Adding to iommu group 4
[    1.494257] pci 0000:c3:00.0: Adding to iommu group 4
[    1.494290] pci 0000:c8:00.0: Adding to iommu group 9
[    1.494323] pci 0000:c8:00.2: Adding to iommu group 10
[    1.494356] pci 0000:c9:00.0: Adding to iommu group 11
[    1.494389] pci 0000:c9:00.2: Adding to iommu group 12
[    1.500567] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    1.500784] pci 0000:80:01.0: Adding to iommu group 13
[    1.500827] pci 0000:80:01.1: Adding to iommu group 13
[    1.500868] pci 0000:80:01.2: Adding to iommu group 13
[    1.500922] pci 0000:80:02.0: Adding to iommu group 14
[    1.500975] pci 0000:80:03.0: Adding to iommu group 15
[    1.501029] pci 0000:80:04.0: Adding to iommu group 16
[    1.501083] pci 0000:80:05.0: Adding to iommu group 17
[    1.501137] pci 0000:80:07.0: Adding to iommu group 18
[    1.501171] pci 0000:80:07.1: Adding to iommu group 19
[    1.501416] pci 0000:80:08.0: Adding to iommu group 20
[    1.501451] pci 0000:80:08.1: Adding to iommu group 21
[    1.501485] pci 0000:80:08.2: Adding to iommu group 22
[    1.501518] pci 0000:83:00.0: Adding to iommu group 23
[    1.501554] pci 0000:83:00.2: Adding to iommu group 24
[    1.501588] pci 0000:84:00.0: Adding to iommu group 25
[    1.501621] pci 0000:84:00.2: Adding to iommu group 26
[    1.501654] pci 0000:85:00.0: Adding to iommu group 27
[    1.508696] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    1.508852] pci 0000:40:01.0: Adding to iommu group 28
[    1.508906] pci 0000:40:02.0: Adding to iommu group 29
[    1.509052] pci 0000:40:03.0: Adding to iommu group 30
[    1.509089] pci 0000:40:03.1: Adding to iommu group 30
[    1.509127] pci 0000:40:03.2: Adding to iommu group 30
[    1.509165] pci 0000:40:03.3: Adding to iommu group 30
[    1.509204] pci 0000:40:03.4: Adding to iommu group 30
[    1.509258] pci 0000:40:04.0: Adding to iommu group 31
[    1.509311] pci 0000:40:05.0: Adding to iommu group 32
[    1.509367] pci 0000:40:07.0: Adding to iommu group 33
[    1.509400] pci 0000:40:07.1: Adding to iommu group 34
[    1.509455] pci 0000:40:08.0: Adding to iommu group 35
[    1.509488] pci 0000:40:08.1: Adding to iommu group 36
[    1.509521] pci 0000:45:00.0: Adding to iommu group 37
[    1.509555] pci 0000:45:00.2: Adding to iommu group 38
[    1.509590] pci 0000:46:00.0: Adding to iommu group 39
[    1.509624] pci 0000:46:00.1: Adding to iommu group 40
[    1.509659] pci 0000:46:00.2: Adding to iommu group 41
[    1.509693] pci 0000:46:00.3: Adding to iommu group 42
[    1.516767] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    1.516919] pci 0000:00:01.0: Adding to iommu group 43
[    1.516973] pci 0000:00:02.0: Adding to iommu group 44
[    1.517028] pci 0000:00:03.0: Adding to iommu group 45
[    1.517062] pci 0000:00:03.2: Adding to iommu group 46
[    1.517116] pci 0000:00:04.0: Adding to iommu group 47
[    1.517172] pci 0000:00:05.0: Adding to iommu group 48
[    1.517228] pci 0000:00:07.0: Adding to iommu group 49
[    1.517262] pci 0000:00:07.1: Adding to iommu group 50
[    1.517319] pci 0000:00:08.0: Adding to iommu group 51
[    1.517353] pci 0000:00:08.1: Adding to iommu group 52
[    1.517428] pci 0000:00:14.0: Adding to iommu group 53
[    1.517461] pci 0000:00:14.3: Adding to iommu group 53
[    1.517669] pci 0000:00:18.0: Adding to iommu group 54
[    1.517703] pci 0000:00:18.1: Adding to iommu group 54
[    1.517735] pci 0000:00:18.2: Adding to iommu group 54
[    1.517768] pci 0000:00:18.3: Adding to iommu group 54
[    1.517801] pci 0000:00:18.4: Adding to iommu group 54
[    1.517833] pci 0000:00:18.5: Adding to iommu group 54
[    1.517866] pci 0000:00:18.6: Adding to iommu group 54
[    1.517898] pci 0000:00:18.7: Adding to iommu group 54
[    1.517931] pci 0000:01:00.0: Adding to iommu group 55
[    1.517965] pci 0000:02:00.0: Adding to iommu group 56
[    1.517999] pci 0000:02:00.2: Adding to iommu group 57
[    1.518033] pci 0000:03:00.0: Adding to iommu group 58
[    1.518071] pci 0000:03:00.2: Adding to iommu group 59
[    1.518105] pci 0000:03:00.3: Adding to iommu group 60
[    1.526905] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    1.526917] AMD-Vi: Interrupt remapping enabled
[    1.526918] AMD-Vi: X2APIC enabled
[    1.527695] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.527698] software IO TLB: mapped [mem 0x000000006017c000-0x000000006417c000] (64MB)
[    1.527824] LVT offset 0 assigned for vector 0x400
[    1.531121] perf: AMD IBS detected (0x000003ff)
[    1.532058] amd_uncore: 4 amd_df counters detected
[    1.532090] amd_uncore: 6 amd_l3 counters detected
[    1.533185] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    1.533206] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    1.533225] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    1.533245] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    1.555993] Initialise system trusted keyrings
[    1.556004] Key type blacklist registered
[    1.556103] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    1.556114] zbud: loaded
[    1.556604] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.556740] fuse: init (API version 7.39)
[    1.556949] integrity: Platform Keyring initialized
[    1.569126] Key type asymmetric registered
[    1.569128] Asymmetric key parser 'x509' registered
[    1.569163] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    1.569244] io scheduler mq-deadline registered
[    1.570675] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    1.571010] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    1.571185] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    1.571395] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    1.571441] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.571735] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    1.571778] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.572060] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    1.572101] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.572378] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    1.572420] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.572763] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    1.573068] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    1.573334] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    1.573379] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.573686] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    1.573728] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.574136] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    1.574398] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    1.574636] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    1.574822] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    1.574864] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.575150] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    1.575192] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.575467] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    1.575510] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.575787] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    1.575955] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.576313] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    1.576464] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    1.576719] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    1.576966] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    1.577215] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    1.577696] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    1.577767] ACPI: button: Power Button [PWRF]
[    1.585040] ERST: Error Record Serialization Table (ERST) support is initialized.
[    1.585065] pstore: Using crash dump compression: deflate
[    1.585068] pstore: Registered erst as persistent store backend
[    1.585240] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.585441] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    1.586017] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.589632] Linux agpgart interface v0.103
[    1.614256] loop: module loaded
[    1.614812] ahci 0000:85:00.0: version 3.0
[    1.628252] ahci 0000:85:00.0: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
[    1.628258] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    1.629344] scsi host0: ahci
[    1.629600] scsi host1: ahci
[    1.629798] scsi host2: ahci
[    1.629993] scsi host3: ahci
[    1.630202] scsi host4: ahci
[    1.630397] scsi host5: ahci
[    1.630587] scsi host6: ahci
[    1.630789] scsi host7: ahci
[    1.630847] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 4
[    1.630850] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 4
[    1.630853] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 4
[    1.630856] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 4
[    1.630858] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 4
[    1.630861] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 4
[    1.630863] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 4
[    1.630866] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 4
[    1.631094] tun: Universal TUN/TAP device driver, 1.6
[    1.631131] PPP generic driver version 2.4.2
[    1.631262] VFIO - User Level meta-driver version: 0.3
[    1.631598] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    1.631611] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    1.631730] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000410
[    1.632191] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    1.632196] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    1.632205] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    1.632260] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[    1.632264] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.632267] usb usb1: Product: xHCI Host Controller
[    1.632269] usb usb1: Manufacturer: Linux 6.8.0-rc3-next-20240208 xhci-hcd
[    1.632272] usb usb1: SerialNumber: 0000:03:00.3
[    1.632449] hub 1-0:1.0: USB hub found
[    1.632459] hub 1-0:1.0: 2 ports detected
[    1.633294] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.633321] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
[    1.633324] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.633326] usb usb2: Product: xHCI Host Controller
[    1.633328] usb usb2: Manufacturer: Linux 6.8.0-rc3-next-20240208 xhci-hcd
[    1.633330] usb usb2: SerialNumber: 0000:03:00.3
[    1.633477] hub 2-0:1.0: USB hub found
[    1.633486] hub 2-0:1.0: 2 ports detected
[    1.634350] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    1.634357] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    1.634457] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000410
[    1.634818] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    1.634822] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    1.634825] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    1.634863] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[    1.634866] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.634868] usb usb3: Product: xHCI Host Controller
[    1.634870] usb usb3: Manufacturer: Linux 6.8.0-rc3-next-20240208 xhci-hcd
[    1.634872] usb usb3: SerialNumber: 0000:46:00.3
[    1.634992] hub 3-0:1.0: USB hub found
[    1.635001] hub 3-0:1.0: 2 ports detected
[    1.635764] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.635791] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
[    1.635793] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.635795] usb usb4: Product: xHCI Host Controller
[    1.635797] usb usb4: Manufacturer: Linux 6.8.0-rc3-next-20240208 xhci-hcd
[    1.635799] usb usb4: SerialNumber: 0000:46:00.3
[    1.635909] hub 4-0:1.0: USB hub found
[    1.635917] hub 4-0:1.0: 2 ports detected
[    1.636850] usbcore: registered new interface driver uas
[    1.636873] usbcore: registered new interface driver usb-storage
[    1.636905] i8042: PNP: No PS/2 controller found.
[    1.636962] mousedev: PS/2 mouse device common for all mice
[    1.637080] rtc_cmos 00:02: RTC can wake from S4
[    1.637362] rtc_cmos 00:02: registered as rtc0
[    1.637393] rtc_cmos 00:02: setting system clock to 2024-02-08T16:19:16 UTC (1707409156)
[    1.637427] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    1.637437] i2c_dev: i2c /dev entries driver
[    1.637465] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.637490] device-mapper: uevent: version 1.0.3
[    1.637579] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[    1.637606] platform eisa.0: Probing EISA bus 0
[    1.637608] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    1.637611] platform eisa.0: Cannot allocate resource for EISA slot 1
[    1.637613] platform eisa.0: Cannot allocate resource for EISA slot 2
[    1.637614] platform eisa.0: Cannot allocate resource for EISA slot 3
[    1.637616] platform eisa.0: Cannot allocate resource for EISA slot 4
[    1.637618] platform eisa.0: Cannot allocate resource for EISA slot 5
[    1.637620] platform eisa.0: Cannot allocate resource for EISA slot 6
[    1.637622] platform eisa.0: Cannot allocate resource for EISA slot 7
[    1.637623] platform eisa.0: Cannot allocate resource for EISA slot 8
[    1.637625] platform eisa.0: EISA: Detected 0 cards
[    1.637627] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled
[    1.638735] ledtrig-cpu: registered to indicate activity on CPUs
[    1.638766] efifb: probing for efifb
[    1.638785] efifb: No BGRT, not showing boot graphics
[    1.638786] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    1.638788] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    1.638790] efifb: scrolling: redraw
[    1.638791] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.638837] fbcon: Deferring console take-over
[    1.638839] fb0: EFI VGA frame buffer device
[    1.639003] drop_monitor: Initializing network drop monitor service
[    1.639171] NET: Registered PF_INET6 protocol family
[    1.888454] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    1.888454] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    1.946647] ata2: SATA link down (SStatus 0 SControl 300)
[    1.946684] ata3: SATA link down (SStatus 0 SControl 300)
[    1.946718] ata6: SATA link down (SStatus 0 SControl 300)
[    1.946757] ata1: SATA link down (SStatus 0 SControl 300)
[    1.946796] ata5: SATA link down (SStatus 0 SControl 300)
[    1.946833] ata7: SATA link down (SStatus 0 SControl 300)
[    1.946870] ata4: SATA link down (SStatus 0 SControl 300)
[    1.946906] ata8: SATA link down (SStatus 0 SControl 300)
[    2.037451] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    2.037456] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.039328] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    2.039332] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.039335] usb 1-1: Product: USB2734
[    2.039337] usb 1-1: Manufacturer: Microchip Tech
[    2.080658] hub 1-1:1.0: USB hub found
[    2.080833] hub 1-1:1.0: 4 ports detected
[    2.083239] hub 3-1:1.0: USB hub found
[    2.083450] hub 3-1:1.0: 4 ports detected
[    2.164574] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    2.184836] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    2.184842] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    2.184846] usb 2-1: Product: USB5734
[    2.184849] usb 2-1: Manufacturer: Microchip Tech
[    2.208575] hub 2-1:1.0: USB hub found
[    2.208622] hub 2-1:1.0: 4 ports detected
[    2.210053] usb: port power management may be unreliable
[    2.544456] tsc: Refined TSC clocksource calibration: 1996.249 MHz
[    2.544521] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cadd9d93, max_idle_ns: 881590552906 ns
[    2.544708] clocksource: Switched to clocksource tsc
[    2.792454] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[    2.893417] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    2.893420] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.935787] Freeing initrd memory: 124204K
[    2.944033] Segment Routing with IPv6
[    2.944048] In-situ OAM (IOAM) with IPv6
[    2.944076] NET: Registered PF_PACKET protocol family
[    2.944179] Key type dns_resolver registered
[    2.947245] hub 3-1.1:1.0: USB hub found
[    2.947421] hub 3-1.1:1.0: 4 ports detected
[    2.954717] microcode: Current revision: 0x0a001173
[    2.957527] resctrl: L3 allocation detected
[    2.957529] resctrl: MB allocation detected
[    2.957531] resctrl: L3 monitoring detected
[    2.957699] IPI shorthand broadcast: enabled
[    2.960550] sched_clock: Marking stable (2960002002, 438445)->(2974614898, -14174451)
[    2.960778] registered taskstats version 1
[    2.962637] Loading compiled-in X.509 certificates
[    2.963122] Loaded X.509 cert 'Build time autogenerated kernel key: ea8f0100c69599899252627e3dc081b87fddf92d'
[    2.966413] Key type .fscrypt registered
[    2.966415] Key type fscrypt-provisioning registered
[    2.975403] cryptd: max_cpu_qlen set to 1000
[    2.982798] AVX2 version of gcm_enc/dec engaged.
[    2.982912] AES CTR mode by8 optimization enabled
[    3.000998] Key type encrypted registered
[    3.001008] AppArmor: AppArmor sha256 policy hashing enabled
[    3.001096] integrity: Loading X.509 certificate: UEFI:db
[    3.001137] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    3.001140] integrity: Loading X.509 certificate: UEFI:db
[    3.001172] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    3.001175] integrity: Loading X.509 certificate: UEFI:db
[    3.001303] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    3.001305] integrity: Loading X.509 certificate: UEFI:db
[    3.001478] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    3.001784] ima: No TPM chip found, activating TPM-bypass!
[    3.001788] Loading compiled-in module X.509 certificates
[    3.002287] Loaded X.509 cert 'Build time autogenerated kernel key: ea8f0100c69599899252627e3dc081b87fddf92d'
[    3.002290] ima: Allocated hash algorithm: sha1
[    3.002296] ima: No architecture policies found
[    3.002308] evm: Initialising EVM extended attributes:
[    3.002309] evm: security.selinux
[    3.002311] evm: security.SMACK64
[    3.002312] evm: security.SMACK64EXEC
[    3.002313] evm: security.SMACK64TRANSMUTE
[    3.002315] evm: security.SMACK64MMAP
[    3.002316] evm: security.apparmor
[    3.002317] evm: security.ima
[    3.002318] evm: security.capability
[    3.002320] evm: HMAC attrs: 0x1
[    3.002720] PM:   Magic number: 12:543:337
[    3.002804] tty tty58: hash matches
[    3.003373] RAS: Correctable Errors collector initialized.
[    3.003541] clk: Disabling unused clocks
[    3.003543] PM: genpd: Disabling unused power domains
[    3.004988] Freeing unused decrypted memory: 2028K
[    3.005637] Freeing unused kernel image (initmem) memory: 4580K
[    3.005640] Write protecting the kernel read-only data: 26624k
[    3.006186] Freeing unused kernel image (rodata/data gap) memory: 1016K
[    3.028518] usb 3-1.2: new high-speed USB device number 4 using xhci_hcd
[    3.070183] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    3.070190] Run /init as init process
[    3.070191]   with arguments:
[    3.070193]     /init
[    3.070195]     rhgb
[    3.070196]   with environment:
[    3.070198]     HOME=/
[    3.070199]     TERM=linux
[    3.070200]     BOOT_IMAGE=(hd0,gpt5)/vmlinuz-6.8.0-rc3-next-20240208
[    3.084040] systemd[1]: Inserted module 'autofs4'
[    3.293767] usb 3-1.2: New USB device found, idVendor=413c, idProduct=0006, bcdDevice= 0.00
[    3.293772] usb 3-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.293775] usb 3-1.2: Product: DRAC 5 Virtual Keyboard and Mouse
[    3.293777] usb 3-1.2: Manufacturer: DELL
[    3.293779] usb 3-1.2: SerialNumber: DELL413C-1
[    3.387703] systemd[1]: systemd 250-12.el9_1 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    3.387919] systemd[1]: Detected architecture x86-64.
[    3.387924] systemd[1]: Running in initial RAM disk.
[    3.387987] systemd[1]: No hostname configured, using default hostname.
[    3.388045] systemd[1]: Hostname set to <localhost>.
[    3.481832] systemd[1]: Queued start job for default target Initrd Default Target.
[    3.505657] systemd[1]: Created slice Slice /system/systemd-hibernate-resume.
[    3.505726] systemd[1]: Reached target Initrd /usr File System.
[    3.505746] systemd[1]: Reached target Slice Units.
[    3.505757] systemd[1]: Reached target Swaps.
[    3.505766] systemd[1]: Reached target Timer Units.
[    3.505856] systemd[1]: Listening on D-Bus System Message Bus Socket.
[    3.505955] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.506054] systemd[1]: Listening on Journal Socket.
[    3.506158] systemd[1]: Listening on udev Control Socket.
[    3.506232] systemd[1]: Listening on udev Kernel Socket.
[    3.506242] systemd[1]: Reached target Socket Units.
[    3.507176] systemd[1]: Starting Create List of Static Device Nodes...
[    3.509072] systemd[1]: Starting Journal Service...
[    3.510076] systemd[1]: Starting Load Kernel Modules...
[    3.510975] systemd[1]: Starting Create System Users...
[    3.511977] systemd[1]: Starting Setup Virtual Console...
[    3.512572] systemd[1]: Finished Create List of Static Device Nodes.
[    3.522186] systemd[1]: Finished Create System Users.
[    3.523256] systemd[1]: Starting Create Static Device Nodes in /dev...
[    3.529310] systemd[1]: Finished Create Static Device Nodes in /dev.
[    3.534822] systemd[1]: Finished Load Kernel Modules.
[    3.536005] systemd[1]: Starting Apply Kernel Variables...
[    3.543581] systemd[1]: Finished Apply Kernel Variables.
[    3.548460] usb 3-1.4: new high-speed USB device number 5 using xhci_hcd
[    3.555992] systemd[1]: Finished Setup Virtual Console.
[    3.556154] systemd[1]: dracut ask for additional cmdline parameters was skipped because all trigger condition checks failed.
[    3.557199] systemd[1]: Starting dracut cmdline hook...
[    3.609453] systemd[1]: Started Journal Service.
[    3.657420] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    3.657429] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.715246] hub 3-1.4:1.0: USB hub found
[    3.715425] hub 3-1.4:1.0: 4 ports detected
[    3.967512] wmi_bus wmi_bus-PNP0C14:00: WQBC data block query control method not found
[    3.969430] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    3.969585] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[    3.969830] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[    3.982759] hid: raw HID events driver (C) Jiri Kosina
[    3.984682] ccp 0000:46:00.1: no command queues available
[    3.984824] ccp 0000:46:00.1: sev enabled
[    3.984827] ccp 0000:46:00.1: psp enabled
[    3.998300] mpt3sas version 48.100.00.00 loaded
[    3.998738] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (261875424 kB)
[    4.002910] usbcore: registered new interface driver usbhid
[    4.002914] usbhid: USB HID core driver
[    4.005338] usbcore: registered new interface driver usbkbd
[    4.006150] usbcore: registered new interface driver usbmouse
[    4.019383] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[    4.019391] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    4.019394] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[    4.019397] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    4.041082] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[    4.041087] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    4.041090] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[    4.041092] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    4.060973] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[    4.060994] mpt3sas_cm0: MSI-X vectors supported: 96
[    4.060997] 	 no of cores: 128, max_msix_vectors: -1
[    4.061000] mpt3sas_cm0:  0 96 96
[    4.065346] mpt3sas_cm0: High IOPs queues : disabled
[    4.065350] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 107
[    4.065352] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 108
[    4.065355] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 109
[    4.065357] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 110
[    4.065359] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 111
[    4.065361] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 112
[    4.065363] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 113
[    4.065365] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 114
[    4.065367] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 115
[    4.065369] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 116
[    4.065371] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 117
[    4.065373] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 118
[    4.065375] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 119
[    4.065377] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 120
[    4.065379] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 121
[    4.065381] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 122
[    4.065383] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 123
[    4.065385] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 124
[    4.065387] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 125
[    4.065389] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 126
[    4.065391] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 127
[    4.065393] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 128
[    4.065395] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 129
[    4.065397] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 130
[    4.065399] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 131
[    4.065401] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 132
[    4.065403] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 133
[    4.065405] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 134
[    4.065407] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 135
[    4.065409] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 136
[    4.065411] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 137
[    4.065413] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 138
[    4.065415] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 139
[    4.065417] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 140
[    4.065419] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 141
[    4.065421] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 142
[    4.065423] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 143
[    4.065425] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 144
[    4.065427] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 145
[    4.065429] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 146
[    4.065431] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 147
[    4.065433] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 148
[    4.065435] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 149
[    4.065437] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 150
[    4.065439] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 151
[    4.065441] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 152
[    4.065443] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 153
[    4.065445] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 154
[    4.065447] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 155
[    4.065449] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 156
[    4.065451] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 157
[    4.065453] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 158
[    4.065455] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 159
[    4.065457] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 160
[    4.065459] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 161
[    4.065461] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 162
[    4.065463] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 163
[    4.065465] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 164
[    4.065467] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 165
[    4.065469] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 166
[    4.065471] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 167
[    4.065473] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 168
[    4.065475] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 169
[    4.065477] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 170
[    4.065479] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 171
[    4.065481] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 172
[    4.065483] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 173
[    4.065485] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 174
[    4.065487] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 175
[    4.065489] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 176
[    4.065490] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 177
[    4.065492] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 178
[    4.065494] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 179
[    4.065496] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 180
[    4.065498] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 181
[    4.065500] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 182
[    4.065502] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 183
[    4.065504] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 184
[    4.065506] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 185
[    4.065508] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 186
[    4.065510] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 187
[    4.065512] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 188
[    4.065514] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 189
[    4.065516] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 190
[    4.065518] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 191
[    4.065520] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 192
[    4.065522] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 193
[    4.065524] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 194
[    4.065526] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 195
[    4.065528] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 196
[    4.065530] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 197
[    4.065532] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 198
[    4.065534] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 199
[    4.065536] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 200
[    4.065538] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 201
[    4.065540] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 202
[    4.065542] mpt3sas_cm0: iomem(0x00000000e2100000), mapped(0x0000000067bdeac2), size(65536)
[    4.065546] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[    4.077483] tg3 0000:c1:00.1 eno8403: renamed from eth1
[    4.084706] input: DELL DRAC 5 Virtual Keyboard and Mouse as /devices/pci0000:40/0000:40:08.1/0000:46:00.3/usb3/3-1/3-1.2/3-1.2:1.0/0003:413C:0006.0001/input/input1
[    4.084828] hid-generic 0003:413C:0006.0001: input,hidraw0: USB HID v1.01 Mouse [DELL DRAC 5 Virtual Keyboard and Mouse] on usb-0000:46:00.3-1.2/input0
[    4.084948] input: DELL DRAC 5 Virtual Keyboard and Mouse as /devices/pci0000:40/0000:40:08.1/0000:46:00.3/usb3/3-1/3-1.2/3-1.2:1.1/0003:413C:0006.0002/input/input2
[    4.084994] ACPI: bus type drm_connector registered
[    4.115082] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
[    4.121306] [drm] Initialized mgag200 1.0.0 20110418 for 0000:c3:00.0 on minor 0
[    4.122894] fbcon: mgag200drmfb (fb0) is primary device
[    4.122896] fbcon: Deferring console take-over
[    4.122898] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[    4.123027] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[    4.123031] mpt3sas_cm0: sending message unit reset !!
[    4.124448] mpt3sas_cm0: message unit reset: SUCCESS
[    4.124657] tg3 0000:c1:00.0 eno8303: renamed from eth0
[    4.144580] hid-generic 0003:413C:0006.0002: input,hidraw1: USB HID v1.01 Keyboard [DELL DRAC 5 Virtual Keyboard and Mouse] on usb-0000:46:00.3-1.2/input1
[    4.154154] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[    4.155666] mpt3sas_cm0: request pool(0x000000007b12edc7) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[    4.181219] mpt3sas_cm0: sense pool(0x0000000000277ad2) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[    4.181321] mpt3sas_cm0: reply pool(0x00000000a8f0a04d) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[    4.181337] mpt3sas_cm0: config page(0x0000000060a655b7) - dma(0xdebee000): size(512)
[    4.181340] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[    4.181341] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[    4.181343] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[    4.226687] mpt3sas_cm0: _base_display_fwpkg_version: complete
[    4.226692] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[    4.227015] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[    4.227020] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[    4.227096] scsi host8: Fusion MPT SAS Host
[    4.229256] mpt3sas_cm0: sending port enable !!
[    4.229659] mpt3sas_cm0: hba_port entry: 000000007f707286, port: 255 is added to hba_port list
[    4.230788] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[    4.231232] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[    4.232399] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[    4.232403] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[    4.232406] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[    4.232408] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[    4.232454] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[    4.232459] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[    4.238189]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[    4.238309] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[    4.239223] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[    4.239228] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[    4.239230] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[    4.239232] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[    4.239234] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[    4.241002]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[    4.241118] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[    4.242221] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[    4.242224] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[    4.242227] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[    4.242229] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[    4.242271] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[    4.242274] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[    4.248045]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[    4.248452] mpt3sas_cm0: port enable: SUCCESS
[    4.248873] sd 8:0:0:0: Attached scsi generic sg0 type 0
[    4.249266] sd 8:0:1:0: Attached scsi generic sg1 type 0
[    4.249580] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[    4.249585] sd 8:0:2:0: Attached scsi generic sg2 type 0
[    4.249586] sd 8:0:0:0: [sda] 4096-byte physical blocks
[    4.249650] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[    4.249655] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[    4.249839] sd 8:0:1:0: [sdb] Write Protect is off
[    4.249842] sd 8:0:1:0: [sdb] Mode Sense: 87 00 00 08
[    4.250053] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    4.250211] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[    4.250214] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[    4.251598] sd 8:0:0:0: [sda] Write Protect is off
[    4.251601] sd 8:0:0:0: [sda] Mode Sense: 9b 00 10 08
[    4.252223] sd 8:0:2:0: [sdc] Write Protect is off
[    4.252230] sd 8:0:2:0: [sdc] Mode Sense: 9b 00 10 08
[    4.252884] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    4.253515] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    4.253804]  sdb: sdb1 sdb2
[    4.254008] sd 8:0:1:0: [sdb] Attached SCSI disk
[    4.259485]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    4.260130] sd 8:0:0:0: [sda] Attached SCSI disk
[    4.260548]  sdc: sdc1 sdc2
[    4.260735] sd 8:0:2:0: [sdc] Attached SCSI disk
[    7.886645] ccp 0000:46:00.1: SEV API:1.52 build:4
[    7.886656] ccp 0000:46:00.1: SEV-SNP API:1.52 build:4
[    8.333517] PM: Image not found (code -22)
[    8.660785] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[    8.663233] XFS (dm-0): Mounting V5 Filesystem 555bce99-0701-4271-8e03-12a132846004
[    8.693324] XFS (dm-0): Starting recovery (logdev: internal)
[    8.702676] XFS (dm-0): Ending recovery (logdev: internal)
[    9.077755] systemd-journald[1089]: Received SIGTERM from PID 1 (systemd).
[    9.208357] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
[    9.212788] systemd[1]: systemd 250-12.el9_1 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    9.212905] systemd[1]: Detected architecture x86-64.
[    9.267684] systemd-rc-local-generator[1583]: /etc/rc.d/rc.local is not marked executable, skipping.
[    9.281104] block sda: the capability attribute has been deprecated.
[    9.569207] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[    9.569366] systemd[1]: Stopped Switch Root.
[    9.569636] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    9.570166] systemd[1]: Created slice Virtual Machine and Container Slice.
[    9.570819] systemd[1]: Created slice Slice /system/getty.
[    9.571516] systemd[1]: Created slice Slice /system/modprobe.
[    9.572131] systemd[1]: Created slice Slice /system/serial-getty.
[    9.572844] systemd[1]: Created slice Slice /system/sshd-keygen.
[    9.573451] systemd[1]: Created slice Slice /system/systemd-fsck.
[    9.574189] systemd[1]: Created slice User and Session Slice.
[    9.574217] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of a failed condition check (ConditionPathExists=!/run/plymouth/pid).
[    9.574270] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    9.574441] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    9.574474] systemd[1]: Reached target Local Encrypted Volumes.
[    9.574502] systemd[1]: Stopped target Switch Root.
[    9.574524] systemd[1]: Stopped target Initrd File Systems.
[    9.574540] systemd[1]: Stopped target Initrd Root File System.
[    9.574560] systemd[1]: Reached target Local Integrity Protected Volumes.
[    9.574594] systemd[1]: Reached target Path Units.
[    9.574622] systemd[1]: Reached target Slice Units.
[    9.574650] systemd[1]: Reached target Local Verity Protected Volumes.
[    9.574717] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    9.575068] systemd[1]: Listening on LVM2 poll daemon socket.
[    9.575134] systemd[1]: multipathd control socket was skipped because of a failed condition check (ConditionPathExists=/etc/multipath.conf).
[    9.581684] systemd[1]: Listening on RPCbind Server Activation Socket.
[    9.581762] systemd[1]: Reached target RPC Port Mapper.
[    9.583108] systemd[1]: Listening on Process Core Dump Socket.
[    9.583188] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    9.583598] systemd[1]: Listening on udev Control Socket.
[    9.583700] systemd[1]: Listening on udev Kernel Socket.
[    9.585011] systemd[1]: Activating swap /dev/mapper/rhel_hostname-swap...
[    9.586336] systemd[1]: Mounting Huge Pages File System...
[    9.587624] systemd[1]: Mounting POSIX Message Queue File System...
[    9.589211] systemd[1]: Mounting Kernel Debug File System...
[    9.590479] systemd[1]: Mounting Kernel Trace File System...
[    9.590601] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of a failed condition check (ConditionPathExists=/etc/krb5.keytab).
[    9.591896] Adding 7815164k swap on /dev/mapper/rhel_hostname-swap.  Priority:-2 extents:1 across:7815164k SS
[    9.593375] systemd[1]: Starting Create List of Static Device Nodes...
[    9.594661] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    9.595898] systemd[1]: Starting Load Kernel Module configfs...
[    9.597362] systemd[1]: Starting Load Kernel Module drm...
[    9.598534] systemd[1]: Starting Load Kernel Module fuse...
[    9.600451] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
[    9.600543] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
[    9.600595] systemd[1]: Stopped Plymouth switch root service.
[    9.600752] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
[    9.600798] systemd[1]: Stopped File System Check on Root Device.
[    9.600883] systemd[1]: Stopped Journal Service.
[    9.602848] systemd[1]: Starting Journal Service...
[    9.605781] systemd[1]: Starting Load Kernel Modules...
[    9.607007] systemd[1]: Starting Generate network units from Kernel command line...
[    9.608342] systemd[1]: Starting Remount Root and Kernel File Systems...
[    9.608432] systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
[    9.610085] systemd[1]: Starting Coldplug All udev Devices...
[    9.613146] systemd[1]: Activated swap /dev/mapper/rhel_hostname-swap.
[    9.614112] systemd[1]: Mounted Huge Pages File System.
[    9.614236] systemd[1]: Mounted POSIX Message Queue File System.
[    9.614353] systemd[1]: Mounted Kernel Debug File System.
[    9.614470] systemd[1]: Mounted Kernel Trace File System.
[    9.614730] systemd[1]: Finished Create List of Static Device Nodes.
[    9.615005] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    9.615149] systemd[1]: Finished Load Kernel Module configfs.
[    9.615421] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    9.615560] systemd[1]: Finished Load Kernel Module drm.
[    9.615817] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    9.615950] systemd[1]: Finished Load Kernel Module fuse.
[    9.616193] systemd[1]: Finished Read and set NIS domainname from /etc/sysconfig/network.
[    9.616464] systemd[1]: Finished Load Kernel Modules.
[    9.616722] systemd[1]: Finished Generate network units from Kernel command line.
[    9.616848] systemd[1]: Reached target Swaps.
[    9.618106] systemd[1]: Mounting FUSE Control File System...
[    9.618821] systemd-journald[1613]: File /run/log/journal/90d737022c3c475982677c5c7697f08b/system.journal corrupted or uncleanly shut down, renaming and replacing.
[    9.619492] systemd[1]: Mounting Kernel Configuration File System...
[    9.620858] systemd[1]: Starting Apply Kernel Variables...
[    9.622513] systemd[1]: Finished Remount Root and Kernel File Systems.
[    9.622680] systemd[1]: Mounted FUSE Control File System.
[    9.622800] systemd[1]: Mounted Kernel Configuration File System.
[    9.622896] systemd[1]: Special handling of early boot iSCSI sessions was skipped because of a failed condition check (ConditionDirectoryNotEmpty=/sys/class/iscsi_session).
[    9.622936] systemd[1]: First Boot Wizard was skipped because of a failed condition check (ConditionFirstBoot=yes).
[    9.623879] systemd[1]: Rebuild Hardware Database was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[    9.625135] systemd[1]: Starting Load/Save Random Seed...
[    9.625225] systemd[1]: Create System Users was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[    9.626461] systemd[1]: Starting Create Static Device Nodes in /dev...
[    9.627871] systemd[1]: Started Journal Service.
[    9.635992] systemd-journald[1613]: Received client request to flush runtime journal.
[    9.804426] evbug: Connected device: input0 (Power Button at LNXPWRBN/button/input0)
[    9.843151] ACPI Error: No handler for Region [SYSI] (000000007103119c) [IPMI] (20230628/evregion-130)
[    9.853310] ACPI Error: Region IPMI (ID=7) has no handler (20230628/exfldio-261)

[    9.862110] No Local Variables are initialized for Method [_GHL]

[    9.862114] No Arguments are initialized for method [_GHL]

[    9.862119] ACPI Error: Aborting method \_SB.PMI0._GHL due to previous error (AE_NOT_EXIST) (20230628/psparse-529)
[    9.864452] evbug: Connected device: input1 (DELL DRAC 5 Virtual Keyboard and Mouse at usb-0000:46:00.3-1.2/input0)
[    9.873812] evbug: Connected device: input2 (DELL DRAC 5 Virtual Keyboard and Mouse at usb-0000:46:00.3-1.2/input1)
[    9.873826] ACPI Error: Aborting method \_SB.PMI0._PMC due to previous error (AE_NOT_EXIST) (20230628/psparse-529)
[    9.885546] ACPI: \_SB_.PMI0: _PMC evaluation failed: AE_NOT_EXIST
[    9.886518] IPMI message handler: version 39.2
[    9.888624] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    9.888629] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    9.888894] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[    9.890851] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
[    9.895380] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    9.895476] evbug: Connected device: input3 (PC Speaker at isa0061/input0)
[    9.896752] ipmi device interface
[    9.912258] ipmi_si: IPMI System Interface driver
[    9.912278] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[    9.912281] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
[    9.912284] ipmi_si: Adding SMBIOS-specified kcs state machine
[    9.912345] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[    9.912378] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
[    9.912560] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[    9.912563] ipmi_si: Adding ACPI-specified kcs state machine
[    9.912734] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
[    9.912760] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[    9.912765] RAPL PMU: hw unit of domain package 2^-16 Joules
[   10.131507] kvm_amd: TSC scaling supported
[   10.131510] kvm_amd: Nested Virtualization enabled
[   10.131512] kvm_amd: Nested Paging enabled
[   10.131514] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   10.131516] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   10.131768] kvm_amd: Virtual VMLOAD VMSAVE supported
[   10.131769] kvm_amd: Virtual GIF supported
[   10.131770] kvm_amd: LBR virtualization supported
[   10.153983] EDAC DEBUG: umc_read_base_mask:   DCSB0[0]=0x00000000 reg: 0x50000
[   10.153990] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC0[0]=0x00000000 reg: 0x50010
[   10.153994] EDAC DEBUG: umc_read_base_mask:   DCSB0[1]=0x00000000 reg: 0x50004
[   10.153997] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC0[1]=0x00000000 reg: 0x50014
[   10.154000] EDAC DEBUG: umc_read_base_mask:   DCSB0[2]=0x00000001 reg: 0x50008
[   10.154003] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC0[2]=0x00000000 reg: 0x50018
[   10.154005] EDAC DEBUG: umc_read_base_mask:   DCSB0[3]=0x00000201 reg: 0x5000c
[   10.154008] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC0[3]=0x00000000 reg: 0x5001c
[   10.154011] EDAC DEBUG: umc_read_base_mask:   DCSM0[0]=0x00000000 reg: 0x50020
[   10.154014] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC0[0]=0x00000000 reg: 0x50028
[   10.154017] EDAC DEBUG: umc_read_base_mask:   DCSM0[1]=0x07fffdfe reg: 0x50024
[   10.154020] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC0[1]=0x00000000 reg: 0x5002c
[   10.154023] EDAC DEBUG: umc_read_base_mask:   DCSB1[0]=0x00000000 reg: 0x150000
[   10.154026] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC1[0]=0x00000000 reg: 0x150010
[   10.154028] EDAC DEBUG: umc_read_base_mask:   DCSB1[1]=0x00000000 reg: 0x150004
[   10.154031] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC1[1]=0x00000000 reg: 0x150014
[   10.154034] EDAC DEBUG: umc_read_base_mask:   DCSB1[2]=0x00000001 reg: 0x150008
[   10.154037] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC1[2]=0x00000000 reg: 0x150018
[   10.154040] EDAC DEBUG: umc_read_base_mask:   DCSB1[3]=0x00000201 reg: 0x15000c
[   10.154043] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC1[3]=0x00000000 reg: 0x15001c
[   10.154045] EDAC DEBUG: umc_read_base_mask:   DCSM1[0]=0x00000000 reg: 0x150020
[   10.154048] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC1[0]=0x00000000 reg: 0x150028
[   10.154051] EDAC DEBUG: umc_read_base_mask:   DCSM1[1]=0x07fffdfe reg: 0x150024
[   10.154054] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC1[1]=0x00000000 reg: 0x15002c
[   10.154057] EDAC DEBUG: umc_read_base_mask:   DCSB2[0]=0x00000000 reg: 0x250000
[   10.154059] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC2[0]=0x00000000 reg: 0x250010
[   10.154062] EDAC DEBUG: umc_read_base_mask:   DCSB2[1]=0x00000000 reg: 0x250004
[   10.154065] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC2[1]=0x00000000 reg: 0x250014
[   10.154068] EDAC DEBUG: umc_read_base_mask:   DCSB2[2]=0x00000001 reg: 0x250008
[   10.154070] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC2[2]=0x00000000 reg: 0x250018
[   10.154073] EDAC DEBUG: umc_read_base_mask:   DCSB2[3]=0x00000201 reg: 0x25000c
[   10.154076] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC2[3]=0x00000000 reg: 0x25001c
[   10.154079] EDAC DEBUG: umc_read_base_mask:   DCSM2[0]=0x00000000 reg: 0x250020
[   10.154082] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC2[0]=0x00000000 reg: 0x250028
[   10.154084] EDAC DEBUG: umc_read_base_mask:   DCSM2[1]=0x07fffdfe reg: 0x250024
[   10.154087] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC2[1]=0x00000000 reg: 0x25002c
[   10.154090] EDAC DEBUG: umc_read_base_mask:   DCSB3[0]=0x00000000 reg: 0x350000
[   10.154093] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC3[0]=0x00000000 reg: 0x350010
[   10.154095] EDAC DEBUG: umc_read_base_mask:   DCSB3[1]=0x00000000 reg: 0x350004
[   10.154098] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC3[1]=0x00000000 reg: 0x350014
[   10.154101] EDAC DEBUG: umc_read_base_mask:   DCSB3[2]=0x00000001 reg: 0x350008
[   10.154104] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC3[2]=0x00000000 reg: 0x350018
[   10.154107] EDAC DEBUG: umc_read_base_mask:   DCSB3[3]=0x00000201 reg: 0x35000c
[   10.154109] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC3[3]=0x00000000 reg: 0x35001c
[   10.154112] EDAC DEBUG: umc_read_base_mask:   DCSM3[0]=0x00000000 reg: 0x350020
[   10.154115] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC3[0]=0x00000000 reg: 0x350028
[   10.154118] EDAC DEBUG: umc_read_base_mask:   DCSM3[1]=0x07fffdfe reg: 0x350024
[   10.154120] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC3[1]=0x00000000 reg: 0x35002c
[   10.154123] EDAC DEBUG: umc_read_base_mask:   DCSB4[0]=0x00000000 reg: 0x450000
[   10.154126] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC4[0]=0x00000000 reg: 0x450010
[   10.154129] EDAC DEBUG: umc_read_base_mask:   DCSB4[1]=0x00000000 reg: 0x450004
[   10.154132] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC4[1]=0x00000000 reg: 0x450014
[   10.154134] EDAC DEBUG: umc_read_base_mask:   DCSB4[2]=0x00000001 reg: 0x450008
[   10.154137] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC4[2]=0x00000000 reg: 0x450018
[   10.154140] EDAC DEBUG: umc_read_base_mask:   DCSB4[3]=0x00000201 reg: 0x45000c
[   10.154143] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC4[3]=0x00000000 reg: 0x45001c
[   10.154146] EDAC DEBUG: umc_read_base_mask:   DCSM4[0]=0x00000000 reg: 0x450020
[   10.154148] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC4[0]=0x00000000 reg: 0x450028
[   10.154151] EDAC DEBUG: umc_read_base_mask:   DCSM4[1]=0x07fffdfe reg: 0x450024
[   10.154154] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC4[1]=0x00000000 reg: 0x45002c
[   10.154157] EDAC DEBUG: umc_read_base_mask:   DCSB5[0]=0x00000000 reg: 0x550000
[   10.154160] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC5[0]=0x00000000 reg: 0x550010
[   10.154163] EDAC DEBUG: umc_read_base_mask:   DCSB5[1]=0x00000000 reg: 0x550004
[   10.154165] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC5[1]=0x00000000 reg: 0x550014
[   10.154168] EDAC DEBUG: umc_read_base_mask:   DCSB5[2]=0x00000001 reg: 0x550008
[   10.154171] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC5[2]=0x00000000 reg: 0x550018
[   10.154174] EDAC DEBUG: umc_read_base_mask:   DCSB5[3]=0x00000201 reg: 0x55000c
[   10.154177] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC5[3]=0x00000000 reg: 0x55001c
[   10.154179] EDAC DEBUG: umc_read_base_mask:   DCSM5[0]=0x00000000 reg: 0x550020
[   10.154182] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC5[0]=0x00000000 reg: 0x550028
[   10.154185] EDAC DEBUG: umc_read_base_mask:   DCSM5[1]=0x07fffdfe reg: 0x550024
[   10.154188] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC5[1]=0x00000000 reg: 0x55002c
[   10.154191] EDAC DEBUG: umc_read_base_mask:   DCSB6[0]=0x00000000 reg: 0x650000
[   10.154193] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC6[0]=0x00000000 reg: 0x650010
[   10.154196] EDAC DEBUG: umc_read_base_mask:   DCSB6[1]=0x00000000 reg: 0x650004
[   10.154199] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC6[1]=0x00000000 reg: 0x650014
[   10.154201] EDAC DEBUG: umc_read_base_mask:   DCSB6[2]=0x00000001 reg: 0x650008
[   10.154204] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC6[2]=0x00000000 reg: 0x650018
[   10.154207] EDAC DEBUG: umc_read_base_mask:   DCSB6[3]=0x00000201 reg: 0x65000c
[   10.154209] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC6[3]=0x00000000 reg: 0x65001c
[   10.154212] EDAC DEBUG: umc_read_base_mask:   DCSM6[0]=0x00000000 reg: 0x650020
[   10.154215] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC6[0]=0x00000000 reg: 0x650028
[   10.154217] EDAC DEBUG: umc_read_base_mask:   DCSM6[1]=0x07fffdfe reg: 0x650024
[   10.154220] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC6[1]=0x00000000 reg: 0x65002c
[   10.154223] EDAC DEBUG: umc_read_base_mask:   DCSB7[0]=0x00000000 reg: 0x750000
[   10.154225] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC7[0]=0x00000000 reg: 0x750010
[   10.154228] EDAC DEBUG: umc_read_base_mask:   DCSB7[1]=0x00000000 reg: 0x750004
[   10.154231] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC7[1]=0x00000000 reg: 0x750014
[   10.154233] EDAC DEBUG: umc_read_base_mask:   DCSB7[2]=0x00000001 reg: 0x750008
[   10.154236] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC7[2]=0x00000000 reg: 0x750018
[   10.154239] EDAC DEBUG: umc_read_base_mask:   DCSB7[3]=0x00000201 reg: 0x75000c
[   10.154241] EDAC DEBUG: umc_read_base_mask:     DCSB_SEC7[3]=0x00000000 reg: 0x75001c
[   10.154244] EDAC DEBUG: umc_read_base_mask:   DCSM7[0]=0x00000000 reg: 0x750020
[   10.154247] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC7[0]=0x00000000 reg: 0x750028
[   10.154249] EDAC DEBUG: umc_read_base_mask:   DCSM7[1]=0x07fffdfe reg: 0x750024
[   10.154252] EDAC DEBUG: umc_read_base_mask:     DCSM_SEC7[1]=0x00000000 reg: 0x75002c
[   10.154297] EDAC DEBUG: umc_determine_memory_type:   UMC0 DIMM type: Unbuffered-DDR4
[   10.154299] EDAC DEBUG: umc_determine_memory_type:   UMC1 DIMM type: Unbuffered-DDR4
[   10.154300] EDAC DEBUG: umc_determine_memory_type:   UMC2 DIMM type: Unbuffered-DDR4
[   10.154301] EDAC DEBUG: umc_determine_memory_type:   UMC3 DIMM type: Unbuffered-DDR4
[   10.154303] EDAC DEBUG: umc_determine_memory_type:   UMC4 DIMM type: Unbuffered-DDR4
[   10.154304] EDAC DEBUG: umc_determine_memory_type:   UMC5 DIMM type: Unbuffered-DDR4
[   10.154305] EDAC DEBUG: umc_determine_memory_type:   UMC6 DIMM type: Unbuffered-DDR4
[   10.154307] EDAC DEBUG: umc_determine_memory_type:   UMC7 DIMM type: Unbuffered-DDR4
[   10.154330] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 2
[   10.154332] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154333] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154335] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154336] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 2, channel: 0, cs_mode 3
[   10.154338] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154339] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 3
[   10.154340] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154342] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154343] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154344] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 3, channel: 0, cs_mode 3
[   10.154346] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154347] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 2
[   10.154349] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154350] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154351] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154352] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 2, channel: 1, cs_mode 3
[   10.154354] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154355] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 3
[   10.154357] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154358] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154359] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154360] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 3, channel: 1, cs_mode 3
[   10.154362] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154363] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 2
[   10.154364] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154366] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154367] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154368] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 2, channel: 2, cs_mode 3
[   10.154370] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154371] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 3
[   10.154372] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154374] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154375] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154376] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 3, channel: 2, cs_mode 3
[   10.154378] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154379] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 2
[   10.154380] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154382] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154383] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154384] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 2, channel: 3, cs_mode 3
[   10.154386] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154387] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 3
[   10.154388] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154390] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154391] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154392] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 3, channel: 3, cs_mode 3
[   10.154393] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154395] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 2
[   10.154396] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154397] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154399] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154400] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 2, channel: 4, cs_mode 3
[   10.154401] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154403] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 3
[   10.154404] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154405] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154407] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154408] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 3, channel: 4, cs_mode 3
[   10.154409] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154410] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 2
[   10.154412] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154413] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154414] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154416] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 2, channel: 5, cs_mode 3
[   10.154417] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154418] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 3
[   10.154420] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154421] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154422] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154424] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 3, channel: 5, cs_mode 3
[   10.154425] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154426] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 2
[   10.154428] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154429] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154430] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154431] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 2, channel: 6, cs_mode 3
[   10.154433] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154434] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 3
[   10.154435] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154437] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154438] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154439] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 3, channel: 6, cs_mode 3
[   10.154441] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154442] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 2
[   10.154443] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154445] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154446] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154447] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 2, channel: 7, cs_mode 3
[   10.154449] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154450] EDAC DEBUG: umc_init_csrows: MC node: 0, csrow: 3
[   10.154451] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154453] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154454] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154455] EDAC DEBUG: umc_get_csrow_nr_pages: csrow: 3, channel: 7, cs_mode 3
[   10.154457] EDAC DEBUG: umc_get_csrow_nr_pages: nr_pages/channel: 4194304
[   10.154458] EDAC DEBUG: edac_mc_add_mc_with_groups: 
[   10.154483] EDAC DEBUG: edac_create_sysfs_mci_device: device mc0 created
[   10.154501] EDAC DEBUG: edac_create_dimm_object: device rank16 created at location csrow 2 channel 0 
[   10.154515] EDAC DEBUG: edac_create_dimm_object: device rank17 created at location csrow 2 channel 1 
[   10.154528] EDAC DEBUG: edac_create_dimm_object: device rank18 created at location csrow 2 channel 2 
[   10.154543] EDAC DEBUG: edac_create_dimm_object: device rank19 created at location csrow 2 channel 3 
[   10.154557] EDAC DEBUG: edac_create_dimm_object: device rank20 created at location csrow 2 channel 4 
[   10.154570] EDAC DEBUG: edac_create_dimm_object: device rank21 created at location csrow 2 channel 5 
[   10.154585] EDAC DEBUG: edac_create_dimm_object: device rank22 created at location csrow 2 channel 6 
[   10.154599] EDAC DEBUG: edac_create_dimm_object: device rank23 created at location csrow 2 channel 7 
[   10.154612] EDAC DEBUG: edac_create_dimm_object: device rank24 created at location csrow 3 channel 0 
[   10.154627] EDAC DEBUG: edac_create_dimm_object: device rank25 created at location csrow 3 channel 1 
[   10.154640] EDAC DEBUG: edac_create_dimm_object: device rank26 created at location csrow 3 channel 2 
[   10.154654] EDAC DEBUG: edac_create_dimm_object: device rank27 created at location csrow 3 channel 3 
[   10.154668] EDAC DEBUG: edac_create_dimm_object: device rank28 created at location csrow 3 channel 4 
[   10.154682] EDAC DEBUG: edac_create_dimm_object: device rank29 created at location csrow 3 channel 5 
[   10.154696] EDAC DEBUG: edac_create_dimm_object: device rank30 created at location csrow 3 channel 6 
[   10.154710] EDAC DEBUG: edac_create_dimm_object: device rank31 created at location csrow 3 channel 7 
[   10.154728] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   10.154730] EDAC amd64: F19h detected (node 0).
[   10.154732] EDAC DEBUG: umc_dump_misc_regs: UMC0 DIMM cfg: 0x0
[   10.154733] EDAC DEBUG: umc_dump_misc_regs: UMC0 UMC cfg: 0x80001200
[   10.154735] EDAC DEBUG: umc_dump_misc_regs: UMC0 SDP ctrl: 0xb040808b
[   10.154736] EDAC DEBUG: umc_dump_misc_regs: UMC0 ECC ctrl: 0x673
[   10.154739] EDAC DEBUG: umc_dump_misc_regs: UMC0 ECC bad symbol: 0x0
[   10.154741] EDAC DEBUG: umc_dump_misc_regs: UMC0 UMC cap: 0x30
[   10.154743] EDAC DEBUG: umc_dump_misc_regs: UMC0 UMC cap high: 0xc0000030
[   10.154744] EDAC DEBUG: umc_dump_misc_regs: UMC0 ECC capable: yes, ChipKill ECC capable: yes
[   10.154746] EDAC DEBUG: umc_dump_misc_regs: UMC0 All DIMMs support ECC: yes
[   10.154747] EDAC DEBUG: umc_dump_misc_regs: UMC0 x4 DIMMs present: no
[   10.154749] EDAC DEBUG: umc_dump_misc_regs: UMC0 x16 DIMMs present: no
[   10.154750] EDAC MC: UMC0 chip selects:
[   10.154751] EDAC amd64: MC: 0:     0MB 1:     0MB
[   10.154753] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154754] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154756] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154757] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154759] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154760] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154761] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   10.154763] EDAC DEBUG: umc_dump_misc_regs: UMC1 DIMM cfg: 0x0
[   10.154764] EDAC DEBUG: umc_dump_misc_regs: UMC1 UMC cfg: 0x80001200
[   10.154766] EDAC DEBUG: umc_dump_misc_regs: UMC1 SDP ctrl: 0xb040808b
[   10.154767] EDAC DEBUG: umc_dump_misc_regs: UMC1 ECC ctrl: 0x673
[   10.154769] EDAC DEBUG: umc_dump_misc_regs: UMC1 ECC bad symbol: 0x0
[   10.154772] EDAC DEBUG: umc_dump_misc_regs: UMC1 UMC cap: 0x30
[   10.154773] EDAC DEBUG: umc_dump_misc_regs: UMC1 UMC cap high: 0xc0000030
[   10.154775] EDAC DEBUG: umc_dump_misc_regs: UMC1 ECC capable: yes, ChipKill ECC capable: yes
[   10.154776] EDAC DEBUG: umc_dump_misc_regs: UMC1 All DIMMs support ECC: yes
[   10.154778] EDAC DEBUG: umc_dump_misc_regs: UMC1 x4 DIMMs present: no
[   10.154779] EDAC DEBUG: umc_dump_misc_regs: UMC1 x16 DIMMs present: no
[   10.154780] EDAC MC: UMC1 chip selects:
[   10.154781] EDAC amd64: MC: 0:     0MB 1:     0MB
[   10.154783] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154784] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154786] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154787] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154788] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154789] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154791] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   10.154792] EDAC DEBUG: umc_dump_misc_regs: UMC2 DIMM cfg: 0x0
[   10.154794] EDAC DEBUG: umc_dump_misc_regs: UMC2 UMC cfg: 0x80001200
[   10.154795] EDAC DEBUG: umc_dump_misc_regs: UMC2 SDP ctrl: 0xb040808b
[   10.154796] EDAC DEBUG: umc_dump_misc_regs: UMC2 ECC ctrl: 0x673
[   10.154799] EDAC DEBUG: umc_dump_misc_regs: UMC2 ECC bad symbol: 0x0
[   10.154801] EDAC DEBUG: umc_dump_misc_regs: UMC2 UMC cap: 0x30
[   10.154803] EDAC DEBUG: umc_dump_misc_regs: UMC2 UMC cap high: 0xc0000030
[   10.154804] EDAC DEBUG: umc_dump_misc_regs: UMC2 ECC capable: yes, ChipKill ECC capable: yes
[   10.154806] EDAC DEBUG: umc_dump_misc_regs: UMC2 All DIMMs support ECC: yes
[   10.154807] EDAC DEBUG: umc_dump_misc_regs: UMC2 x4 DIMMs present: no
[   10.154808] EDAC DEBUG: umc_dump_misc_regs: UMC2 x16 DIMMs present: no
[   10.154810] EDAC MC: UMC2 chip selects:
[   10.154811] EDAC amd64: MC: 0:     0MB 1:     0MB
[   10.154812] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154814] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154815] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154816] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154817] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154819] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154820] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   10.154822] EDAC DEBUG: umc_dump_misc_regs: UMC3 DIMM cfg: 0x0
[   10.154823] EDAC DEBUG: umc_dump_misc_regs: UMC3 UMC cfg: 0x80001200
[   10.154824] EDAC DEBUG: umc_dump_misc_regs: UMC3 SDP ctrl: 0xb040808b
[   10.154826] EDAC DEBUG: umc_dump_misc_regs: UMC3 ECC ctrl: 0x673
[   10.154828] EDAC DEBUG: umc_dump_misc_regs: UMC3 ECC bad symbol: 0x0
[   10.154831] EDAC DEBUG: umc_dump_misc_regs: UMC3 UMC cap: 0x30
[   10.154832] EDAC DEBUG: umc_dump_misc_regs: UMC3 UMC cap high: 0xc0000030
[   10.154834] EDAC DEBUG: umc_dump_misc_regs: UMC3 ECC capable: yes, ChipKill ECC capable: yes
[   10.154835] EDAC DEBUG: umc_dump_misc_regs: UMC3 All DIMMs support ECC: yes
[   10.154836] EDAC DEBUG: umc_dump_misc_regs: UMC3 x4 DIMMs present: no
[   10.154838] EDAC DEBUG: umc_dump_misc_regs: UMC3 x16 DIMMs present: no
[   10.154839] EDAC MC: UMC3 chip selects:
[   10.154840] EDAC amd64: MC: 0:     0MB 1:     0MB
[   10.154842] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154843] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154844] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154845] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154847] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154848] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154849] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   10.154851] EDAC DEBUG: umc_dump_misc_regs: UMC4 DIMM cfg: 0x0
[   10.154852] EDAC DEBUG: umc_dump_misc_regs: UMC4 UMC cfg: 0x80001200
[   10.154854] EDAC DEBUG: umc_dump_misc_regs: UMC4 SDP ctrl: 0xb040808b
[   10.154855] EDAC DEBUG: umc_dump_misc_regs: UMC4 ECC ctrl: 0x673
[   10.154857] EDAC DEBUG: umc_dump_misc_regs: UMC4 ECC bad symbol: 0x0
[   10.154860] EDAC DEBUG: umc_dump_misc_regs: UMC4 UMC cap: 0x30
[   10.154861] EDAC DEBUG: umc_dump_misc_regs: UMC4 UMC cap high: 0xc0000030
[   10.154863] EDAC DEBUG: umc_dump_misc_regs: UMC4 ECC capable: yes, ChipKill ECC capable: yes
[   10.154864] EDAC DEBUG: umc_dump_misc_regs: UMC4 All DIMMs support ECC: yes
[   10.154866] EDAC DEBUG: umc_dump_misc_regs: UMC4 x4 DIMMs present: no
[   10.154867] EDAC DEBUG: umc_dump_misc_regs: UMC4 x16 DIMMs present: no
[   10.154868] EDAC MC: UMC4 chip selects:
[   10.154869] EDAC amd64: MC: 0:     0MB 1:     0MB
[   10.154871] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154872] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154873] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154875] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154876] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154877] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154878] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   10.154880] EDAC DEBUG: umc_dump_misc_regs: UMC5 DIMM cfg: 0x0
[   10.154881] EDAC DEBUG: umc_dump_misc_regs: UMC5 UMC cfg: 0x80001200
[   10.154883] EDAC DEBUG: umc_dump_misc_regs: UMC5 SDP ctrl: 0xb040808b
[   10.154884] EDAC DEBUG: umc_dump_misc_regs: UMC5 ECC ctrl: 0x673
[   10.154887] EDAC DEBUG: umc_dump_misc_regs: UMC5 ECC bad symbol: 0x0
[   10.154889] EDAC DEBUG: umc_dump_misc_regs: UMC5 UMC cap: 0x30
[   10.154891] EDAC DEBUG: umc_dump_misc_regs: UMC5 UMC cap high: 0xc0000030
[   10.154892] EDAC DEBUG: umc_dump_misc_regs: UMC5 ECC capable: yes, ChipKill ECC capable: yes
[   10.154893] EDAC DEBUG: umc_dump_misc_regs: UMC5 All DIMMs support ECC: yes
[   10.154895] EDAC DEBUG: umc_dump_misc_regs: UMC5 x4 DIMMs present: no
[   10.154896] EDAC DEBUG: umc_dump_misc_regs: UMC5 x16 DIMMs present: no
[   10.154897] EDAC MC: UMC5 chip selects:
[   10.154898] EDAC amd64: MC: 0:     0MB 1:     0MB
[   10.154900] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154901] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154903] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154904] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154905] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154906] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154908] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   10.154909] EDAC DEBUG: umc_dump_misc_regs: UMC6 DIMM cfg: 0x0
[   10.154911] EDAC DEBUG: umc_dump_misc_regs: UMC6 UMC cfg: 0x80001200
[   10.154912] EDAC DEBUG: umc_dump_misc_regs: UMC6 SDP ctrl: 0xb040808b
[   10.154913] EDAC DEBUG: umc_dump_misc_regs: UMC6 ECC ctrl: 0x673
[   10.154916] EDAC DEBUG: umc_dump_misc_regs: UMC6 ECC bad symbol: 0x0
[   10.154918] EDAC DEBUG: umc_dump_misc_regs: UMC6 UMC cap: 0x30
[   10.154920] EDAC DEBUG: umc_dump_misc_regs: UMC6 UMC cap high: 0xc0000030
[   10.154921] EDAC DEBUG: umc_dump_misc_regs: UMC6 ECC capable: yes, ChipKill ECC capable: yes
[   10.154922] EDAC DEBUG: umc_dump_misc_regs: UMC6 All DIMMs support ECC: yes
[   10.154924] EDAC DEBUG: umc_dump_misc_regs: UMC6 x4 DIMMs present: no
[   10.154925] EDAC DEBUG: umc_dump_misc_regs: UMC6 x16 DIMMs present: no
[   10.154926] EDAC MC: UMC6 chip selects:
[   10.154928] EDAC amd64: MC: 0:     0MB 1:     0MB
[   10.154929] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154930] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154932] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154933] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154934] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154935] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154937] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   10.154938] EDAC DEBUG: umc_dump_misc_regs: UMC7 DIMM cfg: 0x0
[   10.154940] EDAC DEBUG: umc_dump_misc_regs: UMC7 UMC cfg: 0x80001200
[   10.154941] EDAC DEBUG: umc_dump_misc_regs: UMC7 SDP ctrl: 0xb040808b
[   10.154942] EDAC DEBUG: umc_dump_misc_regs: UMC7 ECC ctrl: 0x673
[   10.154945] EDAC DEBUG: umc_dump_misc_regs: UMC7 ECC bad symbol: 0x0
[   10.154947] EDAC DEBUG: umc_dump_misc_regs: UMC7 UMC cap: 0x30
[   10.154949] EDAC DEBUG: umc_dump_misc_regs: UMC7 UMC cap high: 0xc0000030
[   10.154950] EDAC DEBUG: umc_dump_misc_regs: UMC7 ECC capable: yes, ChipKill ECC capable: yes
[   10.154951] EDAC DEBUG: umc_dump_misc_regs: UMC7 All DIMMs support ECC: yes
[   10.154953] EDAC DEBUG: umc_dump_misc_regs: UMC7 x4 DIMMs present: no
[   10.154954] EDAC DEBUG: umc_dump_misc_regs: UMC7 x16 DIMMs present: no
[   10.154955] EDAC MC: UMC7 chip selects:
[   10.154956] EDAC amd64: MC: 0:     0MB 1:     0MB
[   10.154958] EDAC DEBUG: __addr_mask_to_cs_size: CS2 DIMM1 AddrMasks:
[   10.154959] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154961] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154962] EDAC DEBUG: __addr_mask_to_cs_size: CS3 DIMM1 AddrMasks:
[   10.154963] EDAC DEBUG: __addr_mask_to_cs_size:   Original AddrMask: 0x7fffdfe
[   10.154964] EDAC DEBUG: __addr_mask_to_cs_size:   Deinterleaved AddrMask: 0x3fffffe
[   10.154966] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   10.165557] intel_rapl_common: Found RAPL domain package
[   10.165561] intel_rapl_common: Found RAPL domain core
[   10.169246] AMD Address Translation Library initialized
[   10.824452] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   10.888536] ipmi_si IPI0001:00: Using irq 10
[   10.912896] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   10.950496] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   10.956675] ipmi_ssif: IPMI SSIF Interface driver
[   11.012805] XFS (sda5): Mounting V5 Filesystem 98e88180-8660-414b-a4ef-843bd5a3d846
[   11.014497] XFS (dm-2): Mounting V5 Filesystem f6773b98-ad61-4b96-a3b2-be4ab29942ab
[   11.023437] XFS (dm-2): Starting recovery (logdev: internal)
[   11.028364] XFS (dm-2): Ending recovery (logdev: internal)
[   11.034334] XFS (sda5): Starting recovery (logdev: internal)
[   11.039792] XFS (sda5): Ending recovery (logdev: internal)
[   11.389388] RPC: Registered named UNIX socket transport module.
[   11.389393] RPC: Registered udp transport module.
[   11.389395] RPC: Registered tcp transport module.
[   11.389396] RPC: Registered tcp-with-tls transport module.
[   11.389397] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   19.892319] kernel: 0000000042860b32 kernel_size: 0x104a200
[   19.892327] PEFILE: Unsigned PE binary
[   19.903347] Crash PT_LOAD ELF header. phdr=0000000010be45f3 vaddr=0xffff9cb640100000, paddr=0x100000, sz=0xa4b020 e_phnum=131 p_offset=0x100000
[   19.903354] Crash PT_LOAD ELF header. phdr=0000000083c2c472 vaddr=0xffff9cb640b4b020, paddr=0xb4b020, sz=0x8040 e_phnum=132 p_offset=0xb4b020
[   19.903357] Crash PT_LOAD ELF header. phdr=000000004de38005 vaddr=0xffff9cb640b53060, paddr=0xb53060, sz=0xfc0 e_phnum=133 p_offset=0xb53060
[   19.903359] Crash PT_LOAD ELF header. phdr=0000000030ffc4f6 vaddr=0xffff9cb640b54020, paddr=0xb54020, sz=0x32440 e_phnum=134 p_offset=0xb54020
[   19.903362] Crash PT_LOAD ELF header. phdr=00000000c3ef9998 vaddr=0xffff9cb640b86460, paddr=0xb86460, sz=0xbc0 e_phnum=135 p_offset=0xb86460
[   19.903364] Crash PT_LOAD ELF header. phdr=000000009ad21415 vaddr=0xffff9cb640b87020, paddr=0xb87020, sz=0x32440 e_phnum=136 p_offset=0xb87020
[   19.903366] Crash PT_LOAD ELF header. phdr=00000000dcd6ba8b vaddr=0xffff9cb640bb9460, paddr=0xbb9460, sz=0xbc0 e_phnum=137 p_offset=0xbb9460
[   19.903368] Crash PT_LOAD ELF header. phdr=000000002b4cf900 vaddr=0xffff9cb640bba020, paddr=0xbba020, sz=0x45e40 e_phnum=138 p_offset=0xbba020
[   19.903370] Crash PT_LOAD ELF header. phdr=00000000a6295d74 vaddr=0xffff9cb640bffe60, paddr=0xbffe60, sz=0x34001a0 e_phnum=139 p_offset=0xbffe60
[   19.903372] Crash PT_LOAD ELF header. phdr=000000007c2a364d vaddr=0xffff9cb654000000, paddr=0x14000000, sz=0x2000000 e_phnum=140 p_offset=0x14000000
[   19.903375] Crash PT_LOAD ELF header. phdr=0000000026209ed4 vaddr=0xffff9cb696900000, paddr=0x56900000, sz=0xfc000 e_phnum=141 p_offset=0x56900000
[   19.903377] Crash PT_LOAD ELF header. phdr=00000000b2531a5a vaddr=0xffff9cb6969fd000, paddr=0x569fd000, sz=0x374e000 e_phnum=142 p_offset=0x569fd000
[   19.903379] Crash PT_LOAD ELF header. phdr=00000000d66a2f5c vaddr=0xffff9cb69a34b000, paddr=0x5a34b000, sz=0xd784000 e_phnum=143 p_offset=0x5a34b000
[   19.903381] Crash PT_LOAD ELF header. phdr=0000000072522a50 vaddr=0xffff9cb6aefff000, paddr=0x6efff000, sz=0x1000 e_phnum=144 p_offset=0x6efff000
[   19.903383] Crash PT_LOAD ELF header. phdr=000000002fd70e7e vaddr=0xffff9cb6af00b000, paddr=0x6f00b000, sz=0xff5000 e_phnum=145 p_offset=0x6f00b000
[   19.903385] Crash PT_LOAD ELF header. phdr=0000000093c8242f vaddr=0xffff9cb740000000, paddr=0x100000000, sz=0x1f7fd00000 e_phnum=146 p_offset=0x100000000
[   19.903388] Crash PT_LOAD ELF header. phdr=000000009f51b107 vaddr=0xffff9cd6c0000000, paddr=0x2080000000, sz=0x1fd7000000 e_phnum=147 p_offset=0x2080000000
[   19.903390] Crash PT_LOAD ELF header. phdr=00000000202fc14b vaddr=0xffff9cf6b7000000, paddr=0x4077000000, sz=0x8200000 e_phnum=148 p_offset=0x4077000000
[   19.903396] Loaded ELF headers at 0x4057000000 bufsz=0x3000 memsz=0xe1000
[   19.903406] Loaded purgatory at 0x4076ffb000
[   19.903410] Loaded boot_param, command line and misc at 0x4076ff9000 bufsz=0x1440 memsz=0x2000
[   19.903413] Loaded 64bit kernel at 0x4073e00000 bufsz=0x1045200 memsz=0x31cf000
[   19.903564] Loaded initrd at 0x406f461000 bufsz=0x499ee00 memsz=0x499ee00
[   19.903566] Final command line is: elfcorehdr=0x4057000000 BOOT_IMAGE=(hd0,gpt5)/vmlinuz-6.8.0-rc3-next-20240208 ro resume=/dev/mapper/rhel_hostname-swap rhgb console=ttyS0,115200n8 earlyprintk irqpoll nr_cpus=1 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 acpi_no_memhotplug transparent_hugepage=never nokaslr hest_disable novmcoredd cma=0 hugetlb_cma=0 disable_cpu_apicid=0
[   19.903581] E820 memmap:
[   19.903582] 0000000000001000-000000000008efff (1)
[   19.903584] 0000000000090000-000000000009ffff (1)
[   19.903586] 000000006edff000-000000006effefff (3)
[   19.903587] 000000000008f000-000000000008ffff (4)
[   19.903589] 000000006dfcf000-000000006edfefff (4)
[   19.903590] 000000006f000000-000000006f00afff (4)
[   19.903591] 0000000000000000-0000000000000fff (2)
[   19.903593] 0000000016000000-00000000568fffff (2)
[   19.903595] 00000000569fc000-00000000569fcfff (2)
[   19.903596] 000000005a14b000-000000005a34afff (2)
[   19.903598] 0000000067acf000-000000006dfcefff (2)
[   19.903599] 0000000070000000-000000007fffffff (2)
[   19.903600] 000000207fd00000-000000207fffffff (2)
[   19.903602] 000000407f200000-000000407fffffff (2)
[   19.903603] 0000000004000000-0000000013ffffff (1)
[   19.903605] 00000040570e00b0-0000004076ffffff (1)
[   19.903636] nr_segments = 5
[   19.903637] segment[0]: buf=0x00000000ef2dcbbd bufsz=0x3000 mem=0x4057000000 memsz=0xe1000
[   19.903692] segment[1]: buf=0x00000000da484bfd bufsz=0x4000 mem=0x4076ffb000 memsz=0x5000
[   19.903697] segment[2]: buf=0x00000000d4f4d8bd bufsz=0x1440 mem=0x4076ff9000 memsz=0x2000
[   19.903700] segment[3]: buf=0x000000009c3bdfff bufsz=0x1045200 mem=0x4073e00000 memsz=0x31cf000
[   19.907086] segment[4]: buf=0x0000000088c18f82 bufsz=0x499ee00 mem=0x406f461000 memsz=0x499f000
[   19.913053] kexec_file_load: type:1, start:0x4076ffb150 head:0x4 flags:0x2
[   19.987576] fbcon: Taking over console
[   20.345733] Console: switching to colour frame buffer device 128x48
[   43.502835] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 5088
[   43.502845] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 30208
[   43.502849] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.503811] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 24960
[   43.503816] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 5504
[   43.503819] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.562808] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 24896
[   43.562812] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.572809] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 24736
[   43.572813] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 5546
[   43.572816] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.592810] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 24384
[   43.592813] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 5717
[   43.592816] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.602808] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 24096
[   43.602812] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 5930
[   43.602815] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.632809] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 23744
[   43.632813] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 6058
[   43.632816] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.642808] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 23136
[   43.642812] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 6272
[   43.642815] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.652809] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 22816
[   43.652813] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 6442
[   43.652816] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.662808] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 22464
[   43.662812] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 6570
[   43.662814] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.682808] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 21376
[   43.682812] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 6997
[   43.682814] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.692808] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 19008
[   43.692812] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 7637
[   43.692814] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.702808] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 16992
[   43.702812] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 8277
[   43.702815] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.712808] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 15328
[   43.712812] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 8704
[   43.712814] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.722808] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 14304
[   43.722812] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 8960
[   43.722814] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.732808] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 13984
[   43.732812] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 9045
[   43.732815] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.912810] evbug: Event. Dev: input1, Type: 4, Code: 4, Value: 589825
[   43.912815] evbug: Event. Dev: input1, Type: 1, Code: 272, Value: 1
[   43.912817] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.962811] evbug: Event. Dev: input1, Type: 4, Code: 4, Value: 589825
[   43.962815] evbug: Event. Dev: input1, Type: 1, Code: 272, Value: 0
[   43.962818] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.972810] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 13952
[   43.972814] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 9088
[   43.972818] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.982808] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 9130
[   43.982811] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   43.992809] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 9088
[   43.992813] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   44.152809] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 13984
[   44.152814] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   44.212808] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 14048
[   44.212813] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 9173
[   44.212815] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   45.402827] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458835
[   45.402833] evbug: Event. Dev: input2, Type: 1, Code: 69, Value: 1
[   45.402836] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   45.403809] evbug: Event. Dev: input2, Type: 17, Code: 0, Value: 1
[   45.403811] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458835
[   45.403813] evbug: Event. Dev: input2, Type: 1, Code: 69, Value: 0
[   45.403815] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   45.462828] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458773
[   45.462834] evbug: Event. Dev: input2, Type: 1, Code: 19, Value: 1
[   45.462837] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   45.473814] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458770
[   45.473818] evbug: Event. Dev: input2, Type: 1, Code: 24, Value: 1
[   45.473820] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   45.483813] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458773
[   45.483817] evbug: Event. Dev: input2, Type: 1, Code: 19, Value: 0
[   45.483820] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   45.532813] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458770
[   45.532817] evbug: Event. Dev: input2, Type: 1, Code: 24, Value: 0
[   45.532819] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   45.622814] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458770
[   45.622818] evbug: Event. Dev: input2, Type: 1, Code: 24, Value: 1
[   45.622821] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   45.682814] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458770
[   45.682818] evbug: Event. Dev: input2, Type: 1, Code: 24, Value: 0
[   45.682820] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   45.692815] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458775
[   45.692819] evbug: Event. Dev: input2, Type: 1, Code: 20, Value: 1
[   45.692822] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   45.752812] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458775
[   45.752816] evbug: Event. Dev: input2, Type: 1, Code: 20, Value: 0
[   45.752819] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   45.942815] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458792
[   45.942819] evbug: Event. Dev: input2, Type: 1, Code: 28, Value: 1
[   45.942822] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   45.962813] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458792
[   45.962817] evbug: Event. Dev: input2, Type: 1, Code: 28, Value: 0
[   45.962819] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   46.653817] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458756
[   46.653822] evbug: Event. Dev: input2, Type: 1, Code: 30, Value: 1
[   46.653824] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   46.742813] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458756
[   46.742818] evbug: Event. Dev: input2, Type: 1, Code: 30, Value: 0
[   46.742820] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   46.752815] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458768
[   46.752820] evbug: Event. Dev: input2, Type: 1, Code: 50, Value: 1
[   46.752823] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   46.822813] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458768
[   46.822817] evbug: Event. Dev: input2, Type: 1, Code: 50, Value: 0
[   46.822820] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   46.833812] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458759
[   46.833815] evbug: Event. Dev: input2, Type: 1, Code: 32, Value: 1
[   46.833817] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   46.922812] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458759
[   46.922817] evbug: Event. Dev: input2, Type: 1, Code: 32, Value: 0
[   46.922819] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   47.182815] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458782
[   47.182819] evbug: Event. Dev: input2, Type: 1, Code: 2, Value: 1
[   47.182822] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   47.222815] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458783
[   47.222819] evbug: Event. Dev: input2, Type: 1, Code: 3, Value: 1
[   47.222821] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   47.232814] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458782
[   47.232818] evbug: Event. Dev: input2, Type: 1, Code: 2, Value: 0
[   47.232821] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   47.262815] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458783
[   47.262819] evbug: Event. Dev: input2, Type: 1, Code: 3, Value: 0
[   47.262821] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   47.386818] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458784
[   47.386822] evbug: Event. Dev: input2, Type: 1, Code: 4, Value: 1
[   47.386824] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   47.492816] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458784
[   47.492821] evbug: Event. Dev: input2, Type: 1, Code: 4, Value: 0
[   47.492824] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   47.502814] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458792
[   47.502818] evbug: Event. Dev: input2, Type: 1, Code: 28, Value: 1
[   47.502821] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   47.532813] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458792
[   47.532817] evbug: Event. Dev: input2, Type: 1, Code: 28, Value: 0
[   47.532820] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   48.753827] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458792
[   48.753834] evbug: Event. Dev: input2, Type: 1, Code: 28, Value: 1
[   48.753836] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   48.793815] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458792
[   48.793819] evbug: Event. Dev: input2, Type: 1, Code: 28, Value: 0
[   48.793821] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   48.932815] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458792
[   48.932819] evbug: Event. Dev: input2, Type: 1, Code: 28, Value: 1
[   48.932821] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   48.972814] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458792
[   48.972818] evbug: Event. Dev: input2, Type: 1, Code: 28, Value: 0
[   48.972821] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   49.222814] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458978
[   49.222819] evbug: Event. Dev: input2, Type: 1, Code: 56, Value: 1
[   49.222821] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   49.232811] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458978
[   49.232814] evbug: Event. Dev: input2, Type: 1, Code: 56, Value: 0
[   49.232816] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   92.405845] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 18080
[   92.405853] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 27093
[   92.405856] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   93.625848] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458759
[   93.625854] evbug: Event. Dev: input2, Type: 1, Code: 32, Value: 1
[   93.625856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   93.790838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458759
[   93.790843] evbug: Event. Dev: input2, Type: 1, Code: 32, Value: 0
[   93.790845] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   93.800837] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458768
[   93.800841] evbug: Event. Dev: input2, Type: 1, Code: 50, Value: 1
[   93.800843] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   93.820838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458760
[   93.820842] evbug: Event. Dev: input2, Type: 1, Code: 18, Value: 1
[   93.820845] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   93.830836] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458768
[   93.830841] evbug: Event. Dev: input2, Type: 1, Code: 50, Value: 0
[   93.830843] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   93.895838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458774
[   93.895842] evbug: Event. Dev: input2, Type: 1, Code: 31, Value: 1
[   93.895844] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   93.905835] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 18272
[   93.905839] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   93.925838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458762
[   93.925841] evbug: Event. Dev: input2, Type: 1, Code: 34, Value: 1
[   93.925844] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   93.981837] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458760
[   93.981841] evbug: Event. Dev: input2, Type: 1, Code: 18, Value: 0
[   93.981843] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   93.991838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458774
[   93.991843] evbug: Event. Dev: input2, Type: 1, Code: 31, Value: 0
[   93.991846] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   94.041838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458762
[   94.041842] evbug: Event. Dev: input2, Type: 1, Code: 34, Value: 0
[   94.041845] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   94.131838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458796
[   94.131842] evbug: Event. Dev: input2, Type: 1, Code: 57, Value: 1
[   94.131844] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   94.161836] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458796
[   94.161840] evbug: Event. Dev: input2, Type: 1, Code: 57, Value: 0
[   94.161843] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   94.171833] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
[   94.171836] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 1
[   94.171838] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   94.371839] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
[   94.371843] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 0
[   94.371846] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   94.945845] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
[   94.945851] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 1
[   94.945854] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.015840] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458801
[   95.015844] evbug: Event. Dev: input2, Type: 1, Code: 43, Value: 1
[   95.015850] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.085838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
[   95.085842] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 0
[   95.085845] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.095838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458801
[   95.095843] evbug: Event. Dev: input2, Type: 1, Code: 43, Value: 0
[   95.095846] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.230839] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458796
[   95.230843] evbug: Event. Dev: input2, Type: 1, Code: 57, Value: 1
[   95.230845] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.310840] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458762
[   95.310844] evbug: Event. Dev: input2, Type: 1, Code: 34, Value: 1
[   95.310847] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.331838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458796
[   95.331842] evbug: Event. Dev: input2, Type: 1, Code: 57, Value: 0
[   95.331845] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.381839] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458773
[   95.381842] evbug: Event. Dev: input2, Type: 1, Code: 19, Value: 1
[   95.381845] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.451838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458762
[   95.451842] evbug: Event. Dev: input2, Type: 1, Code: 34, Value: 0
[   95.451844] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.471841] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458760
[   95.471845] evbug: Event. Dev: input2, Type: 1, Code: 18, Value: 1
[   95.471848] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.500839] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458771
[   95.500843] evbug: Event. Dev: input2, Type: 1, Code: 25, Value: 1
[   95.500845] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.511839] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458773
[   95.511843] evbug: Event. Dev: input2, Type: 1, Code: 19, Value: 0
[   95.511847] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.550845] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458760
[   95.550851] evbug: Event. Dev: input2, Type: 1, Code: 18, Value: 0
[   95.550854] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.561837] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458771
[   95.561841] evbug: Event. Dev: input2, Type: 1, Code: 25, Value: 0
[   95.561844] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.661841] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458796
[   95.661845] evbug: Event. Dev: input2, Type: 1, Code: 57, Value: 1
[   95.661848] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   95.751840] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458796
[   95.751845] evbug: Event. Dev: input2, Type: 1, Code: 57, Value: 0
[   95.751847] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   96.311840] evbug: Event. Dev: input1, Type: 3, Code: 0, Value: 18656
[   96.311844] evbug: Event. Dev: input1, Type: 3, Code: 1, Value: 27349
[   96.311847] evbug: Event. Dev: input1, Type: 0, Code: 0, Value: 0
[   96.510839] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458775
[   96.510844] evbug: Event. Dev: input2, Type: 1, Code: 20, Value: 1
[   96.510846] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   96.600839] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458775
[   96.600844] evbug: Event. Dev: input2, Type: 1, Code: 20, Value: 0
[   96.600847] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   96.700839] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458762
[   96.700844] evbug: Event. Dev: input2, Type: 1, Code: 34, Value: 1
[   96.700846] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   96.810838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458762
[   96.810843] evbug: Event. Dev: input2, Type: 1, Code: 34, Value: 0
[   96.810845] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   97.010841] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458784
[   97.010845] evbug: Event. Dev: input2, Type: 1, Code: 4, Value: 1
[   97.010847] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   97.090839] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458784
[   97.090843] evbug: Event. Dev: input2, Type: 1, Code: 4, Value: 0
[   97.090846] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   97.170840] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458792
[   97.170844] evbug: Event. Dev: input2, Type: 1, Code: 28, Value: 1
[   97.170847] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[   97.181838] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458792
[   97.181842] evbug: Event. Dev: input2, Type: 1, Code: 28, Value: 0
[   97.181845] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  117.400868] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458759
[  117.400881] evbug: Event. Dev: input2, Type: 1, Code: 32, Value: 1
[  117.400883] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  117.490849] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458759
[  117.490853] evbug: Event. Dev: input2, Type: 1, Code: 32, Value: 0
[  117.490856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  117.500849] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458768
[  117.500854] evbug: Event. Dev: input2, Type: 1, Code: 50, Value: 1
[  117.500856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  117.560849] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458760
[  117.560854] evbug: Event. Dev: input2, Type: 1, Code: 18, Value: 1
[  117.560856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  117.590849] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458768
[  117.590853] evbug: Event. Dev: input2, Type: 1, Code: 50, Value: 0
[  117.590856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  117.630850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458774
[  117.630854] evbug: Event. Dev: input2, Type: 1, Code: 31, Value: 1
[  117.630857] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  117.715849] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458760
[  117.715854] evbug: Event. Dev: input2, Type: 1, Code: 18, Value: 0
[  117.715856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  117.724849] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458762
[  117.724853] evbug: Event. Dev: input2, Type: 1, Code: 34, Value: 1
[  117.724855] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  117.784850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458774
[  117.784854] evbug: Event. Dev: input2, Type: 1, Code: 31, Value: 0
[  117.784857] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  117.964849] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458762
[  117.964853] evbug: Event. Dev: input2, Type: 1, Code: 34, Value: 0
[  117.964856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  118.034850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458796
[  118.034854] evbug: Event. Dev: input2, Type: 1, Code: 57, Value: 1
[  118.034856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  118.074849] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458796
[  118.074854] evbug: Event. Dev: input2, Type: 1, Code: 57, Value: 0
[  118.074856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  118.510851] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
[  118.510855] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 1
[  118.510858] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  118.765848] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  118.765854] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  118.805821] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  118.805825] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  118.845820] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  118.845824] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  118.885820] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  118.885824] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  118.925818] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  118.925822] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  118.965818] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  118.965822] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  119.005816] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  119.005819] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  119.045815] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  119.045819] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  119.085813] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  119.085818] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  119.125812] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  119.125816] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  119.130850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458807
[  119.130854] evbug: Event. Dev: input2, Type: 1, Code: 52, Value: 1
[  119.130857] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  119.220850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458807
[  119.220854] evbug: Event. Dev: input2, Type: 1, Code: 52, Value: 0
[  119.220857] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  119.264850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
[  119.264854] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 0
[  119.264856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  119.290852] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458796
[  119.290856] evbug: Event. Dev: input2, Type: 1, Code: 57, Value: 1
[  119.290858] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  119.360850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458796
[  119.360855] evbug: Event. Dev: input2, Type: 1, Code: 57, Value: 0
[  119.360858] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  119.591853] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458764
[  119.591857] evbug: Event. Dev: input2, Type: 1, Code: 23, Value: 1
[  119.591859] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  119.671852] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458764
[  119.671856] evbug: Event. Dev: input2, Type: 1, Code: 23, Value: 0
[  119.671859] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  119.680850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458774
[  119.680854] evbug: Event. Dev: input2, Type: 1, Code: 31, Value: 1
[  119.680856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  119.730851] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458774
[  119.730856] evbug: Event. Dev: input2, Type: 1, Code: 31, Value: 0
[  119.730859] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  119.824851] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458774
[  119.824855] evbug: Event. Dev: input2, Type: 1, Code: 31, Value: 1
[  119.824857] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  119.894852] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458774
[  119.894857] evbug: Event. Dev: input2, Type: 1, Code: 31, Value: 0
[  119.894860] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  119.904850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458776
[  119.904854] evbug: Event. Dev: input2, Type: 1, Code: 22, Value: 1
[  119.904856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  120.000852] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458776
[  120.000856] evbug: Event. Dev: input2, Type: 1, Code: 22, Value: 0
[  120.000858] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  120.040852] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458760
[  120.040856] evbug: Event. Dev: input2, Type: 1, Code: 18, Value: 1
[  120.040858] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  120.130850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458760
[  120.130855] evbug: Event. Dev: input2, Type: 1, Code: 18, Value: 0
[  120.130857] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  120.340850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
[  120.340854] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 1
[  120.340857] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  120.621791] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  120.621796] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  120.661776] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  120.661780] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  120.701775] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  120.701779] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  120.741774] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  120.741778] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  120.781773] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  120.781776] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  120.821772] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  120.821776] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  120.861771] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  120.861775] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  120.901768] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 2
[  120.901772] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 1
[  120.934852] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458797
[  120.934856] evbug: Event. Dev: input2, Type: 1, Code: 12, Value: 1
[  120.934858] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  121.000852] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458797
[  121.000857] evbug: Event. Dev: input2, Type: 1, Code: 12, Value: 0
[  121.000860] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  121.060850] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
[  121.060854] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 0
[  121.060856] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  121.380853] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458775
[  121.380857] evbug: Event. Dev: input2, Type: 1, Code: 20, Value: 1
[  121.380859] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  121.430857] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458775
[  121.430864] evbug: Event. Dev: input2, Type: 1, Code: 20, Value: 0
[  121.430867] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  121.550856] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458762
[  121.550861] evbug: Event. Dev: input2, Type: 1, Code: 34, Value: 1
[  121.550864] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  121.630852] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458762
[  121.630857] evbug: Event. Dev: input2, Type: 1, Code: 34, Value: 0
[  121.630860] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  121.960854] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458784
[  121.960859] evbug: Event. Dev: input2, Type: 1, Code: 4, Value: 1
[  121.960861] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  122.010848] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458784
[  122.010851] evbug: Event. Dev: input2, Type: 1, Code: 4, Value: 0
[  122.010853] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
[  123.814865] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458792
[  123.814872] evbug: Event. Dev: input2, Type: 1, Code: 28, Value: 1
[  123.814874] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0

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

* Re: linux-next20240208: tg3 driver nw interfaces not getting configured
  2024-02-08 11:05     ` Aithal, Srikanth
@ 2024-02-08 14:02       ` Heiner Kallweit
  2024-02-08 15:28         ` Aithal, Srikanth
  0 siblings, 1 reply; 13+ messages in thread
From: Heiner Kallweit @ 2024-02-08 14:02 UTC (permalink / raw)
  To: Aithal, Srikanth, Stephen Rothwell, andrew, Jakub Kicinski
  Cc: Linux Next Mailing List, Linux Regressions, open list

On 08.02.2024 12:05, Aithal, Srikanth wrote:
> On 2/8/2024 4:16 PM, Heiner Kallweit wrote:
>> On 08.02.2024 09:30, Aithal, Srikanth wrote:
>>> Hi,
>>>
>>> On 6.8.0-rc3-next-20240208, the network interfaces are not getting configured.
>>>
>> Thanks for the report. Could you please elaborate on what "not getting
>> configured" means in detail?
>> - Any error in any log?
>> - Any other error message?
>> - Interface doesn't come up or which specific configuration are you missing?
>>
> I am not seeing any errors in the dmesg,
> 
> [    4.019383] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
> [    4.019391] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
> [    4.019394] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
> [    4.019397] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
> [    4.041082] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
> [    4.041087] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
> [    4.041090] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
> [    4.041092] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
> [    4.077483] tg3 0000:c1:00.1 eno8403: renamed from eth1
> [    4.124657] tg3 0000:c1:00.0 eno8303: renamed from eth0
> 
> nmcli says interfaces are disconnected:
> 
> [root@localhost ~]# nmcli
> eno8303: disconnected
>         "Broadcom and subsidiaries NetXtreme BCM5720"
>         ethernet (tg3), D0:8E:79:BB:95:90, hw, mtu 1500
> 
> eno8403: disconnected
>         "Broadcom and subsidiaries NetXtreme BCM5720"
>         ethernet (tg3), D0:8E:79:BB:95:91, hw, mtu 1500
> 
> I am attaching host dmesg.
> 

Thanks. dmesg lists no error. Please send output from the following commands.

ip link
ethtool <if>
ethtool --show-eee <if>

If the interfaces aren't up, please try to bring them up manually and see what happens.
ip link set <if> up


>>> I have 'NetXtreme BCM5720 Gigabit Ethernet PCIe'
>>>         configuration: autonegotiation=on broadcast=yes driver=tg3
>>>
>>> If I revert below commit I am able to get back the interfaces mentioned.
>>>
>>> commit 9bc791341bc9a5c22b94889aa37993bb69faa317
>>> Author: Heiner Kallweit <hkallweit1@gmail.com>
>>> Date:   Sat Feb 3 22:12:50 2024 +0100
>>>
>>>      tg3: convert EEE handling to use linkmode bitmaps
>>>
>>>      Convert EEE handling to use linkmode bitmaps. This prepares for
>>>      removing the legacy bitmaps from struct ethtool_keee.
>>>      No functional change intended.
>>>
>>>      Note: The change to mii_eee_cap1_mod_linkmode_t(tp->eee.advertised, val)
>>>      in tg3_phy_autoneg_cfg() isn't completely obvious, but it doesn't change
>>>      the current functionality.
>>>
>>>      Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
>>>      Reviewed-by: Andrew Lunn <andrew@lunn.ch>
>>>      Link: https://lore.kernel.org/r/0652b910-6bcc-421f-8769-38f7dae5037e@gmail.com
>>>      Signed-off-by: Jakub Kicinski <kuba@kernel.org>
>>>
>>>
>>> The same works fine on 6.8.0-rc3-next-20240207.
>>>
>>> Thanks,
>>> Srikanth Aithal
>>> sraithal@amd.com
>> Heiner


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

* Re: linux-next20240208: tg3 driver nw interfaces not getting configured
  2024-02-08 14:02       ` Heiner Kallweit
@ 2024-02-08 15:28         ` Aithal, Srikanth
  2024-02-08 22:18           ` Heiner Kallweit
  0 siblings, 1 reply; 13+ messages in thread
From: Aithal, Srikanth @ 2024-02-08 15:28 UTC (permalink / raw)
  To: Heiner Kallweit, Stephen Rothwell, andrew, Jakub Kicinski
  Cc: Linux Next Mailing List, Linux Regressions, open list

On 2/8/2024 7:32 PM, Heiner Kallweit wrote:
> On 08.02.2024 12:05, Aithal, Srikanth wrote:
>> On 2/8/2024 4:16 PM, Heiner Kallweit wrote:
>>> On 08.02.2024 09:30, Aithal, Srikanth wrote:
>>>> Hi,
>>>>
>>>> On 6.8.0-rc3-next-20240208, the network interfaces are not getting configured.
>>>>
>>> Thanks for the report. Could you please elaborate on what "not getting
>>> configured" means in detail?
>>> - Any error in any log?
>>> - Any other error message?
>>> - Interface doesn't come up or which specific configuration are you missing?
>>>
>> I am not seeing any errors in the dmesg,
>>
>> [    4.019383] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
>> [    4.019391] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
>> [    4.019394] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
>> [    4.019397] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
>> [    4.041082] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
>> [    4.041087] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
>> [    4.041090] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
>> [    4.041092] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
>> [    4.077483] tg3 0000:c1:00.1 eno8403: renamed from eth1
>> [    4.124657] tg3 0000:c1:00.0 eno8303: renamed from eth0
>>
>> nmcli says interfaces are disconnected:
>>
>> [root@localhost ~]# nmcli
>> eno8303: disconnected
>>          "Broadcom and subsidiaries NetXtreme BCM5720"
>>          ethernet (tg3), D0:8E:79:BB:95:90, hw, mtu 1500
>>
>> eno8403: disconnected
>>          "Broadcom and subsidiaries NetXtreme BCM5720"
>>          ethernet (tg3), D0:8E:79:BB:95:91, hw, mtu 1500
>>
>> I am attaching host dmesg.
>>
> 
> Thanks. dmesg lists no error. Please send output from the following commands.
> 
> ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode 
DEFAULT group default qlen 1000
     link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eno8303: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state 
DOWN mode DEFAULT group default qlen 1000
     link/ether d0:8e:79:bb:95:90 brd ff:ff:ff:ff:ff:ff
     altname enp193s0f0
3: eno8403: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state 
DOWN mode DEFAULT group default qlen 1000
     link/ether d0:8e:79:bb:95:91 brd ff:ff:ff:ff:ff:ff
     altname enp193s0f1

> ethtool <if>
Settings for eno8303:
         Supported ports: [ TP ]
         Supported link modes:   10baseT/Half 10baseT/Full
                                 100baseT/Half 100baseT/Full
                                 1000baseT/Half 1000baseT/Full
         Supported pause frame use: No
         Supports auto-negotiation: Yes
         Supported FEC modes: Not reported
         Advertised link modes:  10baseT/Half 10baseT/Full
                                 100baseT/Half 100baseT/Full
                                 1000baseT/Half 1000baseT/Full
         Advertised pause frame use: No
         Advertised auto-negotiation: Yes
         Advertised FEC modes: Not reported
         Speed: Unknown!
         Duplex: Unknown! (255)
         Auto-negotiation: on
         Port: Twisted Pair
         PHYAD: 1
         Transceiver: internal
         MDI-X: Unknown
         Supports Wake-on: g
         Wake-on: d
         Current message level: 0x000000ff (255)
                                drv probe link timer ifdown ifup rx_err 
tx_err
         Link detected: no

Settings for eno8403:
         Supported ports: [ TP ]
         Supported link modes:   10baseT/Half 10baseT/Full
                                 100baseT/Half 100baseT/Full
                                 1000baseT/Half 1000baseT/Full
         Supported pause frame use: No
         Supports auto-negotiation: Yes
         Supported FEC modes: Not reported
         Advertised link modes:  10baseT/Half 10baseT/Full
                                 100baseT/Half 100baseT/Full
                                 1000baseT/Half 1000baseT/Full
         Advertised pause frame use: No
         Advertised auto-negotiation: Yes
         Advertised FEC modes: Not reported
         Speed: Unknown!
         Duplex: Unknown! (255)
         Auto-negotiation: on
         Port: Twisted Pair
         PHYAD: 2
         Transceiver: internal
         MDI-X: Unknown
         Supports Wake-on: g
         Wake-on: d
         Current message level: 0x000000ff (255)
                                drv probe link timer ifdown ifup rx_err 
tx_err
         Link detected: no

> ethtool --show-eee <if>
EEE settings for eno8403:
         EEE status: enabled - inactive
         Tx LPI: 2047 (us)
         Supported EEE link modes:  100baseT/Full
                                    1000baseT/Full
         Advertised EEE link modes:  100baseT/Full
                                     1000baseT/Full
         Link partner advertised EEE link modes:  Not reported

EEE settings for eno8303:
         EEE status: enabled - inactive
         Tx LPI: 2047 (us)
         Supported EEE link modes:  100baseT/Full
                                    1000baseT/Full
         Advertised EEE link modes:  100baseT/Full
                                     1000baseT/Full
         Link partner advertised EEE link modes:  Not reported

> 
> If the interfaces aren't up, please try to bring them up manually and see what happens.
> ip link set <if> up
Nothing happens.
[root@localhost ~]# ip link set eno8303 up
[root@localhost ~]# ip link set eno8403 up
[root@localhost ~]# ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode 
DEFAULT group default qlen 1000
     link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eno8303: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state 
DOWN mode DEFAULT group default qlen 1000
     link/ether d0:8e:79:bb:95:90 brd ff:ff:ff:ff:ff:ff
     altname enp193s0f0
3: eno8403: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state 
DOWN mode DEFAULT group default qlen 1000
     link/ether d0:8e:79:bb:95:91 brd ff:ff:ff:ff:ff:ff
     altname enp193s0f1

> 
> 
>>>> I have 'NetXtreme BCM5720 Gigabit Ethernet PCIe'
>>>>          configuration: autonegotiation=on broadcast=yes driver=tg3
>>>>
>>>> If I revert below commit I am able to get back the interfaces mentioned.
>>>>
>>>> commit 9bc791341bc9a5c22b94889aa37993bb69faa317
>>>> Author: Heiner Kallweit <hkallweit1@gmail.com>
>>>> Date:   Sat Feb 3 22:12:50 2024 +0100
>>>>
>>>>       tg3: convert EEE handling to use linkmode bitmaps
>>>>
>>>>       Convert EEE handling to use linkmode bitmaps. This prepares for
>>>>       removing the legacy bitmaps from struct ethtool_keee.
>>>>       No functional change intended.
>>>>
>>>>       Note: The change to mii_eee_cap1_mod_linkmode_t(tp->eee.advertised, val)
>>>>       in tg3_phy_autoneg_cfg() isn't completely obvious, but it doesn't change
>>>>       the current functionality.
>>>>
>>>>       Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
>>>>       Reviewed-by: Andrew Lunn <andrew@lunn.ch>
>>>>       Link: https://lore.kernel.org/r/0652b910-6bcc-421f-8769-38f7dae5037e@gmail.com
>>>>       Signed-off-by: Jakub Kicinski <kuba@kernel.org>
>>>>
>>>>
>>>> The same works fine on 6.8.0-rc3-next-20240207.
>>>>
>>>> Thanks,
>>>> Srikanth Aithal
>>>> sraithal@amd.com
>>> Heiner
> 


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

* Re: linux-next20240208: tg3 driver nw interfaces not getting configured
  2024-02-08 15:28         ` Aithal, Srikanth
@ 2024-02-08 22:18           ` Heiner Kallweit
  2024-02-09  3:58             ` Aithal, Srikanth
  2024-02-09 13:39             ` Andrew Lunn
  0 siblings, 2 replies; 13+ messages in thread
From: Heiner Kallweit @ 2024-02-08 22:18 UTC (permalink / raw)
  To: Aithal, Srikanth, Stephen Rothwell, andrew, Jakub Kicinski
  Cc: Linux Next Mailing List, Linux Regressions, open list

On 08.02.2024 16:28, Aithal, Srikanth wrote:
> On 2/8/2024 7:32 PM, Heiner Kallweit wrote:
>> On 08.02.2024 12:05, Aithal, Srikanth wrote:
>>> On 2/8/2024 4:16 PM, Heiner Kallweit wrote:
>>>> On 08.02.2024 09:30, Aithal, Srikanth wrote:
>>>>> Hi,
>>>>>
>>>>> On 6.8.0-rc3-next-20240208, the network interfaces are not getting configured.
>>>>>
>>>> Thanks for the report. Could you please elaborate on what "not getting
>>>> configured" means in detail?
>>>> - Any error in any log?
>>>> - Any other error message?
>>>> - Interface doesn't come up or which specific configuration are you missing?
>>>>
>>> I am not seeing any errors in the dmesg,
>>>
>>> [    4.019383] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
>>> [    4.019391] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
>>> [    4.019394] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
>>> [    4.019397] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
>>> [    4.041082] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
>>> [    4.041087] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
>>> [    4.041090] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
>>> [    4.041092] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
>>> [    4.077483] tg3 0000:c1:00.1 eno8403: renamed from eth1
>>> [    4.124657] tg3 0000:c1:00.0 eno8303: renamed from eth0
>>>
>>> nmcli says interfaces are disconnected:
>>>
>>> [root@localhost ~]# nmcli
>>> eno8303: disconnected
>>>          "Broadcom and subsidiaries NetXtreme BCM5720"
>>>          ethernet (tg3), D0:8E:79:BB:95:90, hw, mtu 1500
>>>
>>> eno8403: disconnected
>>>          "Broadcom and subsidiaries NetXtreme BCM5720"
>>>          ethernet (tg3), D0:8E:79:BB:95:91, hw, mtu 1500
>>>
>>> I am attaching host dmesg.
>>>
>>
>> Thanks. dmesg lists no error. Please send output from the following commands.
>>
>> ip link
> 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
>     link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
> 2: eno8303: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
>     link/ether d0:8e:79:bb:95:90 brd ff:ff:ff:ff:ff:ff
>     altname enp193s0f0
> 3: eno8403: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
>     link/ether d0:8e:79:bb:95:91 brd ff:ff:ff:ff:ff:ff
>     altname enp193s0f1
> 
>> ethtool <if>
> Settings for eno8303:
>         Supported ports: [ TP ]
>         Supported link modes:   10baseT/Half 10baseT/Full
>                                 100baseT/Half 100baseT/Full
>                                 1000baseT/Half 1000baseT/Full
>         Supported pause frame use: No
>         Supports auto-negotiation: Yes
>         Supported FEC modes: Not reported
>         Advertised link modes:  10baseT/Half 10baseT/Full
>                                 100baseT/Half 100baseT/Full
>                                 1000baseT/Half 1000baseT/Full
>         Advertised pause frame use: No
>         Advertised auto-negotiation: Yes
>         Advertised FEC modes: Not reported
>         Speed: Unknown!
>         Duplex: Unknown! (255)
>         Auto-negotiation: on
>         Port: Twisted Pair
>         PHYAD: 1
>         Transceiver: internal
>         MDI-X: Unknown
>         Supports Wake-on: g
>         Wake-on: d
>         Current message level: 0x000000ff (255)
>                                drv probe link timer ifdown ifup rx_err tx_err
>         Link detected: no
> 
> Settings for eno8403:
>         Supported ports: [ TP ]
>         Supported link modes:   10baseT/Half 10baseT/Full
>                                 100baseT/Half 100baseT/Full
>                                 1000baseT/Half 1000baseT/Full
>         Supported pause frame use: No
>         Supports auto-negotiation: Yes
>         Supported FEC modes: Not reported
>         Advertised link modes:  10baseT/Half 10baseT/Full
>                                 100baseT/Half 100baseT/Full
>                                 1000baseT/Half 1000baseT/Full
>         Advertised pause frame use: No
>         Advertised auto-negotiation: Yes
>         Advertised FEC modes: Not reported
>         Speed: Unknown!
>         Duplex: Unknown! (255)
>         Auto-negotiation: on
>         Port: Twisted Pair
>         PHYAD: 2
>         Transceiver: internal
>         MDI-X: Unknown
>         Supports Wake-on: g
>         Wake-on: d
>         Current message level: 0x000000ff (255)
>                                drv probe link timer ifdown ifup rx_err tx_err
>         Link detected: no
> 
>> ethtool --show-eee <if>
> EEE settings for eno8403:
>         EEE status: enabled - inactive
>         Tx LPI: 2047 (us)
>         Supported EEE link modes:  100baseT/Full
>                                    1000baseT/Full
>         Advertised EEE link modes:  100baseT/Full
>                                     1000baseT/Full
>         Link partner advertised EEE link modes:  Not reported
> 
> EEE settings for eno8303:
>         EEE status: enabled - inactive
>         Tx LPI: 2047 (us)
>         Supported EEE link modes:  100baseT/Full
>                                    1000baseT/Full
>         Advertised EEE link modes:  100baseT/Full
>                                     1000baseT/Full
>         Link partner advertised EEE link modes:  Not reported
> 
>>
>> If the interfaces aren't up, please try to bring them up manually and see what happens.
>> ip link set <if> up
> Nothing happens.
> [root@localhost ~]# ip link set eno8303 up
> [root@localhost ~]# ip link set eno8403 up
> [root@localhost ~]# ip link
> 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
>     link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
> 2: eno8303: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
>     link/ether d0:8e:79:bb:95:90 brd ff:ff:ff:ff:ff:ff
>     altname enp193s0f0
> 3: eno8403: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
>     link/ether d0:8e:79:bb:95:91 brd ff:ff:ff:ff:ff:ff
>     altname enp193s0f1
> 
>>
>>
>>>>> I have 'NetXtreme BCM5720 Gigabit Ethernet PCIe'
>>>>>          configuration: autonegotiation=on broadcast=yes driver=tg3
>>>>>
>>>>> If I revert below commit I am able to get back the interfaces mentioned.
>>>>>
>>>>> commit 9bc791341bc9a5c22b94889aa37993bb69faa317
>>>>> Author: Heiner Kallweit <hkallweit1@gmail.com>
>>>>> Date:   Sat Feb 3 22:12:50 2024 +0100
>>>>>
>>>>>       tg3: convert EEE handling to use linkmode bitmaps
>>>>>
>>>>>       Convert EEE handling to use linkmode bitmaps. This prepares for
>>>>>       removing the legacy bitmaps from struct ethtool_keee.
>>>>>       No functional change intended.
>>>>>
>>>>>       Note: The change to mii_eee_cap1_mod_linkmode_t(tp->eee.advertised, val)
>>>>>       in tg3_phy_autoneg_cfg() isn't completely obvious, but it doesn't change
>>>>>       the current functionality.
>>>>>
>>>>>       Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
>>>>>       Reviewed-by: Andrew Lunn <andrew@lunn.ch>
>>>>>       Link: https://lore.kernel.org/r/0652b910-6bcc-421f-8769-38f7dae5037e@gmail.com
>>>>>       Signed-off-by: Jakub Kicinski <kuba@kernel.org>
>>>>>
>>>>>
>>>>> The same works fine on 6.8.0-rc3-next-20240207.
>>>>>
>>>>> Thanks,
>>>>> Srikanth Aithal
>>>>> sraithal@amd.com
>>>> Heiner
>>
> 

Could you please test whether the following fixes the issue for you?

The uninitialized struct ethtool_keee causes the bug because
mii_eee_cap1_mod_linkmode_t() leaves unknown bits as-is.

---
 drivers/net/ethernet/broadcom/tg3.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
index 50f674031..7d0a2f5f3 100644
--- a/drivers/net/ethernet/broadcom/tg3.c
+++ b/drivers/net/ethernet/broadcom/tg3.c
@@ -4616,7 +4616,7 @@ static int tg3_init_5401phy_dsp(struct tg3 *tp)
 
 static bool tg3_phy_eee_config_ok(struct tg3 *tp)
 {
-	struct ethtool_keee eee;
+	struct ethtool_keee eee = {};
 
 	if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
 		return true;
-- 
2.43.0



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

* Re: linux-next20240208: tg3 driver nw interfaces not getting configured
  2024-02-08 22:18           ` Heiner Kallweit
@ 2024-02-09  3:58             ` Aithal, Srikanth
  2024-02-09 13:39             ` Andrew Lunn
  1 sibling, 0 replies; 13+ messages in thread
From: Aithal, Srikanth @ 2024-02-09  3:58 UTC (permalink / raw)
  To: Heiner Kallweit, Stephen Rothwell, andrew, Jakub Kicinski
  Cc: Linux Next Mailing List, Linux Regressions, open list

On 2/9/2024 3:48 AM, Heiner Kallweit wrote:
> On 08.02.2024 16:28, Aithal, Srikanth wrote:
>> On 2/8/2024 7:32 PM, Heiner Kallweit wrote:
>>> On 08.02.2024 12:05, Aithal, Srikanth wrote:
>>>> On 2/8/2024 4:16 PM, Heiner Kallweit wrote:
>>>>> On 08.02.2024 09:30, Aithal, Srikanth wrote:
>>>>>> Hi,
>>>>>>
>>>>>> On 6.8.0-rc3-next-20240208, the network interfaces are not getting configured.
>>>>>>
>>>>> Thanks for the report. Could you please elaborate on what "not getting
>>>>> configured" means in detail?
>>>>> - Any error in any log?
>>>>> - Any other error message?
>>>>> - Interface doesn't come up or which specific configuration are you missing?
>>>>>
>>>> I am not seeing any errors in the dmesg,
>>>>
>>>> [    4.019383] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
>>>> [    4.019391] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
>>>> [    4.019394] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
>>>> [    4.019397] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
>>>> [    4.041082] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
>>>> [    4.041087] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
>>>> [    4.041090] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
>>>> [    4.041092] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
>>>> [    4.077483] tg3 0000:c1:00.1 eno8403: renamed from eth1
>>>> [    4.124657] tg3 0000:c1:00.0 eno8303: renamed from eth0
>>>>
>>>> nmcli says interfaces are disconnected:
>>>>
>>>> [root@localhost ~]# nmcli
>>>> eno8303: disconnected
>>>>           "Broadcom and subsidiaries NetXtreme BCM5720"
>>>>           ethernet (tg3), D0:8E:79:BB:95:90, hw, mtu 1500
>>>>
>>>> eno8403: disconnected
>>>>           "Broadcom and subsidiaries NetXtreme BCM5720"
>>>>           ethernet (tg3), D0:8E:79:BB:95:91, hw, mtu 1500
>>>>
>>>> I am attaching host dmesg.
>>>>
>>>
>>> Thanks. dmesg lists no error. Please send output from the following commands.
>>>
>>> ip link
>> 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
>>      link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
>> 2: eno8303: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
>>      link/ether d0:8e:79:bb:95:90 brd ff:ff:ff:ff:ff:ff
>>      altname enp193s0f0
>> 3: eno8403: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
>>      link/ether d0:8e:79:bb:95:91 brd ff:ff:ff:ff:ff:ff
>>      altname enp193s0f1
>>
>>> ethtool <if>
>> Settings for eno8303:
>>          Supported ports: [ TP ]
>>          Supported link modes:   10baseT/Half 10baseT/Full
>>                                  100baseT/Half 100baseT/Full
>>                                  1000baseT/Half 1000baseT/Full
>>          Supported pause frame use: No
>>          Supports auto-negotiation: Yes
>>          Supported FEC modes: Not reported
>>          Advertised link modes:  10baseT/Half 10baseT/Full
>>                                  100baseT/Half 100baseT/Full
>>                                  1000baseT/Half 1000baseT/Full
>>          Advertised pause frame use: No
>>          Advertised auto-negotiation: Yes
>>          Advertised FEC modes: Not reported
>>          Speed: Unknown!
>>          Duplex: Unknown! (255)
>>          Auto-negotiation: on
>>          Port: Twisted Pair
>>          PHYAD: 1
>>          Transceiver: internal
>>          MDI-X: Unknown
>>          Supports Wake-on: g
>>          Wake-on: d
>>          Current message level: 0x000000ff (255)
>>                                 drv probe link timer ifdown ifup rx_err tx_err
>>          Link detected: no
>>
>> Settings for eno8403:
>>          Supported ports: [ TP ]
>>          Supported link modes:   10baseT/Half 10baseT/Full
>>                                  100baseT/Half 100baseT/Full
>>                                  1000baseT/Half 1000baseT/Full
>>          Supported pause frame use: No
>>          Supports auto-negotiation: Yes
>>          Supported FEC modes: Not reported
>>          Advertised link modes:  10baseT/Half 10baseT/Full
>>                                  100baseT/Half 100baseT/Full
>>                                  1000baseT/Half 1000baseT/Full
>>          Advertised pause frame use: No
>>          Advertised auto-negotiation: Yes
>>          Advertised FEC modes: Not reported
>>          Speed: Unknown!
>>          Duplex: Unknown! (255)
>>          Auto-negotiation: on
>>          Port: Twisted Pair
>>          PHYAD: 2
>>          Transceiver: internal
>>          MDI-X: Unknown
>>          Supports Wake-on: g
>>          Wake-on: d
>>          Current message level: 0x000000ff (255)
>>                                 drv probe link timer ifdown ifup rx_err tx_err
>>          Link detected: no
>>
>>> ethtool --show-eee <if>
>> EEE settings for eno8403:
>>          EEE status: enabled - inactive
>>          Tx LPI: 2047 (us)
>>          Supported EEE link modes:  100baseT/Full
>>                                     1000baseT/Full
>>          Advertised EEE link modes:  100baseT/Full
>>                                      1000baseT/Full
>>          Link partner advertised EEE link modes:  Not reported
>>
>> EEE settings for eno8303:
>>          EEE status: enabled - inactive
>>          Tx LPI: 2047 (us)
>>          Supported EEE link modes:  100baseT/Full
>>                                     1000baseT/Full
>>          Advertised EEE link modes:  100baseT/Full
>>                                      1000baseT/Full
>>          Link partner advertised EEE link modes:  Not reported
>>
>>>
>>> If the interfaces aren't up, please try to bring them up manually and see what happens.
>>> ip link set <if> up
>> Nothing happens.
>> [root@localhost ~]# ip link set eno8303 up
>> [root@localhost ~]# ip link set eno8403 up
>> [root@localhost ~]# ip link
>> 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
>>      link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
>> 2: eno8303: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
>>      link/ether d0:8e:79:bb:95:90 brd ff:ff:ff:ff:ff:ff
>>      altname enp193s0f0
>> 3: eno8403: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
>>      link/ether d0:8e:79:bb:95:91 brd ff:ff:ff:ff:ff:ff
>>      altname enp193s0f1
>>
>>>
>>>
>>>>>> I have 'NetXtreme BCM5720 Gigabit Ethernet PCIe'
>>>>>>           configuration: autonegotiation=on broadcast=yes driver=tg3
>>>>>>
>>>>>> If I revert below commit I am able to get back the interfaces mentioned.
>>>>>>
>>>>>> commit 9bc791341bc9a5c22b94889aa37993bb69faa317
>>>>>> Author: Heiner Kallweit <hkallweit1@gmail.com>
>>>>>> Date:   Sat Feb 3 22:12:50 2024 +0100
>>>>>>
>>>>>>        tg3: convert EEE handling to use linkmode bitmaps
>>>>>>
>>>>>>        Convert EEE handling to use linkmode bitmaps. This prepares for
>>>>>>        removing the legacy bitmaps from struct ethtool_keee.
>>>>>>        No functional change intended.
>>>>>>
>>>>>>        Note: The change to mii_eee_cap1_mod_linkmode_t(tp->eee.advertised, val)
>>>>>>        in tg3_phy_autoneg_cfg() isn't completely obvious, but it doesn't change
>>>>>>        the current functionality.
>>>>>>
>>>>>>        Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
>>>>>>        Reviewed-by: Andrew Lunn <andrew@lunn.ch>
>>>>>>        Link: https://lore.kernel.org/r/0652b910-6bcc-421f-8769-38f7dae5037e@gmail.com
>>>>>>        Signed-off-by: Jakub Kicinski <kuba@kernel.org>
>>>>>>
>>>>>>
>>>>>> The same works fine on 6.8.0-rc3-next-20240207.
>>>>>>
>>>>>> Thanks,
>>>>>> Srikanth Aithal
>>>>>> sraithal@amd.com
>>>>> Heiner
>>>
>>
> 
> Could you please test whether the following fixes the issue for you?
> 
> The uninitialized struct ethtool_keee causes the bug because
> mii_eee_cap1_mod_linkmode_t() leaves unknown bits as-is.
> 
> ---
>   drivers/net/ethernet/broadcom/tg3.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
> index 50f674031..7d0a2f5f3 100644
> --- a/drivers/net/ethernet/broadcom/tg3.c
> +++ b/drivers/net/ethernet/broadcom/tg3.c
> @@ -4616,7 +4616,7 @@ static int tg3_init_5401phy_dsp(struct tg3 *tp)
>   
>   static bool tg3_phy_eee_config_ok(struct tg3 *tp)
>   {
> -	struct ethtool_keee eee;
> +	struct ethtool_keee eee = {};
>   
>   	if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
>   		return true;

This fix on top of next20240208 resolves the issue. Thank you.

Tested-by: Srikanth Aithal <sraithal@amd.com>

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

* Re: linux-next20240208: tg3 driver nw interfaces not getting configured
  2024-02-08 22:18           ` Heiner Kallweit
  2024-02-09  3:58             ` Aithal, Srikanth
@ 2024-02-09 13:39             ` Andrew Lunn
  1 sibling, 0 replies; 13+ messages in thread
From: Andrew Lunn @ 2024-02-09 13:39 UTC (permalink / raw)
  To: Heiner Kallweit
  Cc: Aithal, Srikanth, Stephen Rothwell, Jakub Kicinski,
	Linux Next Mailing List, Linux Regressions, open list

> Could you please test whether the following fixes the issue for you?
> 
> The uninitialized struct ethtool_keee causes the bug because
> mii_eee_cap1_mod_linkmode_t() leaves unknown bits as-is.
> 
> ---
>  drivers/net/ethernet/broadcom/tg3.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
> index 50f674031..7d0a2f5f3 100644
> --- a/drivers/net/ethernet/broadcom/tg3.c
> +++ b/drivers/net/ethernet/broadcom/tg3.c
> @@ -4616,7 +4616,7 @@ static int tg3_init_5401phy_dsp(struct tg3 *tp)
>  
>  static bool tg3_phy_eee_config_ok(struct tg3 *tp)
>  {
> -	struct ethtool_keee eee;
> +	struct ethtool_keee eee = {};

Nice catch.

Please add my Reviewed-by, if you have not already sent the real
patch.

	Andrew

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

* linux-next: Fixes tag needs some work in the netfilter tree
@ 2021-05-23  2:38 Stephen Rothwell
  0 siblings, 0 replies; 13+ messages in thread
From: Stephen Rothwell @ 2021-05-23  2:38 UTC (permalink / raw)
  To: Pablo Neira Ayuso, NetFilter
  Cc: Florian Westphal, Linux Kernel Mailing List, Linux Next Mailing List

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

Hi all,

In commit

  22cbdbcfb61a ("netfilter: conntrack: unregister ipv4 sockopts on error unwind")

Fixes tag

  Fixes: a0ae2562c6c ("netfilter: conntrack: remove l3proto abstraction")

has these problem(s):

  - SHA1 should be at least 12 digits long

This is probably not worth rebasing for, but can be avoided in the
future by setting core.abbrev to 12 (or more) or (for git v2.11 or later)
just making sure it is not set (or set to "auto").

-- 
Cheers,
Stephen Rothwell

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

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

* linux-next: Fixes tag needs some work in the netfilter tree
@ 2021-02-28  0:56 Stephen Rothwell
  0 siblings, 0 replies; 13+ messages in thread
From: Stephen Rothwell @ 2021-02-28  0:56 UTC (permalink / raw)
  To: Pablo Neira Ayuso, NetFilter
  Cc: Vasily Averin, Linux Kernel Mailing List, Linux Next Mailing List

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

Hi all,

In commit

  8e24edddad15 ("netfilter: x_tables: gpf inside xt_find_revision()")

Fixes tag

  Fixes: 656caff20e1 ("netfilter 04/09: x_tables: fix match/target revision lookup")

has these problem(s):

  - SHA1 should be at least 12 digits long

I don't think it is worth rebasing to fix this, but it can be fixed for
future commits by setting core.abbrev to 12 (or more) or (for git v2.11
or later) just making sure it is not set (or set to "auto").

-- 
Cheers,
Stephen Rothwell

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

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

* linux-next: Fixes tag needs some work in the netfilter tree
@ 2019-05-06 13:08 Stephen Rothwell
  0 siblings, 0 replies; 13+ messages in thread
From: Stephen Rothwell @ 2019-05-06 13:08 UTC (permalink / raw)
  To: Pablo Neira Ayuso, NetFilter
  Cc: Linux Next Mailing List, Linux Kernel Mailing List, Kristian Evensen

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

Hi all,

n commit

  4ff6d55abba3 ("netfilter: ctnetlink: Resolve conntrack L3-protocol flush regression")

Fixes tag

  Fixes: 59c08c69c278 ("netfilter: ctnetlink: Support L3 protocol-filter

has these problem(s):

  - Please do not split Fixes tags over more than one line.

-- 
Cheers,
Stephen Rothwell

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

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

end of thread, other threads:[~2024-02-09 13:39 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-08  4:57 linux-next: Fixes tag needs some work in the netfilter tree Stephen Rothwell
2024-02-08  8:07 ` Jozsef Kadlecsik
2024-02-08  8:30 ` linux-next20240208: tg3 driver nw interfaces not getting configured Aithal, Srikanth
2024-02-08 10:46   ` Heiner Kallweit
2024-02-08 11:05     ` Aithal, Srikanth
2024-02-08 14:02       ` Heiner Kallweit
2024-02-08 15:28         ` Aithal, Srikanth
2024-02-08 22:18           ` Heiner Kallweit
2024-02-09  3:58             ` Aithal, Srikanth
2024-02-09 13:39             ` Andrew Lunn
  -- strict thread matches above, loose matches on Subject: below --
2021-05-23  2:38 linux-next: Fixes tag needs some work in the netfilter tree Stephen Rothwell
2021-02-28  0:56 Stephen Rothwell
2019-05-06 13:08 Stephen Rothwell

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