Re: [PATCH] EDAC/skx_common: Fix potential negative values in DIMM size calculation
From: AceLan Kao
Date: Wed Jul 30 2025 - 04:04:41 EST
Zhuo, Qiuxu <qiuxu.zhuo@xxxxxxxxx> 於 2025年7月30日 週三 下午3:56寫道:
>
> Hi AceLan,
>
> > From: AceLan Kao <acelan@xxxxxxxxx> On Behalf Of Chia-Lin Kao (AceLan)
> > Sent: Wednesday, July 30, 2025 2:32 PM
> > To: Luck, Tony <tony.luck@xxxxxxxxx>; Borislav Petkov <bp@xxxxxxxxx>; James
> > Morse <james.morse@xxxxxxx>; Mauro Carvalho Chehab
> > <mchehab@xxxxxxxxxx>; Robert Richter <rric@xxxxxxxxxx>; Zhuo, Qiuxu
> > <qiuxu.zhuo@xxxxxxxxx>; linux-edac@xxxxxxxxxxxxxxx; linux-
> > kernel@xxxxxxxxxxxxxxx
> > Subject: [PATCH] EDAC/skx_common: Fix potential negative values in DIMM
> > size calculation
> >
> > The skx_get_dimm_attr() function can return a negative error code, which is
> > then assigned to 'ranks', 'rows', or 'cols'.
> >
> > [ 9.344702] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
> > [ 9.344703] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
> > [ 9.344703] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
> > [ 9.344704] ------------[ cut here ]------------
> > [ 9.344705] UBSAN: shift-out-of-bounds in
> > drivers/edac/skx_common.c:453:2
> > [ 9.344707] shift exponent -66 is negative
> >
> > The 3 values, rows, cols, and ranks are all -EINVAL(-22), so this line
> > (1ull << (rows + cols + ranks)
> > would become
> > (1ull << ((-22) + (-22) + (-22))
> > Which leads to shift exponent -66 error
> >
> > Add a check to ensure that 'ranks', 'rows', and 'cols' are not negative before
> > they are used in the size calculation. This prevents the use of invalid values.
> >
> > Fixes: 88a242c98740 ("EDAC, skx_common: Separate common code out from
> > skx_edac")
> > Signed-off-by: Chia-Lin Kao (AceLan) <acelan.kao@xxxxxxxxxxxxx>
> >
>
> Thanks for reporting this.
>
> Which CPU did you test it on?
It's an on going project, there is no CPU name on it.
$ lscpu
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Address sizes: 52 bits physical, 57 bits virtual
Byte Order: Little Endian
CPU(s): 172
On-line CPU(s) list: 0-171
Vendor ID: GenuineIntel
Model name: Genuine Intel(R) 0000
CPU family: 6
Model: 173
Thread(s) per core: 2
Core(s) per socket: 86
Socket(s): 1
Stepping: 1
CPU(s) scaling MHz: 18%
CPU max MHz: 4800.0000
CPU min MHz: 800.0000
BogoMIPS: 3800.00
> Would you mind taking a complete dmesg log with the kernel option
> CONFIG_EDAC_DEBUG=y (your current log showed this option had been enabled)?
Sure, here you are.
I masked the product name in the log.
>
> Thanks!
> -Qiuxu
[ 0.000000] Linux version 6.16.0+ (ubuntu@localhost) (gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #2 SMP PREEMPT_DYNAMIC Wed Jul 30 05:50:20 UTC 2025
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.16.0+ root=UUID=626961d2-1480-4e1f-929b-9f064259b9de ro no_console_suspend pm_debug_messages kernel.panic=5 ice.debug=16 module_blacklist=ice crashkernel=2G-4G:320M,4G-32G:512M,32G-64G:1024M,64G-128G:2048M,128G-:4096M
[ 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] x86/tme: not enabled by BIOS
[ 0.000000] x86/CPU: Model not found in latest microcode list
[ 0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000551fefff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000551ff000-0x00000000551fffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000055200000-0x000000005d16ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000005d170000-0x00000000605cffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000605d0000-0x000000006bc09fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000006bc0a000-0x000000006bffefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000006bfff000-0x000000006bffffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000006c000000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f6830000-0x00000000f6830fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f86d0000-0x00000000f86dffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000087effffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000087f000000-0x000000087fffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] efi: EFI v2.7 by Dell
[ 0.000000] efi: ACPI=0x6bffe000 ACPI 2.0=0x6bffe014 SMBIOS=0x5ec41000 SMBIOS 3.0=0x5ec3f000 TPMFinalLog=0x69a7d000 ESRT=0x5ebdae18 MEMATTR=0x4c82b018 MOKvar=0x5ec1a000 INITRD=0x4c82e618 RNG=0x6bcd1018 TPMEventLog=0x6bcc1018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem495: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0x80000000-0x8fffffff] reserved
[ 0.000000] efi: Not removing mem496: MMIO range=[0xf6830000-0xf6830fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem497: MMIO range=[0xf86d0000-0xf86dffff] (64KB) from e820 map
[ 0.000000] SMBIOS 3.5.0 present.
[ 0.000000] DMI: Dell Inc. Dell Machine/, BIOS 0.9.39 07/09/2025
[ 0.000000] DMI: Memory slots populated: 2/16
[ 0.000000] tsc: Detected 1900.000 MHz processor
[ 0.000060] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000063] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000074] last_pfn = 0x87f000 max_arch_pfn = 0x10000000000
[ 0.000085] total RAM covered: 63424M
[ 0.000234] Found optimal setting for mtrr clean up
[ 0.000235] gran_size: 64K chunk_size: 128M num_reg: 6 lose cover RAM: 0G
[ 0.000242] MTRR map: 5 entries (2 fixed + 3 variable; max 22), built from 10 variable MTRRs
[ 0.000245] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.002381] e820: update [mem 0x7c000000-0xffffffff] usable ==> reserved
[ 0.002385] x2apic: enabled by BIOS, switching to x2apic ops
[ 0.002388] last_pfn = 0x6c000 max_arch_pfn = 0x10000000000
[ 0.014604] esrt: Reserving ESRT space from 0x000000005ebdae18 to 0x000000005ebdae50.
[ 0.014703] Using GB pages for direct mapping
[ 0.014963] Secure boot disabled
[ 0.014964] RAMDISK: [mem 0x433dd000-0x45170fff]
[ 0.014973] ACPI: Early table checksum verification disabled
[ 0.014982] ACPI: RSDP 0x000000006BFFE014 000024 (v02 INTEL )
[ 0.014988] ACPI: XSDT 0x000000006BD55188 000154 (v01 INTEL INTEL ID 00000000 INTL 20230628)
[ 0.014999] ACPI: FACP 0x000000006BFFC000 000114 (v06 INTEL INTEL ID 00000000 INTL 20230628)
[ 0.015009] ACPI: DSDT 0x000000006BF6C000 084960 (v02 INTEL INTEL ID 00000003 INTL 20230628)
[ 0.015014] ACPI: FACS 0x000000006BAA6000 000040
[ 0.015018] ACPI: MCFG 0x000000006BFFB000 00003C (v01 INTEL INTEL ID 00000001 INTL 20230628)
[ 0.015022] ACPI: SSDT 0x000000006BFFA000 000156 (v02 INTEL PRMOPREG 00001000 INTL 20230628)
[ 0.015026] ACPI: SSDT 0x000000006BFF9000 000145 (v02 INTEL PRMSAMPL 00001000 INTL 20230628)
[ 0.015030] ACPI: IRDT 0x000000006BFF8000 0002FD (v01 INTEL INTEL ID 00000002 INTL 20230628)
[ 0.015034] ACPI: SSDT 0x000000006BFF7000 0007FC (v02 INTEL RAS_ACPI 00000001 INTL 20230628)
[ 0.015038] ACPI: SSDT 0x000000006BFF6000 0008BB (v02 INTEL ADDRXLAT 00000001 INTL 20230628)
[ 0.015042] ACPI: ERST 0x000000006BFF5000 000230 (v01 INTEL INTEL ID 00000001 INTL 00000001)
[ 0.015046] ACPI: BERT 0x000000006BFF4000 000030 (v01 INTEL INTEL ID 00000001 INTL 00000001)
[ 0.015050] ACPI: HPET 0x000000006BFF3000 000038 (v01 INTEL INTEL ID 00000001 INTL 20230628)
[ 0.015053] ACPI: MSCT 0x000000006BFF2000 0000BC (v01 INTEL INTEL ID 00000001 INTL 20230628)
[ 0.015057] ACPI: WSMT 0x000000006BFF1000 000028 (v01 INTEL INTEL ID 00000000 INTL 20230628)
[ 0.015062] ACPI: APIC 0x000000006BF6B000 000B1E (v06 INTEL INTEL ID 00000000 INTL 20230628)
[ 0.015065] ACPI: SRAT 0x000000006BF65000 005080 (v03 INTEL INTEL ID 00000002 INTL 20230628)
[ 0.015069] ACPI: SLIT 0x000000006BF64000 00002D (v01 INTEL INTEL ID 00000002 INTL 20230628)
[ 0.015073] ACPI: HMAT 0x000000006BF63000 0000F8 (v02 INTEL INTEL ID 00000002 INTL 20230628)
[ 0.015077] ACPI: KEYP 0x000000006BF62000 000068 (v01 INTEL INTEL ID 00000002 INTL 20230628)
[ 0.015081] ACPI: PMTT 0x000000006BF61000 0004F8 (v02 INTEL INTEL ID 00000001 INTL 20230628)
[ 0.015085] ACPI: OEM4 0x000000006BEAC000 0B4441 (v02 INTEL CPU CST 00003000 INTL 20230628)
[ 0.015089] ACPI: OEM1 0x000000006BD9D000 10E469 (v02 INTEL CPU EIST 00003000 INTL 20230628)
[ 0.015092] ACPI: OEM2 0x000000006BD56000 046031 (v02 INTEL CPU HWP 00003000 INTL 20230628)
[ 0.015097] ACPI: SSDT 0x000000006BCEF000 065E50 (v02 INTEL SSDT PM 00004000 INTL 20230628)
[ 0.015100] ACPI: DBG2 0x000000006BFFD000 00005C (v00 INTEL INTEL ID 00000002 INTL 20230628)
[ 0.015104] ACPI: SSDT 0x000000006BCEC000 002C14 (v02 PchGpe PchGpe 00003000 INTL 20230628)
[ 0.015108] ACPI: HEST 0x000000006BCEB000 000174 (v02 INTEL INTEL ID 00000001 INTL 00000001)
[ 0.015112] ACPI: BOOT 0x000000006BCEA000 000028 (v01 DELL CBX3 00000002 INTL 20230628)
[ 0.015116] ACPI: SSDT 0x000000006BCE9000 000632 (v02 INTEL Tpm2Tabl 00001000 INTL 20230628)
[ 0.015120] ACPI: TPM2 0x000000006BCE8000 00004C (v04 INTEL INTEL ID 00000002 INTL 20230628)
[ 0.015124] ACPI: DMAR 0x000000006BCE7000 000484 (v01 INTEL INTEL ID 00000001 INTL 20230628)
[ 0.015127] ACPI: FPDT 0x000000006BCE6000 000044 (v01 INTEL INTEL ID 00000002 INTL 20230628)
[ 0.015131] ACPI: BDAT 0x000000006BCE5000 000030 (v01 INTEL INTEL ID 00000000 INTL 20230628)
[ 0.015135] ACPI: PRMT 0x000000006BCE4000 00018A (v00 INTEL INTEL ID 00000002 INTL 20230628)
[ 0.015139] ACPI: VFCT 0x000000006BCD5000 00E284 (v01 INTEL INTEL ID 00000001 AMD 33504F47)
[ 0.015142] ACPI: UEFI 0x0000000069A76000 00005C (v01 INTEL RstSataV 00000000 00000000)
[ 0.015146] ACPI: UEFI 0x000000006BA95000 00005C (v01 INTEL RstUefiV 00000000 00000000)
[ 0.015150] ACPI: ASF! 0x000000006BCD4000 0000A0 (v32 INTEL INTEL ID 00000002 INTL 20230628)
[ 0.015153] ACPI: OEMD 0x000000006BCD3000 0001D8 (v01 DELL Dell Inc 00000000 DELL 00000000)
[ 0.015157] ACPI: BGRT 0x000000006BCD2000 000038 (v01 INTEL INTEL ID 00000002 INTL 20230628)
[ 0.015160] ACPI: Reserving FACP table memory at [mem 0x6bffc000-0x6bffc113]
[ 0.015162] ACPI: Reserving DSDT table memory at [mem 0x6bf6c000-0x6bff095f]
[ 0.015163] ACPI: Reserving FACS table memory at [mem 0x6baa6000-0x6baa603f]
[ 0.015164] ACPI: Reserving MCFG table memory at [mem 0x6bffb000-0x6bffb03b]
[ 0.015165] ACPI: Reserving SSDT table memory at [mem 0x6bffa000-0x6bffa155]
[ 0.015165] ACPI: Reserving SSDT table memory at [mem 0x6bff9000-0x6bff9144]
[ 0.015166] ACPI: Reserving IRDT table memory at [mem 0x6bff8000-0x6bff82fc]
[ 0.015167] ACPI: Reserving SSDT table memory at [mem 0x6bff7000-0x6bff77fb]
[ 0.015168] ACPI: Reserving SSDT table memory at [mem 0x6bff6000-0x6bff68ba]
[ 0.015169] ACPI: Reserving ERST table memory at [mem 0x6bff5000-0x6bff522f]
[ 0.015170] ACPI: Reserving BERT table memory at [mem 0x6bff4000-0x6bff402f]
[ 0.015171] ACPI: Reserving HPET table memory at [mem 0x6bff3000-0x6bff3037]
[ 0.015172] ACPI: Reserving MSCT table memory at [mem 0x6bff2000-0x6bff20bb]
[ 0.015173] ACPI: Reserving WSMT table memory at [mem 0x6bff1000-0x6bff1027]
[ 0.015173] ACPI: Reserving APIC table memory at [mem 0x6bf6b000-0x6bf6bb1d]
[ 0.015174] ACPI: Reserving SRAT table memory at [mem 0x6bf65000-0x6bf6a07f]
[ 0.015175] ACPI: Reserving SLIT table memory at [mem 0x6bf64000-0x6bf6402c]
[ 0.015176] ACPI: Reserving HMAT table memory at [mem 0x6bf63000-0x6bf630f7]
[ 0.015177] ACPI: Reserving KEYP table memory at [mem 0x6bf62000-0x6bf62067]
[ 0.015178] ACPI: Reserving PMTT table memory at [mem 0x6bf61000-0x6bf614f7]
[ 0.015179] ACPI: Reserving OEM4 table memory at [mem 0x6beac000-0x6bf60440]
[ 0.015180] ACPI: Reserving OEM1 table memory at [mem 0x6bd9d000-0x6beab468]
[ 0.015181] ACPI: Reserving OEM2 table memory at [mem 0x6bd56000-0x6bd9c030]
[ 0.015182] ACPI: Reserving SSDT table memory at [mem 0x6bcef000-0x6bd54e4f]
[ 0.015183] ACPI: Reserving DBG2 table memory at [mem 0x6bffd000-0x6bffd05b]
[ 0.015184] ACPI: Reserving SSDT table memory at [mem 0x6bcec000-0x6bceec13]
[ 0.015185] ACPI: Reserving HEST table memory at [mem 0x6bceb000-0x6bceb173]
[ 0.015186] ACPI: Reserving BOOT table memory at [mem 0x6bcea000-0x6bcea027]
[ 0.015187] ACPI: Reserving SSDT table memory at [mem 0x6bce9000-0x6bce9631]
[ 0.015188] ACPI: Reserving TPM2 table memory at [mem 0x6bce8000-0x6bce804b]
[ 0.015189] ACPI: Reserving DMAR table memory at [mem 0x6bce7000-0x6bce7483]
[ 0.015190] ACPI: Reserving FPDT table memory at [mem 0x6bce6000-0x6bce6043]
[ 0.015191] ACPI: Reserving BDAT table memory at [mem 0x6bce5000-0x6bce502f]
[ 0.015192] ACPI: Reserving PRMT table memory at [mem 0x6bce4000-0x6bce4189]
[ 0.015193] ACPI: Reserving VFCT table memory at [mem 0x6bcd5000-0x6bce3283]
[ 0.015194] ACPI: Reserving UEFI table memory at [mem 0x69a76000-0x69a7605b]
[ 0.015195] ACPI: Reserving UEFI table memory at [mem 0x6ba95000-0x6ba9505b]
[ 0.015196] ACPI: Reserving ASF! table memory at [mem 0x6bcd4000-0x6bcd409f]
[ 0.015197] ACPI: Reserving OEMD table memory at [mem 0x6bcd3000-0x6bcd31d7]
[ 0.015198] ACPI: Reserving BGRT table memory at [mem 0x6bcd2000-0x6bcd2037]
[ 0.015275] APIC: Switched APIC routing to: cluster x2apic
[ 0.015372] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[ 0.015375] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x87fffffff]
[ 0.015384] NUMA: Initialized distance table, cnt=1
[ 0.015389] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x87effffff] -> [mem 0x00001000-0x87effffff]
[ 0.015400] NODE_DATA(0) allocated [mem 0x87efd4280-0x87effefff]
[ 0.015659] crashkernel reserved: 0x000000001b000000 - 0x000000003b000000 (512 MB)
[ 0.015904] Zone ranges:
[ 0.015906] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.015909] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.015911] Normal [mem 0x0000000100000000-0x000000087effffff]
[ 0.015913] Device empty
[ 0.015914] Movable zone start for each node
[ 0.015916] Early memory node ranges
[ 0.015917] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.015919] node 0: [mem 0x0000000000100000-0x00000000551fefff]
[ 0.015920] node 0: [mem 0x0000000055200000-0x000000005d16ffff]
[ 0.015921] node 0: [mem 0x000000006bfff000-0x000000006bffffff]
[ 0.015922] node 0: [mem 0x0000000100000000-0x000000087effffff]
[ 0.015926] Initmem setup node 0 [mem 0x0000000000001000-0x000000087effffff]
[ 0.015937] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.015987] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.020062] On node 0, zone DMA32: 1 pages in unavailable ranges
[ 0.020291] On node 0, zone DMA32: 28303 pages in unavailable ranges
[ 0.072631] On node 0, zone Normal: 16384 pages in unavailable ranges
[ 0.072656] On node 0, zone Normal: 4096 pages in unavailable ranges
[ 0.073046] ACPI: PM-Timer IO Port: 0x508
[ 0.073091] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[ 0.073095] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.073201] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-119
[ 0.073206] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.073209] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.073216] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.073217] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.073234] e820: update [mem 0x4a0df000-0x4a483fff] usable ==> reserved
[ 0.073247] TSC deadline timer available
[ 0.073252] CPU topo: Max. logical packages: 1
[ 0.073253] CPU topo: Max. logical dies: 1
[ 0.073254] CPU topo: Max. dies per package: 1
[ 0.073258] CPU topo: Max. threads per core: 2
[ 0.073260] CPU topo: Num. cores per package: 86
[ 0.073262] CPU topo: Num. threads per package: 172
[ 0.073263] CPU topo: Allowing 172 present CPUs plus 0 hotplug CPUs
[ 0.073287] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.073290] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.073292] PM: hibernation: Registered nosave memory: [mem 0x4a0df000-0x4a483fff]
[ 0.073293] PM: hibernation: Registered nosave memory: [mem 0x551ff000-0x551fffff]
[ 0.073295] PM: hibernation: Registered nosave memory: [mem 0x5d170000-0x6bffefff]
[ 0.073297] PM: hibernation: Registered nosave memory: [mem 0x6c000000-0xffffffff]
[ 0.073299] [mem 0x80000000-0xf682ffff] available for PCI devices
[ 0.073302] Booting paravirtualized kernel on bare hardware
[ 0.073305] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.073321] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:172 nr_cpu_ids:172 nr_node_ids:1
[ 0.085766] percpu: Embedded 84 pages/cpu s221184 r8192 d114688 u524288
[ 0.085778] pcpu-alloc: s221184 r8192 d114688 u524288 alloc=1*2097152
[ 0.085781] pcpu-alloc: [0] 000 001 002 003 [0] 004 005 006 007
[ 0.085788] pcpu-alloc: [0] 008 009 010 011 [0] 012 013 014 015
[ 0.085793] pcpu-alloc: [0] 016 017 018 019 [0] 020 021 022 023
[ 0.085798] pcpu-alloc: [0] 024 025 026 027 [0] 028 029 030 031
[ 0.085802] pcpu-alloc: [0] 032 033 034 035 [0] 036 037 038 039
[ 0.085807] pcpu-alloc: [0] 040 041 042 043 [0] 044 045 046 047
[ 0.085812] pcpu-alloc: [0] 048 049 050 051 [0] 052 053 054 055
[ 0.085816] pcpu-alloc: [0] 056 057 058 059 [0] 060 061 062 063
[ 0.085821] pcpu-alloc: [0] 064 065 066 067 [0] 068 069 070 071
[ 0.085826] pcpu-alloc: [0] 072 073 074 075 [0] 076 077 078 079
[ 0.085830] pcpu-alloc: [0] 080 081 082 083 [0] 084 085 086 087
[ 0.085835] pcpu-alloc: [0] 088 089 090 091 [0] 092 093 094 095
[ 0.085840] pcpu-alloc: [0] 096 097 098 099 [0] 100 101 102 103
[ 0.085845] pcpu-alloc: [0] 104 105 106 107 [0] 108 109 110 111
[ 0.085849] pcpu-alloc: [0] 112 113 114 115 [0] 116 117 118 119
[ 0.085854] pcpu-alloc: [0] 120 121 122 123 [0] 124 125 126 127
[ 0.085859] pcpu-alloc: [0] 128 129 130 131 [0] 132 133 134 135
[ 0.085863] pcpu-alloc: [0] 136 137 138 139 [0] 140 141 142 143
[ 0.085868] pcpu-alloc: [0] 144 145 146 147 [0] 148 149 150 151
[ 0.085873] pcpu-alloc: [0] 152 153 154 155 [0] 156 157 158 159
[ 0.085877] pcpu-alloc: [0] 160 161 162 163 [0] 164 165 166 167
[ 0.085882] pcpu-alloc: [0] 168 169 170 171
[ 0.085928] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.16.0+ root=UUID=626961d2-1480-4e1f-929b-9f064259b9de ro no_console_suspend pm_debug_messages kernel.panic=5 ice.debug=16 module_blacklist=ice crashkernel=2G-4G:320M,4G-32G:512M,32G-64G:1024M,64G-128G:2048M,128G-:4096M
[ 0.086089] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.16.0+", will be passed to user space.
[ 0.086104] printk: log_buf_len individual max cpu contribution: 4096 bytes
[ 0.086105] printk: log_buf_len total cpu_extra contributions: 700416 bytes
[ 0.086106] printk: log_buf_len min size: 262144 bytes
[ 0.086897] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[ 0.086898] printk: early log buf free: 246032(93%)
[ 0.090094] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.091684] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.096400] software IO TLB: area num 256.
[ 0.109539] Fallback order for Node 0: 0
[ 0.109555] Built 1 zonelists, mobility grouping on. Total pages: 8241422
[ 0.109556] Policy zone: Normal
[ 0.109566] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.179371] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=172, Nodes=1
[ 0.210351] ftrace: allocating 56371 entries in 222 pages
[ 0.210354] ftrace: allocated 222 pages with 6 groups
[ 0.213217] Dynamic Preempt: voluntary
[ 0.214608] rcu: Preemptible hierarchical RCU implementation.
[ 0.214610] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=172.
[ 0.214612] Trampoline variant of Tasks RCU enabled.
[ 0.214613] Rude variant of Tasks RCU enabled.
[ 0.214614] Tracing variant of Tasks RCU enabled.
[ 0.214615] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.214616] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=172
[ 0.214835] RCU Tasks: Setting shift to 8 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=172.
[ 0.214856] RCU Tasks Rude: Setting shift to 8 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=172.
[ 0.214875] RCU Tasks Trace: Setting shift to 8 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=172.
[ 0.219723] NR_IRQS: 524544, nr_irqs: 3432, preallocated irqs: 16
[ 0.221015] rcu: srcu_init: Setting srcu_struct sizes to big.
[ 0.222456] Console: colour dummy device 80x25
[ 0.222461] printk: legacy console [tty0] enabled
[ 0.223317] ACPI: Core revision 20250404
[ 0.228183] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 76450417870 ns
[ 0.228348] APIC: Switch to symmetric I/O mode setup
[ 0.228455] DMAR: Host address width 52
[ 0.228459] DMAR: DRHD base: 0x000000907e0000 flags: 0x0
[ 0.228492] DMAR: dmar0: reg_base_addr 907e0000 ver 7:0 cap f9ed008cee780c66 ecap 3fef9ea6f0efdf
[ 0.228517] DMAR: DRHD base: 0x00000090fe0000 flags: 0x0
[ 0.228532] DMAR: dmar1: reg_base_addr 90fe0000 ver 7:0 cap f9ed008cee780c66 ecap 3fef9ea6f0efdf
[ 0.228552] DMAR: DRHD base: 0x0000009c3c0000 flags: 0x0
[ 0.228563] DMAR: dmar2: reg_base_addr 9c3c0000 ver 7:0 cap f9ed008cee780c66 ecap 3fef9ea6f0efdf
[ 0.228582] DMAR: DRHD base: 0x000000b2bc0000 flags: 0x0
[ 0.228592] DMAR: dmar3: reg_base_addr b2bc0000 ver 7:0 cap f9ed008cee780c66 ecap 3fef9ea6f0efdf
[ 0.228611] DMAR: DRHD base: 0x000000bdfc0000 flags: 0x0
[ 0.228623] DMAR: dmar4: reg_base_addr bdfc0000 ver 7:0 cap f9ed008cee780c66 ecap 3fef9ea6f0efdf
[ 0.228642] DMAR: DRHD base: 0x000000c93c0000 flags: 0x0
[ 0.228652] DMAR: dmar5: reg_base_addr c93c0000 ver 7:0 cap f9ed008cee780c66 ecap 3fef9ea6f0efdf
[ 0.228671] DMAR: DRHD base: 0x000000d47c0000 flags: 0x0
[ 0.228680] DMAR: dmar6: reg_base_addr d47c0000 ver 7:0 cap f9ed008cee780c66 ecap 3fef9ea6f0efdf
[ 0.228699] DMAR: DRHD base: 0x000000dfbc0000 flags: 0x0
[ 0.228712] DMAR: dmar7: reg_base_addr dfbc0000 ver 7:0 cap f9ed008cee780c66 ecap 3fef9ea6f0efdf
[ 0.228731] DMAR: DRHD base: 0x000000eafc0000 flags: 0x0
[ 0.228741] DMAR: dmar8: reg_base_addr eafc0000 ver 7:0 cap f9ed008cee780c66 ecap 3fef9ea6f0efdf
[ 0.228761] DMAR: DRHD base: 0x000000f5fc0000 flags: 0x0
[ 0.228769] DMAR: dmar9: reg_base_addr f5fc0000 ver 7:0 cap f9ed008cee780c66 ecap 3fef9ea6f0efdf
[ 0.228792] DMAR: DRHD base: 0x000000a77c0000 flags: 0x1
[ 0.228804] DMAR: dmar10: reg_base_addr a77c0000 ver 7:0 cap f9ed008cee780c66 ecap 3fef9ea6f0efdf
[ 0.228823] DMAR: RMRR base: 0x0000005fd20000 end: 0x0000005fd22fff
[ 0.228830] DMAR: ATSR flags: 0x0
[ 0.228836] DMAR: RHSA base: 0x000000907e0000 proximity domain: 0x0
[ 0.228841] DMAR: RHSA base: 0x00000090fe0000 proximity domain: 0x0
[ 0.228845] DMAR: RHSA base: 0x0000009c3c0000 proximity domain: 0x0
[ 0.228848] DMAR: RHSA base: 0x000000a77c0000 proximity domain: 0x0
[ 0.228851] DMAR: RHSA base: 0x000000b2bc0000 proximity domain: 0x0
[ 0.228853] DMAR: RHSA base: 0x000000bdfc0000 proximity domain: 0x0
[ 0.228856] DMAR: RHSA base: 0x000000c93c0000 proximity domain: 0x0
[ 0.228859] DMAR: RHSA base: 0x000000d47c0000 proximity domain: 0x0
[ 0.228862] DMAR: RHSA base: 0x000000dfbc0000 proximity domain: 0x0
[ 0.228864] DMAR: RHSA base: 0x000000eafc0000 proximity domain: 0x0
[ 0.228867] DMAR: RHSA base: 0x000000f5fc0000 proximity domain: 0x0
[ 0.228870] DMAR: SATC flags: 0x0
[ 0.228876] DMAR-IR: IOAPIC id 8 under DRHD base 0x907e0000 IOMMU 0
[ 0.228880] DMAR-IR: HPET id 0 under DRHD base 0x907e0000
[ 0.228883] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.238074] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.257151] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.261357] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x36c657b5833, max_idle_ns: 881590513399 ns
[ 0.261375] Calibrating delay loop (skipped), value calculated using timer frequency.. 3800.00 BogoMIPS (lpj=1900000)
[ 0.261533] CPU0: Thermal monitoring enabled (TM1)
[ 0.261539] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.262619] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.262622] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.262635] process: using mwait in idle threads
[ 0.262640] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[ 0.262655] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.262660] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.262663] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.262669] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.262715] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.262720] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.262722] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.262726] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[ 0.262729] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[ 0.262732] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[ 0.262734] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.262738] x86/fpu: Supporting XSAVE feature 0x400: 'PASID state'
[ 0.262741] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.262745] x86/fpu: Supporting XSAVE feature 0x20000: 'AMX Tile config'
[ 0.262748] x86/fpu: Supporting XSAVE feature 0x40000: 'AMX Tile data'
[ 0.262751] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.262755] x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
[ 0.262758] x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
[ 0.262761] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[ 0.262764] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
[ 0.262767] x86/fpu: xstate_offset[10]: 2440, xstate_sizes[10]: 8
[ 0.262770] x86/fpu: xstate_offset[11]: 2448, xstate_sizes[11]: 16
[ 0.262773] x86/fpu: xstate_offset[17]: 2496, xstate_sizes[17]: 64
[ 0.262776] x86/fpu: xstate_offset[18]: 2560, xstate_sizes[18]: 8192
[ 0.262779] x86/fpu: Enabled xstate features 0x60ee7, context size is 10752 bytes, using 'compacted' format.
[ 0.314972] Freeing SMP alternatives memory: 52K
[ 0.314985] pid_max: default: 176128 minimum: 1376
[ 0.329761] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
[ 0.329982] landlock: Up and running.
[ 0.329984] Yama: becoming mindful.
[ 0.330239] AppArmor: AppArmor initialized
[ 0.330894] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.331000] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.334618] smpboot: CPU0: Genuine Intel(R) 0000 (family: 0x6, model: 0xad, stepping: 0x1)
[ 0.335212] Performance Events: XSAVE Architectural LBR, PEBS fmt5+-baseline, AnyThread deprecated, Granite Rapids events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.335495] ... version: 5
[ 0.335498] ... bit width: 48
[ 0.335499] ... generic registers: 8
[ 0.335501] ... value mask: 0000ffffffffffff
[ 0.335504] ... max period: 00007fffffffffff
[ 0.335506] ... fixed-purpose events: 4
[ 0.335508] ... event mask: 0001000f000000ff
[ 0.338169] signal: max sigframe size: 11952
[ 0.338230] Estimated ratio of average max frequency by base frequency (times 1024): 2048
[ 0.338278] rcu: Hierarchical SRCU implementation.
[ 0.338282] rcu: Max phase no-delay instances is 400.
[ 0.338402] Timer migration: 3 hierarchy levels; 8 children per group; 3 crossnode level
[ 0.346190] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.348232] smp: Bringing up secondary CPUs ...
[ 0.348499] smpboot: x86: Booting SMP configuration:
[ 0.348502] .... 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 #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 #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 #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 #128 #129 #130 #131 #132 #133 #134 #135 #136 #137 #138 #139 #140 #141 #142 #143 #144 #145 #146 #147 #148 #149 #150 #151 #152 #153 #154 #155 #156 #157 #158 #159 #160 #161 #162 #163 #164 #165 #166 #167 #168 #169 #170 #171
[ 0.690590] smp: Brought up 1 node, 172 CPUs
[ 0.690590] smpboot: Total of 172 processors activated (653600.00 BogoMIPS)
[ 0.699785] Memory: 31429384K/32965688K available (21325K kernel code, 4629K rwdata, 14444K rodata, 5060K init, 4448K bss, 1312308K reserved, 0K cma-reserved)
[ 0.702372] devtmpfs: initialized
[ 0.702529] x86/mm: Memory block size: 128MB
[ 0.710372] ACPI: PM: Registering ACPI NVS region [mem 0x605d0000-0x6bc09fff] (191078400 bytes)
[ 0.712964] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.713704] posixtimers hash table entries: 131072 (order: 9, 2097152 bytes, linear)
[ 0.715209] futex hash table entries: 65536 (4194304 bytes on 1 NUMA nodes, total 4096 KiB, linear).
[ 0.716010] pinctrl core: initialized pinctrl subsystem
[ 0.716371] PM: RTC time: 07:59:48, date: 2025-07-30
[ 0.717927] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.719204] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.720072] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.720892] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.720919] audit: initializing netlink subsys (disabled)
[ 0.720936] audit: type=2000 audit(1753862386.474:1): state=initialized audit_enabled=0 res=1
[ 0.721407] thermal_sys: Registered thermal governor 'fair_share'
[ 0.721411] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.721418] thermal_sys: Registered thermal governor 'step_wise'
[ 0.721420] thermal_sys: Registered thermal governor 'user_space'
[ 0.721422] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.721510] cpuidle: using governor ladder
[ 0.721553] cpuidle: using governor menu
[ 0.723517] Simple Boot Flag at 0x4a set to 0x80
[ 0.724405] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.724410] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.724854] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[ 0.724885] PCI: Using configuration type 1 for base access
[ 0.725208] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.729385] HugeTLB: allocation took 0ms with hugepage_allocation_threads=43
[ 0.729385] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.729385] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.729385] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.729385] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.737831] fbcon: Taking over console
[ 0.737913] PRM: found 3 modules
[ 0.738137] ACPI: Added _OSI(Module Device)
[ 0.738141] ACPI: Added _OSI(Processor Device)
[ 0.738144] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.990546] ACPI: 8 ACPI AML tables successfully acquired and loaded
[ 1.009405] ACPI: Dynamic OEM Table Load:
[ 1.218615] ACPI: Dynamic OEM Table Load:
[ 1.258701] ACPI: Dynamic OEM Table Load:
[ 1.552066] ACPI: EC: EC started
[ 1.552073] ACPI: EC: interrupt blocked
[ 1.560494] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 1.560510] ACPI: \_SB_.ECDV: Boot DSDT EC used to handle transactions
[ 1.560515] ACPI: Interpreter enabled
[ 1.560562] ACPI: PM: (supports S0 S3 S4 S5)
[ 1.560565] ACPI: Using IOAPIC for interrupt routing
[ 1.570310] HEST: Table parsing has been initialized.
[ 1.570513] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[ 1.570523] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 1.570527] PCI: Ignoring E820 reservations for host bridge windows
[ 1.605469] ACPI: Enabled 5 GPEs in block 00 to 7F
[ 1.671957] ACPI: \: Can't tag data node
[ 1.679472] ACPI: \_SB_.PD01.XHCI.RHUB.HS14.BTRT: New power resource
[ 1.679539] ACPI: \_SB_.PD01.XHCI.RHUB.HS14.DBTR: New power resource
[ 1.682522] ACPI: \_SB_.PD01.RP02.P3S0: New power resource
[ 1.684346] ACPI: \_SB_.PD01.RP04.PXSX.WRST: New power resource
[ 1.805737] ACPI: PCI Root Bridge [DI00] (domain 0000 [bus 00])
[ 1.805753] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 1.838232] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 1.838334] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 1.838338] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 1.838611] PCI host bridge to bus 0000:00
[ 1.838615] pci_bus 0000:00: root bus resource [io 0x1000-0x3fff window]
[ 1.838620] pci_bus 0000:00: root bus resource [mem 0x90000000-0x907dffff window]
[ 1.838623] pci_bus 0000:00: root bus resource [mem 0x1e0500000000-0x1e0fffbfffff window]
[ 1.838627] pci_bus 0000:00: root bus resource [io 0x0070-0x0077 window]
[ 1.838630] pci_bus 0000:00: root bus resource [io 0x0780-0x079f window]
[ 1.838633] pci_bus 0000:00: root bus resource [io 0x0400-0x041f window]
[ 1.838635] pci_bus 0000:00: root bus resource [io 0x0500-0x05ff window]
[ 1.838638] pci_bus 0000:00: root bus resource [mem 0xf6800000-0xf6803fff window]
[ 1.838641] pci_bus 0000:00: root bus resource [mem 0xf6830000-0xf6830fff window]
[ 1.838644] pci_bus 0000:00: root bus resource [mem 0xf7000000-0xf7ffffff window]
[ 1.838648] pci_bus 0000:00: root bus resource [bus 00]
[ 1.838684] pci 0000:00:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.838841] pci 0000:00:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.838953] pci 0000:00:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.839063] pci 0000:00:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector
[ 1.839249] pci 0000:00:01.0: [8086:0b25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.839283] pci 0000:00:01.0: BAR 0 [mem 0x1e0fffb40000-0x1e0fffb5ffff 64bit pref]
[ 1.839289] pci 0000:00:01.0: BAR 2 [mem 0x1e0fffb00000-0x1e0fffb3ffff 64bit pref]
[ 1.839490] pci 0000:00:03.0: [8086:09a6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.839527] pci 0000:00:03.0: BAR 0 [mem 0x90200000-0x902fffff]
[ 1.839643] pci 0000:00:03.1: [8086:09a7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.839683] pci 0000:00:03.1: BAR 0 [mem 0x90300000-0x90303fff]
[ 1.839687] pci 0000:00:03.1: BAR 1 [mem 0x90000000-0x901fffff]
[ 1.840321] pci 0000:00:1f.0: [8086:5795] type 00 class 0x060100 conventional PCI endpoint
[ 1.840946] pci 0000:00:1f.4: [8086:5796] type 00 class 0x0c0500 conventional PCI endpoint
[ 1.841376] pci 0000:00:1f.4: BAR 0 [mem 0x1e0fffb60000-0x1e0fffb600ff 64bit]
[ 1.841399] pci 0000:00:1f.4: BAR 4 [io 0x0780-0x079f]
[ 1.841631] pci 0000:00:1f.5: [8086:5794] type 00 class 0x0c8000 conventional PCI endpoint
[ 1.842074] pci 0000:00:1f.5: BAR 0 [mem 0xf6830000-0xf6830fff]
[ 1.842231] pci_bus 0000:00: on NUMA node 0
[ 1.842862] ACPI: PCI Root Bridge [CP00] (domain 0000 [bus 01-02])
[ 1.842868] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 1.855709] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 1.855813] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 1.855816] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[ 1.855883] PCI host bridge to bus 0000:01
[ 1.855887] pci_bus 0000:01: root bus resource [mem 0x1e0000000000-0x1e00ffffffff window]
[ 1.855891] pci_bus 0000:01: root bus resource [bus 01-02]
[ 1.855919] pci_bus 0000:01: on NUMA node 0
[ 1.855969] ACPI: PCI Root Bridge [HQ00] (domain 0000 [bus 03-04])
[ 1.855974] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 1.868834] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 1.868932] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 1.868935] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[ 1.868993] PCI host bridge to bus 0000:03
[ 1.868996] pci_bus 0000:03: root bus resource [mem 0x1e0100000000-0x1e04ffffffff window]
[ 1.869000] pci_bus 0000:03: root bus resource [bus 03-04]
[ 1.869028] pci_bus 0000:03: on NUMA node 0
[ 1.869118] ACPI: PCI Root Bridge [DI02] (domain 0000 [bus 05-09])
[ 1.869122] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 1.882019] acpi PNP0A08:06: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 1.882117] acpi PNP0A08:06: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 1.882120] acpi PNP0A08:06: FADT indicates ASPM is unsupported, using BIOS configuration
[ 1.882201] PCI host bridge to bus 0000:05
[ 1.882204] pci_bus 0000:05: root bus resource [mem 0x90800000-0x90fdffff window]
[ 1.882207] pci_bus 0000:05: root bus resource [mem 0x1e1000000000-0x1e1fffffffff window]
[ 1.882211] pci_bus 0000:05: root bus resource [bus 05-09]
[ 1.882226] pci 0000:05:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.882347] pci 0000:05:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.882466] pci 0000:05:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.882589] pci 0000:05:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector
[ 1.882782] pci_bus 0000:05: on NUMA node 0
[ 1.882930] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 0a-2a])
[ 1.882934] acpi PNP0A08:0c: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 1.896269] acpi PNP0A08:0c: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 1.896519] acpi PNP0A08:0c: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 1.896522] acpi PNP0A08:0c: FADT indicates ASPM is unsupported, using BIOS configuration
[ 1.896734] PCI host bridge to bus 0000:0a
[ 1.896737] pci_bus 0000:0a: root bus resource [io 0x4000-0x5fff window]
[ 1.896740] pci_bus 0000:0a: root bus resource [mem 0x91000000-0x9c3bffff window]
[ 1.896744] pci_bus 0000:0a: root bus resource [mem 0x1e2000000000-0x1e2fffffffff window]
[ 1.896747] pci_bus 0000:0a: root bus resource [bus 0a-2a]
[ 1.896762] pci 0000:0a:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.896877] pci 0000:0a:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.897004] pci 0000:0a:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.897122] pci 0000:0a:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector
[ 1.897307] pci 0000:0a:02.0: [8086:0db0] type 01 class 0x060400 PCIe Root Port
[ 1.897331] pci 0000:0a:02.0: BAR 0 [mem 0x1e2e10000000-0x1e2e1000ffff 64bit]
[ 1.897337] pci 0000:0a:02.0: PCI bridge to [bus 0b-0d]
[ 1.897343] pci 0000:0a:02.0: bridge window [io 0x4000-0x4fff]
[ 1.897347] pci 0000:0a:02.0: bridge window [mem 0x91000000-0x912fffff]
[ 1.897358] pci 0000:0a:02.0: bridge window [mem 0x1e2c00000000-0x1e2e0fffffff 64bit pref]
[ 1.897481] pci 0000:0a:02.0: PME# supported from D0 D3hot D3cold
[ 1.897554] pci 0000:0a:02.0: PTM enabled (root), 2ns granularity
[ 1.898222] pci 0000:0b:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
[ 1.898257] pci 0000:0b:00.0: BAR 0 [mem 0x91200000-0x91203fff]
[ 1.898264] pci 0000:0b:00.0: PCI bridge to [bus 0c-0d]
[ 1.898273] pci 0000:0b:00.0: bridge window [io 0x4000-0x4fff]
[ 1.898279] pci 0000:0b:00.0: bridge window [mem 0x91000000-0x911fffff]
[ 1.898294] pci 0000:0b:00.0: bridge window [mem 0x1e2c00000000-0x1e2e0fffffff 64bit pref]
[ 1.898410] pci 0000:0b:00.0: PME# supported from D0 D3hot D3cold
[ 1.898671] pci 0000:0a:02.0: PCI bridge to [bus 0b-0d]
[ 1.898749] pci 0000:0c:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
[ 1.898787] pci 0000:0c:00.0: PCI bridge to [bus 0d]
[ 1.898796] pci 0000:0c:00.0: bridge window [io 0x4000-0x4fff]
[ 1.898802] pci 0000:0c:00.0: bridge window [mem 0x91000000-0x911fffff]
[ 1.898817] pci 0000:0c:00.0: bridge window [mem 0x1e2c00000000-0x1e2e0fffffff 64bit pref]
[ 1.898942] pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold
[ 1.899153] pci 0000:0b:00.0: PCI bridge to [bus 0c-0d]
[ 1.899233] pci 0000:0d:00.0: [1002:7499] type 00 class 0x030000 PCIe Legacy Endpoint
[ 1.899291] pci 0000:0d:00.0: BAR 0 [mem 0x1e2c00000000-0x1e2dffffffff 64bit pref]
[ 1.899297] pci 0000:0d:00.0: BAR 2 [mem 0x1e2e00000000-0x1e2e0fffffff 64bit pref]
[ 1.899302] pci 0000:0d:00.0: BAR 4 [io 0x4000-0x40ff]
[ 1.899306] pci 0000:0d:00.0: BAR 5 [mem 0x91000000-0x910fffff]
[ 1.899310] pci 0000:0d:00.0: ROM [mem 0xfffe0000-0xffffffff pref]
[ 1.899445] pci 0000:0d:00.0: PME# supported from D1 D2 D3hot D3cold
[ 1.899682] pci 0000:0d:00.1: [1002:ab30] type 00 class 0x040300 PCIe Legacy Endpoint
[ 1.899735] pci 0000:0d:00.1: BAR 0 [mem 0x91100000-0x91103fff]
[ 1.899836] pci 0000:0d:00.1: PME# supported from D1 D2 D3hot D3cold
[ 1.899996] pci 0000:0c:00.0: PCI bridge to [bus 0d]
[ 1.900039] pci_bus 0000:0a: on NUMA node 0
[ 1.900331] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 2b])
[ 1.900336] acpi PNP0A08:0d: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 1.913585] acpi PNP0A08:0d: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 1.913831] acpi PNP0A08:0d: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 1.913834] acpi PNP0A08:0d: FADT indicates ASPM is unsupported, using BIOS configuration
[ 1.913892] PCI host bridge to bus 0000:2b
[ 1.913896] pci_bus 0000:2b: root bus resource [bus 2b]
[ 1.913911] pci 0000:2b:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.914038] pci 0000:2b:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.914149] pci 0000:2b:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.914263] pci 0000:2b:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector
[ 1.914443] pci_bus 0000:2b: on NUMA node 0
[ 1.914571] ACPI: PCI Root Bridge [PD01] (domain 0000 [bus 2c-44])
[ 1.914577] acpi PNP0A08:0e: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 1.927765] acpi PNP0A08:0e: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 1.928019] acpi PNP0A08:0e: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 1.928022] acpi PNP0A08:0e: FADT indicates ASPM is unsupported, using BIOS configuration
[ 1.929576] PCI host bridge to bus 0000:2c
[ 1.929581] pci_bus 0000:2c: root bus resource [mem 0x000a0000-0x000bffff window]
[ 1.929584] pci_bus 0000:2c: root bus resource [io 0x6000-0x7fff window]
[ 1.929587] pci_bus 0000:2c: root bus resource [io 0x03b0-0x03bb window]
[ 1.929590] pci_bus 0000:2c: root bus resource [io 0x03c0-0x03df window]
[ 1.929593] pci_bus 0000:2c: root bus resource [mem 0x9c400000-0xa66fffff window]
[ 1.929596] pci_bus 0000:2c: root bus resource [mem 0x1e3000000000-0x1e3fefffffff window]
[ 1.929599] pci_bus 0000:2c: root bus resource [bus 2c-44]
[ 1.929713] pci 0000:2c:14.0: [8086:7f6e] type 00 class 0x0c0330 conventional PCI endpoint
[ 1.929773] pci 0000:2c:14.0: BAR 0 [mem 0x1e3fee400000-0x1e3fee40ffff 64bit]
[ 1.929839] pci 0000:2c:14.0: PME# supported from D3hot D3cold
[ 1.930531] pci 0000:2c:14.5: [8086:7f2f] type 00 class 0x000000 PCIe Root Complex Integrated Endpoint
[ 1.931104] pci 0000:2c:15.0: [8086:7f4c] type 00 class 0x0c8000 conventional PCI endpoint
[ 1.931217] pci 0000:2c:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 1.941708] pci 0000:2c:15.2: [8086:7f4e] type 00 class 0x0c8000 conventional PCI endpoint
[ 1.941800] pci 0000:2c:15.2: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 1.952713] pci 0000:2c:16.0: [8086:7f68] type 00 class 0x078000 conventional PCI endpoint
[ 1.952782] pci 0000:2c:16.0: BAR 0 [mem 0x1e3fee415000-0x1e3fee415fff 64bit]
[ 1.952852] pci 0000:2c:16.0: PME# supported from D3hot
[ 1.953630] pci 0000:2c:16.3: [8086:7f6b] type 00 class 0x070002 conventional PCI endpoint
[ 1.953704] pci 0000:2c:16.3: BAR 0 [io 0x6048-0x604f]
[ 1.953709] pci 0000:2c:16.3: BAR 1 [mem 0x9d825000-0x9d825fff]
[ 1.953868] pci 0000:2c:17.0: [8086:2826] type 00 class 0x010400 conventional PCI endpoint
[ 1.953928] pci 0000:2c:17.0: BAR 0 [mem 0x9d820000-0x9d821fff]
[ 1.953933] pci 0000:2c:17.0: BAR 1 [mem 0x9d824000-0x9d8240ff]
[ 1.953937] pci 0000:2c:17.0: BAR 2 [io 0x6040-0x6047]
[ 1.953941] pci 0000:2c:17.0: BAR 3 [io 0x6050-0x6053]
[ 1.953945] pci 0000:2c:17.0: BAR 4 [io 0x6020-0x603f]
[ 1.953949] pci 0000:2c:17.0: BAR 5 [mem 0x9d823000-0x9d8237ff]
[ 1.954003] pci 0000:2c:17.0: PME# supported from D3hot
[ 1.954802] pci 0000:2c:1b.0: [8086:7f44] type 01 class 0x060400 PCIe Root Port
[ 1.954840] pci 0000:2c:1b.0: PCI bridge to [bus 2d]
[ 1.954850] pci 0000:2c:1b.0: bridge window [mem 0x9c400000-0x9c8fffff]
[ 1.954969] pci 0000:2c:1b.0: PME# supported from D0 D3hot D3cold
[ 1.956025] pci 0000:2c:1c.0: [8086:7f39] type 01 class 0x060400 PCIe Root Port
[ 1.956063] pci 0000:2c:1c.0: PCI bridge to [bus 2e]
[ 1.956072] pci 0000:2c:1c.0: bridge window [mem 0x9cf00000-0x9d6fffff]
[ 1.956088] pci 0000:2c:1c.0: bridge window [mem 0x1e3fea400000-0x1e3fee3fffff 64bit pref]
[ 1.956196] pci 0000:2c:1c.0: PME# supported from D0 D3hot D3cold
[ 1.957210] pci 0000:2c:1c.3: [8086:7f3b] type 01 class 0x060400 PCIe Root Port
[ 1.957248] pci 0000:2c:1c.3: PCI bridge to [bus 2f]
[ 1.957257] pci 0000:2c:1c.3: bridge window [mem 0x9ca00000-0x9ccfffff]
[ 1.957380] pci 0000:2c:1c.3: PME# supported from D0 D3hot D3cold
[ 1.958398] pci 0000:2c:1c.4: [8086:7f3c] type 01 class 0x060400 PCIe Root Port
[ 1.958436] pci 0000:2c:1c.4: PCI bridge to [bus 30]
[ 1.958458] pci 0000:2c:1c.4: bridge window [mem 0x1e3fe6000000-0x1e3fea0fffff 64bit pref]
[ 1.958574] pci 0000:2c:1c.4: PME# supported from D0 D3hot D3cold
[ 1.959645] pci 0000:2c:1d.0: [8086:7f30] type 01 class 0x060400 PCIe Root Port
[ 1.959737] pci 0000:2c:1d.0: PCI bridge to [bus 31]
[ 1.959757] pci 0000:2c:1d.0: bridge window [mem 0x9cd00000-0x9cefffff]
[ 1.960058] pci 0000:2c:1d.0: PME# supported from D0 D3hot D3cold
[ 1.961262] pci 0000:2c:1f.0: [8086:7f11] type 00 class 0x060100 conventional PCI endpoint
[ 1.961624] pci 0000:2c:1f.3: [8086:7f50] type 00 class 0x040300 conventional PCI endpoint
[ 1.961760] pci 0000:2c:1f.3: BAR 0 [mem 0x1e3fee410000-0x1e3fee413fff 64bit]
[ 1.961784] pci 0000:2c:1f.3: BAR 4 [mem 0x1e3fea200000-0x1e3fea3fffff 64bit]
[ 1.961883] pci 0000:2c:1f.3: PME# supported from D3hot D3cold
[ 1.962024] pci 0000:2c:1f.4: [8086:7f23] type 00 class 0x0c0500 conventional PCI endpoint
[ 1.962102] pci 0000:2c:1f.4: BAR 0 [mem 0x1e3fee414000-0x1e3fee4140ff 64bit]
[ 1.962113] pci 0000:2c:1f.4: BAR 4 [io 0x6000-0x601f]
[ 1.962202] pci 0000:2c:1f.5: [8086:7f24] type 00 class 0x0c8000 conventional PCI endpoint
[ 1.962374] pci 0000:2c:1f.5: BAR 0 [mem 0x9d822000-0x9d822fff]
[ 1.962506] pci 0000:2c:1f.6: [8086:550c] type 00 class 0x020000 conventional PCI endpoint
[ 1.962568] pci 0000:2c:1f.6: BAR 0 [mem 0x9d800000-0x9d81ffff]
[ 1.962625] pci 0000:2c:1f.6: PME# supported from D0 D3hot D3cold
[ 1.963022] pci 0000:2d:00.0: [1d6a:04c0] type 00 class 0x020000 PCIe Endpoint
[ 1.963107] pci 0000:2d:00.0: BAR 0 [mem 0x9c800000-0x9c87ffff 64bit]
[ 1.963114] pci 0000:2d:00.0: BAR 2 [mem 0x9c880000-0x9c880fff 64bit]
[ 1.963121] pci 0000:2d:00.0: BAR 4 [mem 0x9c400000-0x9c7fffff 64bit]
[ 1.963126] pci 0000:2d:00.0: ROM [mem 0xfffe0000-0xffffffff pref]
[ 1.963321] pci 0000:2d:00.0: supports D1 D2
[ 1.963324] pci 0000:2d:00.0: PME# supported from D0 D1 D3hot D3cold
[ 1.963628] pci 0000:2d:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x4 link at 0000:2c:1b.0 (capable of 63.012 Gb/s with 16.0 GT/s PCIe x4 link)
[ 1.963756] pci 0000:2c:1b.0: PCI bridge to [bus 2d]
[ 1.963876] pci 0000:2e:00.0: [10ec:5264] type 00 class 0xff0000 PCIe Endpoint
[ 1.963956] pci 0000:2e:00.0: BAR 1 [mem 0x9cf00000-0x9cf00fff]
[ 1.964094] pci 0000:2e:00.0: supports D1 D2
[ 1.964097] pci 0000:2e:00.0: PME# supported from D1 D2 D3hot D3cold
[ 1.964369] pci 0000:2c:1c.0: PCI bridge to [bus 2e]
[ 1.964481] pci 0000:2f:00.0: [14c3:7925] type 00 class 0x028000 PCIe Endpoint
[ 1.964566] pci 0000:2f:00.0: BAR 0 [mem 0x9ca00000-0x9cbfffff 64bit]
[ 1.964573] pci 0000:2f:00.0: BAR 2 [mem 0x9cc00000-0x9cc07fff 64bit]
[ 1.964713] pci 0000:2f:00.0: PME# supported from D0 D3hot D3cold
[ 1.965888] pci 0000:2c:1c.3: PCI bridge to [bus 2f]
[ 1.966007] pci 0000:30:00.0: [8086:159b] type 00 class 0x020000 PCIe Endpoint
[ 1.966076] pci 0000:30:00.0: BAR 0 [mem 0x1e3fe8000000-0x1e3fe9ffffff 64bit pref]
[ 1.966085] pci 0000:30:00.0: BAR 3 [mem 0x1e3fea010000-0x1e3fea01ffff 64bit pref]
[ 1.966092] pci 0000:30:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[ 1.966406] pci 0000:30:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:2c:1c.4 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
[ 1.966576] pci 0000:30:00.1: [8086:159b] type 00 class 0x020000 PCIe Endpoint
[ 1.966645] pci 0000:30:00.1: BAR 0 [mem 0x1e3fe6000000-0x1e3fe7ffffff 64bit pref]
[ 1.966653] pci 0000:30:00.1: BAR 3 [mem 0x1e3fea000000-0x1e3fea00ffff 64bit pref]
[ 1.966659] pci 0000:30:00.1: ROM [mem 0xfff00000-0xffffffff pref]
[ 1.966994] pci 0000:2c:1c.4: PCI bridge to [bus 30]
[ 1.967416] pci 0000:31:00.0: [8086:125b] type 00 class 0x020000 PCIe Endpoint
[ 1.967499] pci 0000:31:00.0: BAR 0 [mem 0x9cd00000-0x9cdfffff]
[ 1.967508] pci 0000:31:00.0: BAR 3 [mem 0x9ce00000-0x9ce03fff]
[ 1.967517] pci 0000:31:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[ 1.967660] pci 0000:31:00.0: PME# supported from D0 D3hot D3cold
[ 1.968371] pci 0000:2c:1d.0: PCI bridge to [bus 31]
[ 1.968434] pci_bus 0000:2c: on NUMA node 0
[ 1.969468] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 45-5e])
[ 1.969473] acpi PNP0A08:0f: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 1.982858] acpi PNP0A08:0f: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 1.983104] acpi PNP0A08:0f: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 1.983107] acpi PNP0A08:0f: FADT indicates ASPM is unsupported, using BIOS configuration
[ 1.983308] PCI host bridge to bus 0000:45
[ 1.983312] pci_bus 0000:45: root bus resource [io 0x8000-0x9fff window]
[ 1.983315] pci_bus 0000:45: root bus resource [mem 0xa7800000-0xb2bbffff window]
[ 1.983318] pci_bus 0000:45: root bus resource [mem 0x1e4000000000-0x1e4fffffffff window]
[ 1.983322] pci_bus 0000:45: root bus resource [bus 45-5e]
[ 1.983337] pci 0000:45:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.983454] pci 0000:45:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.983568] pci 0000:45:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 1.983678] pci 0000:45:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector
[ 1.983856] pci 0000:45:02.0: [8086:0db0] type 01 class 0x060400 PCIe Root Port
[ 1.983880] pci 0000:45:02.0: BAR 0 [mem 0x1e4ffff10000-0x1e4ffff1ffff 64bit]
[ 1.983885] pci 0000:45:02.0: PCI bridge to [bus 46]
[ 1.983900] pci 0000:45:02.0: bridge window [mem 0x1e4fffe00000-0x1e4fffefffff 64bit pref]
[ 1.984013] pci 0000:45:02.0: PME# supported from D0 D3hot D3cold
[ 1.984080] pci 0000:45:02.0: PTM enabled (root), 2ns granularity
[ 1.984486] pci 0000:45:06.0: [8086:0db2] type 01 class 0x060400 PCIe Root Port
[ 1.984509] pci 0000:45:06.0: BAR 0 [mem 0x1e4ffff00000-0x1e4ffff0ffff 64bit]
[ 1.984514] pci 0000:45:06.0: PCI bridge to [bus 47]
[ 1.984521] pci 0000:45:06.0: bridge window [mem 0xa7800000-0xa78fffff]
[ 1.984639] pci 0000:45:06.0: PME# supported from D0 D3hot D3cold
[ 1.984705] pci 0000:45:06.0: PTM enabled (root), 2ns granularity
[ 1.985531] pci 0000:46:00.0: [1000:00a5] type 00 class 0x010400 PCIe Endpoint
[ 1.985902] pci 0000:46:00.0: BAR 0 [mem 0x1e4fffe00000-0x1e4fffe03fff 64bit pref]
[ 1.986790] pci 0000:46:00.0: PME# supported from D0 D3hot D3cold
[ 1.987748] pci 0000:46:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:45:02.0 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
[ 1.990446] pci 0000:45:02.0: PCI bridge to [bus 46]
[ 1.990696] pci 0000:47:00.0: [1b21:2142] type 00 class 0x0c0330 PCIe Legacy Endpoint
[ 1.990753] pci 0000:47:00.0: BAR 0 [mem 0xa7800000-0xa7807fff 64bit]
[ 1.990852] pci 0000:47:00.0: PME# supported from D0 D3hot D3cold
[ 1.991040] pci 0000:45:06.0: PCI bridge to [bus 47]
[ 1.991060] pci_bus 0000:45: on NUMA node 0
[ 1.991345] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus 5f-78])
[ 1.991350] acpi PNP0A08:10: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 2.004613] acpi PNP0A08:10: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 2.004863] acpi PNP0A08:10: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 2.004866] acpi PNP0A08:10: FADT indicates ASPM is unsupported, using BIOS configuration
[ 2.005067] PCI host bridge to bus 0000:5f
[ 2.005071] pci_bus 0000:5f: root bus resource [io 0xa000-0xafff window]
[ 2.005074] pci_bus 0000:5f: root bus resource [mem 0xb2c00000-0xbdfbffff window]
[ 2.005077] pci_bus 0000:5f: root bus resource [mem 0x1e5000000000-0x1e5fffffffff window]
[ 2.005080] pci_bus 0000:5f: root bus resource [bus 5f-78]
[ 2.005096] pci 0000:5f:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.005213] pci 0000:5f:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.005322] pci 0000:5f:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.005439] pci 0000:5f:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector
[ 2.005622] pci_bus 0000:5f: on NUMA node 0
[ 2.006441] ACPI: PCI Root Bridge [PC04] (domain 0000 [bus 79-92])
[ 2.006441] acpi PNP0A08:11: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 2.019253] acpi PNP0A08:11: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 2.019497] acpi PNP0A08:11: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 2.019501] acpi PNP0A08:11: FADT indicates ASPM is unsupported, using BIOS configuration
[ 2.019711] PCI host bridge to bus 0000:79
[ 2.019715] pci_bus 0000:79: root bus resource [io 0xb000-0xbfff window]
[ 2.019718] pci_bus 0000:79: root bus resource [mem 0xbe000000-0xc93bffff window]
[ 2.019721] pci_bus 0000:79: root bus resource [mem 0x1e6000000000-0x1e6fffffffff window]
[ 2.019725] pci_bus 0000:79: root bus resource [bus 79-92]
[ 2.019741] pci 0000:79:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.019866] pci 0000:79:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.019996] pci 0000:79:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.020124] pci 0000:79:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector
[ 2.020299] pci 0000:79:00.5: [8086:28c0] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 2.020339] pci 0000:79:00.5: BAR 0 [mem 0x1e6ffc000000-0x1e6ffdffffff 64bit pref]
[ 2.020343] pci 0000:79:00.5: BAR 2 [mem 0xc0000000-0xc3ffffff]
[ 2.020349] pci 0000:79:00.5: BAR 4 [mem 0x1e6ffe000000-0x1e6ffe1fffff 64bit]
[ 2.020446] pci 0000:79:02.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.020820] pci 0000:79:04.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.021180] pci 0000:79:06.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.021540] pci 0000:79:08.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.021915] pci_bus 0000:79: on NUMA node 0
[ 2.022211] ACPI: PCI Root Bridge [PC05] (domain 0000 [bus 93-ac])
[ 2.022216] acpi PNP0A08:12: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 2.035530] acpi PNP0A08:12: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 2.035774] acpi PNP0A08:12: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 2.035778] acpi PNP0A08:12: FADT indicates ASPM is unsupported, using BIOS configuration
[ 2.035977] PCI host bridge to bus 0000:93
[ 2.035981] pci_bus 0000:93: root bus resource [io 0xc000-0xcfff window]
[ 2.035984] pci_bus 0000:93: root bus resource [mem 0xc9400000-0xd47bffff window]
[ 2.035987] pci_bus 0000:93: root bus resource [mem 0x1e7000000000-0x1e7fffffffff window]
[ 2.035991] pci_bus 0000:93: root bus resource [bus 93-ac]
[ 2.036006] pci 0000:93:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.036134] pci 0000:93:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.036254] pci 0000:93:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.036377] pci 0000:93:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector
[ 2.036542] pci 0000:93:00.5: [8086:28c0] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 2.036582] pci 0000:93:00.5: BAR 0 [mem 0x1e7ffc000000-0x1e7ffdffffff 64bit pref]
[ 2.036586] pci 0000:93:00.5: BAR 2 [mem 0xcc000000-0xcfffffff]
[ 2.036592] pci 0000:93:00.5: BAR 4 [mem 0x1e7ffe000000-0x1e7ffe1fffff 64bit]
[ 2.036689] pci 0000:93:02.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.037058] pci 0000:93:04.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.037418] pci 0000:93:06.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.037779] pci 0000:93:08.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.038153] pci_bus 0000:93: on NUMA node 0
[ 2.038429] ACPI: PCI Root Bridge [PC06] (domain 0000 [bus ad-c6])
[ 2.038434] acpi PNP0A08:13: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 2.051736] acpi PNP0A08:13: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 2.051983] acpi PNP0A08:13: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 2.051986] acpi PNP0A08:13: FADT indicates ASPM is unsupported, using BIOS configuration
[ 2.052192] PCI host bridge to bus 0000:ad
[ 2.052196] pci_bus 0000:ad: root bus resource [io 0xd000-0xdfff window]
[ 2.052199] pci_bus 0000:ad: root bus resource [mem 0xd4800000-0xdfbbffff window]
[ 2.052203] pci_bus 0000:ad: root bus resource [mem 0x1e8000000000-0x1e8fffffffff window]
[ 2.052206] pci_bus 0000:ad: root bus resource [bus ad-c6]
[ 2.052228] pci 0000:ad:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.052339] pci 0000:ad:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.052449] pci 0000:ad:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.052564] pci 0000:ad:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector
[ 2.052728] pci 0000:ad:00.5: [8086:28c0] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 2.052764] pci 0000:ad:00.5: BAR 0 [mem 0x1e8ffa000000-0x1e8ffbffffff 64bit pref]
[ 2.052768] pci 0000:ad:00.5: BAR 2 [mem 0xd8000000-0xdbffffff]
[ 2.052774] pci 0000:ad:00.5: BAR 4 [mem 0x1e8ffec00000-0x1e8ffedfffff 64bit]
[ 2.052889] pci 0000:ad:02.0: [8086:0db0] type 01 class 0x060400 PCIe Root Port
[ 2.052916] pci 0000:ad:02.0: BAR 0 [mem 0x1e8ffee00000-0x1e8ffee0ffff 64bit]
[ 2.052921] pci 0000:ad:02.0: PCI bridge to [bus ae]
[ 2.052937] pci 0000:ad:02.0: bridge window [mem 0x1e8ffc000000-0x1e8ffeafffff 64bit pref]
[ 2.053074] pci 0000:ad:02.0: PME# supported from D0 D3hot D3cold
[ 2.053158] pci 0000:ad:02.0: PTM enabled (root), 2ns granularity
[ 2.053554] pci 0000:ad:06.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.053908] pci 0000:ad:08.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.054738] pci 0000:ae:00.0: [8086:15ff] type 00 class 0x020000 PCIe Endpoint
[ 2.054794] pci 0000:ae:00.0: BAR 0 [mem 0x1e8ffd000000-0x1e8ffdffffff 64bit pref]
[ 2.054801] pci 0000:ae:00.0: BAR 3 [mem 0x1e8ffe808000-0x1e8ffe80ffff 64bit pref]
[ 2.054807] pci 0000:ae:00.0: ROM [mem 0xfff80000-0xffffffff pref]
[ 2.054922] pci 0000:ae:00.0: PME# supported from D0 D3hot D3cold
[ 2.054992] pci 0000:ae:00.0: VF BAR 0 [mem 0x1e8ffe400000-0x1e8ffe40ffff 64bit pref]
[ 2.054995] pci 0000:ae:00.0: VF BAR 0 [mem 0x1e8ffe400000-0x1e8ffe7fffff 64bit pref]: contains BAR 0 for 64 VFs
[ 2.055016] pci 0000:ae:00.0: VF BAR 3 [mem 0x1e8ffe910000-0x1e8ffe913fff 64bit pref]
[ 2.055019] pci 0000:ae:00.0: VF BAR 3 [mem 0x1e8ffe910000-0x1e8ffea0ffff 64bit pref]: contains BAR 3 for 64 VFs
[ 2.055521] pci 0000:ae:00.1: [8086:15ff] type 00 class 0x020000 PCIe Endpoint
[ 2.055577] pci 0000:ae:00.1: BAR 0 [mem 0x1e8ffc000000-0x1e8ffcffffff 64bit pref]
[ 2.055584] pci 0000:ae:00.1: BAR 3 [mem 0x1e8ffe800000-0x1e8ffe807fff 64bit pref]
[ 2.055590] pci 0000:ae:00.1: ROM [mem 0xfff80000-0xffffffff pref]
[ 2.055691] pci 0000:ae:00.1: PME# supported from D0 D3hot D3cold
[ 2.055747] pci 0000:ae:00.1: VF BAR 0 [mem 0x1e8ffe000000-0x1e8ffe00ffff 64bit pref]
[ 2.055750] pci 0000:ae:00.1: VF BAR 0 [mem 0x1e8ffe000000-0x1e8ffe3fffff 64bit pref]: contains BAR 0 for 64 VFs
[ 2.055770] pci 0000:ae:00.1: VF BAR 3 [mem 0x1e8ffe810000-0x1e8ffe813fff 64bit pref]
[ 2.055773] pci 0000:ae:00.1: VF BAR 3 [mem 0x1e8ffe810000-0x1e8ffe90ffff 64bit pref]: contains BAR 3 for 64 VFs
[ 2.056220] pci 0000:ad:02.0: PCI bridge to [bus ae]
[ 2.056238] pci_bus 0000:ad: on NUMA node 0
[ 2.056519] ACPI: PCI Root Bridge [PC07] (domain 0000 [bus c7-e0])
[ 2.056524] acpi PNP0A08:14: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 2.069810] acpi PNP0A08:14: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 2.070063] acpi PNP0A08:14: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 2.070067] acpi PNP0A08:14: FADT indicates ASPM is unsupported, using BIOS configuration
[ 2.070267] PCI host bridge to bus 0000:c7
[ 2.070271] pci_bus 0000:c7: root bus resource [io 0xe000-0xefff window]
[ 2.070274] pci_bus 0000:c7: root bus resource [mem 0xdfc00000-0xeafbffff window]
[ 2.070277] pci_bus 0000:c7: root bus resource [mem 0x1e9000000000-0x1e9fffffffff window]
[ 2.070281] pci_bus 0000:c7: root bus resource [bus c7-e0]
[ 2.070296] pci 0000:c7:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.070412] pci 0000:c7:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.070524] pci 0000:c7:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.070637] pci 0000:c7:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector
[ 2.070798] pci 0000:c7:00.5: [8086:28c0] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 2.070834] pci 0000:c7:00.5: BAR 0 [mem 0x1e9ffc000000-0x1e9ffdffffff 64bit pref]
[ 2.070838] pci 0000:c7:00.5: BAR 2 [mem 0xe0000000-0xe3ffffff]
[ 2.070844] pci 0000:c7:00.5: BAR 4 [mem 0x1e9ffe000000-0x1e9ffe1fffff 64bit]
[ 2.070939] pci 0000:c7:02.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.071314] pci 0000:c7:04.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.071670] pci 0000:c7:06.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.072035] pci 0000:c7:08.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.072422] pci_bus 0000:c7: on NUMA node 0
[ 2.072700] ACPI: PCI Root Bridge [PC08] (domain 0000 [bus e1-fa])
[ 2.072705] acpi PNP0A08:15: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 2.085966] acpi PNP0A08:15: _OSC: platform does not support [SHPCHotplug AER DPC]
[ 2.086212] acpi PNP0A08:15: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[ 2.086215] acpi PNP0A08:15: FADT indicates ASPM is unsupported, using BIOS configuration
[ 2.086412] PCI host bridge to bus 0000:e1
[ 2.086416] pci_bus 0000:e1: root bus resource [io 0xf000-0xffff window]
[ 2.086419] pci_bus 0000:e1: root bus resource [mem 0xeb000000-0xf5fbffff window]
[ 2.086423] pci_bus 0000:e1: root bus resource [mem 0x1ea000000000-0x1eafffffffff window]
[ 2.086427] pci_bus 0000:e1: root bus resource [bus e1-fa]
[ 2.086442] pci 0000:e1:00.0: [8086:09a2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.086563] pci 0000:e1:00.1: [8086:09a4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.086683] pci 0000:e1:00.2: [8086:09a3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.086803] pci 0000:e1:00.4: [8086:0b23] type 00 class 0x080700 PCIe Root Complex Event Collector
[ 2.086978] pci 0000:e1:00.5: [8086:28c0] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 2.087017] pci 0000:e1:00.5: BAR 0 [mem 0x1eaffc000000-0x1eaffdffffff 64bit pref]
[ 2.087022] pci 0000:e1:00.5: BAR 2 [mem 0xec000000-0xefffffff]
[ 2.087027] pci 0000:e1:00.5: BAR 4 [mem 0x1eaffe000000-0x1eaffe1fffff 64bit]
[ 2.087133] pci 0000:e1:02.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.087497] pci 0000:e1:04.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.087855] pci 0000:e1:06.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.088214] pci 0000:e1:08.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 2.088591] pci_bus 0000:e1: on NUMA node 0
[ 2.088898] ACPI: PCI Root Bridge [UB00] (domain 0000 [bus fe])
[ 2.088903] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 2.089011] acpi PNP0A03:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 2.089208] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 2.089211] acpi PNP0A03:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 2.089465] PCI host bridge to bus 0000:fe
[ 2.089469] pci_bus 0000:fe: root bus resource [bus fe]
[ 2.089487] pci 0000:fe:00.0: [8086:3250] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.089605] pci 0000:fe:00.1: [8086:3251] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.089724] pci 0000:fe:00.2: [8086:3252] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.089848] pci 0000:fe:02.0: [8086:0998] type 00 class 0x060000 PCIe Root Complex Integrated Endpoint
[ 2.090029] pci 0000:fe:05.0: [8086:3258] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.090181] pci 0000:fe:05.1: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint
[ 2.090351] pci 0000:fe:05.2: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint
[ 2.090520] pci 0000:fe:05.3: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint
[ 2.090680] pci 0000:fe:05.4: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint
[ 2.090844] pci 0000:fe:05.5: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint
[ 2.091012] pci 0000:fe:05.6: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint
[ 2.091179] pci 0000:fe:05.7: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint
[ 2.091345] pci 0000:fe:06.0: [8086:3258] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.091515] pci 0000:fe:06.1: [8086:324a] type 00 class 0x110100 PCIe Root Complex Integrated Endpoint
[ 2.091681] pci 0000:fe:07.0: [8086:3258] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.091870] pci 0000:fe:09.0: [8086:3258] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.092057] pci 0000:fe:0d.0: [8086:344f] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.092231] pci 0000:fe:0d.1: [8086:3457] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.092408] pci 0000:fe:0e.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.092571] pci 0000:fe:0e.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.092737] pci 0000:fe:0e.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.092901] pci 0000:fe:0e.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.093056] pci 0000:fe:0e.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.093221] pci 0000:fe:0e.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.093382] pci 0000:fe:0e.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.093543] pci 0000:fe:0e.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.093699] pci 0000:fe:0f.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.093858] pci 0000:fe:0f.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.094031] pci 0000:fe:0f.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.094190] pci 0000:fe:0f.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.094349] pci 0000:fe:0f.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.094510] pci 0000:fe:0f.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.094675] pci 0000:fe:0f.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.094837] pci 0000:fe:0f.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.094998] pci 0000:fe:10.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.095160] pci 0000:fe:10.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.095335] pci 0000:fe:10.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.095494] pci 0000:fe:10.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.095659] pci 0000:fe:10.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.095819] pci 0000:fe:10.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.095976] pci 0000:fe:10.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.096131] pci 0000:fe:10.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.096289] pci 0000:fe:11.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.096447] pci 0000:fe:11.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.096612] pci 0000:fe:11.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.096768] pci 0000:fe:11.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.096927] pci 0000:fe:11.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.097085] pci 0000:fe:11.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.097244] pci 0000:fe:11.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.097403] pci 0000:fe:11.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.097564] pci 0000:fe:12.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.097722] pci 0000:fe:12.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.097890] pci 0000:fe:12.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.098052] pci 0000:fe:12.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.098215] pci 0000:fe:12.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.098375] pci 0000:fe:12.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.098537] pci 0000:fe:12.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.098699] pci 0000:fe:12.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.098863] pci 0000:fe:13.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.099024] pci 0000:fe:13.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.099199] pci 0000:fe:13.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.099370] pci 0000:fe:13.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.099543] pci 0000:fe:13.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.099718] pci 0000:fe:13.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.099886] pci 0000:fe:13.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.100052] pci 0000:fe:13.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.100226] pci 0000:fe:14.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.100395] pci 0000:fe:14.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.100573] pci 0000:fe:14.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.100740] pci 0000:fe:14.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.100909] pci 0000:fe:14.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.101080] pci 0000:fe:14.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.101250] pci 0000:fe:14.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.101420] pci 0000:fe:14.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.101588] pci 0000:fe:15.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.101764] pci 0000:fe:15.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.101945] pci 0000:fe:15.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.102116] pci 0000:fe:15.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.102287] pci 0000:fe:15.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.102462] pci 0000:fe:15.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.102636] pci 0000:fe:15.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.102808] pci 0000:fe:15.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.102973] pci 0000:fe:16.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.103139] pci 0000:fe:16.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.103316] pci 0000:fe:16.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.103486] pci 0000:fe:16.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.103652] pci 0000:fe:16.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.103819] pci 0000:fe:16.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.103988] pci 0000:fe:16.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.104154] pci 0000:fe:16.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.104325] pci 0000:fe:17.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.104492] pci 0000:fe:17.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.104669] pci 0000:fe:17.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.104837] pci 0000:fe:17.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.105009] pci 0000:fe:17.4: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.105184] pci 0000:fe:17.5: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.105359] pci 0000:fe:17.6: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.105526] pci 0000:fe:17.7: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.105700] pci 0000:fe:18.0: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.105870] pci 0000:fe:18.1: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.106054] pci 0000:fe:18.2: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.106223] pci 0000:fe:18.3: [8086:324c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.106404] pci_bus 0000:fe: on NUMA node 0
[ 2.106562] ACPI: PCI Root Bridge [UB01] (domain 0000 [bus ff])
[ 2.106568] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 2.106691] acpi PNP0A03:01: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 2.106889] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 2.106892] acpi PNP0A03:01: FADT indicates ASPM is unsupported, using BIOS configuration
[ 2.107187] PCI host bridge to bus 0000:ff
[ 2.107193] pci_bus 0000:ff: root bus resource [bus ff]
[ 2.107217] pci 0000:ff:00.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.107381] pci 0000:ff:00.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.107537] pci 0000:ff:00.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.107696] pci 0000:ff:00.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.107854] pci 0000:ff:00.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.108019] pci 0000:ff:00.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.108189] pci 0000:ff:00.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.108350] pci 0000:ff:00.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.108508] pci 0000:ff:01.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.108665] pci 0000:ff:01.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.108828] pci 0000:ff:01.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.108990] pci 0000:ff:01.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.109150] pci 0000:ff:01.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.109308] pci 0000:ff:01.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.109481] pci 0000:ff:01.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.109646] pci 0000:ff:01.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.109807] pci 0000:ff:02.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.109968] pci 0000:ff:02.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.110135] pci 0000:ff:02.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.110301] pci 0000:ff:02.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.110463] pci 0000:ff:02.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.110623] pci 0000:ff:02.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.110786] pci 0000:ff:02.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.110944] pci 0000:ff:02.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.111099] pci 0000:ff:03.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.111260] pci 0000:ff:03.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.111417] pci 0000:ff:03.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.111576] pci 0000:ff:03.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.111730] pci 0000:ff:03.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.111888] pci 0000:ff:03.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.112057] pci 0000:ff:03.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.112219] pci 0000:ff:03.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.112374] pci 0000:ff:04.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.112535] pci 0000:ff:04.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.112697] pci 0000:ff:04.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.112860] pci 0000:ff:04.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.113018] pci 0000:ff:04.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.113183] pci 0000:ff:04.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.113352] pci 0000:ff:04.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.113513] pci 0000:ff:04.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.113684] pci 0000:ff:05.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.113849] pci 0000:ff:05.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.114014] pci 0000:ff:05.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.114185] pci 0000:ff:05.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.114355] pci 0000:ff:05.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.114525] pci 0000:ff:05.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.114699] pci 0000:ff:05.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.114869] pci 0000:ff:05.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.115041] pci 0000:ff:06.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.115216] pci 0000:ff:06.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.115384] pci 0000:ff:06.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.115552] pci 0000:ff:06.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.115718] pci 0000:ff:06.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.115892] pci 0000:ff:06.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.116068] pci 0000:ff:06.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.116239] pci 0000:ff:06.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.116408] pci 0000:ff:07.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.116585] pci 0000:ff:07.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.116755] pci 0000:ff:07.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.116929] pci 0000:ff:07.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.117100] pci 0000:ff:07.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.117278] pci 0000:ff:07.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.117458] pci 0000:ff:07.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.117631] pci 0000:ff:07.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.117796] pci 0000:ff:08.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.117964] pci 0000:ff:08.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.118129] pci 0000:ff:08.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.118299] pci 0000:ff:08.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.118464] pci 0000:ff:08.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.118630] pci 0000:ff:08.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.118803] pci 0000:ff:08.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.118973] pci 0000:ff:08.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.119142] pci 0000:ff:09.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.119310] pci 0000:ff:09.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.119477] pci 0000:ff:09.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.119646] pci 0000:ff:09.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.119820] pci 0000:ff:09.4: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.119989] pci 0000:ff:09.5: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.120167] pci 0000:ff:09.6: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.120339] pci 0000:ff:09.7: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.120511] pci 0000:ff:0a.0: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.120681] pci 0000:ff:0a.1: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.120852] pci 0000:ff:0a.2: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.121025] pci 0000:ff:0a.3: [8086:324d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[ 2.121225] pci_bus 0000:ff: on NUMA node 0
[ 2.125189] ACPI: EC: interrupt unblocked
[ 2.125195] ACPI: EC: event unblocked
[ 2.125216] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 2.125218] ACPI: EC: GPE=0x0
[ 2.125221] ACPI: \_SB_.ECDV: Boot DSDT EC initialization complete
[ 2.125224] ACPI: \_SB_.ECDV: EC: Used to handle transactions and events
[ 2.125401] acpi/hmat: Memory Flags:0001 Processor Domain:0 Memory Domain:0
[ 2.125795] iommu: Default domain type: Translated
[ 2.125795] iommu: DMA domain TLB invalidation policy: lazy mode
[ 2.133806] SCSI subsystem initialized
[ 2.133886] libata version 3.00 loaded.
[ 2.133886] ACPI: bus type USB registered
[ 2.133886] usbcore: registered new interface driver usbfs
[ 2.133886] usbcore: registered new interface driver hub
[ 2.133886] usbcore: registered new device driver usb
[ 2.133886] pps_core: LinuxPPS API ver. 1 registered
[ 2.133886] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[ 2.133886] PTP clock support registered
[ 2.134523] EDAC MC: Ver: 3.0.0
[ 2.136069] EDAC DEBUG: edac_mc_sysfs_init: device mc created
[ 2.136110] efivars: Registered efivars operations
[ 2.137540] NetLabel: Initializing
[ 2.137544] NetLabel: domain hash size = 128
[ 2.137547] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 2.137568] NetLabel: unlabeled traffic allowed by default
[ 2.137608] mctp: management component transport protocol core
[ 2.137608] NET: Registered PF_MCTP protocol family
[ 2.137608] PCI: Using ACPI for IRQ routing
[ 2.144508] PCI: pci_cache_line_size set to 64 bytes
[ 2.146333] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 2.146336] e820: reserve RAM buffer [mem 0x4a0df000-0x4bffffff]
[ 2.146338] e820: reserve RAM buffer [mem 0x551ff000-0x57ffffff]
[ 2.146339] e820: reserve RAM buffer [mem 0x5d170000-0x5fffffff]
[ 2.146340] e820: reserve RAM buffer [mem 0x87f000000-0x87fffffff]
[ 2.147394] pci 0000:0d:00.0: vgaarb: setting as boot VGA device
[ 2.147398] pci 0000:0d:00.0: vgaarb: bridge control possible
[ 2.147401] pci 0000:0d:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 2.147488] vgaarb: loaded
[ 2.147720] Monitor-Mwait will be used to enter C-1 state
[ 2.147723] Monitor-Mwait will be used to enter C-2 state
[ 2.158468] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 2.158480] hpet0: 8 comparators, 64-bit 25.000000 MHz counter
[ 2.161115] clocksource: Switched to clocksource tsc-early
[ 2.162082] VFS: Disk quotas dquot_6.6.0
[ 2.162184] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 2.162764] AppArmor: AppArmor Filesystem Enabled
[ 2.164369] pnp: PnP ACPI init
[ 2.191532] system 00:00: [io 0x1000] has been reserved
[ 2.191753] system 00:02: [io 0x0500-0x05fe] has been reserved
[ 2.191757] system 00:02: [io 0x0400-0x041f] has been reserved
[ 2.191760] system 00:02: [io 0x0600-0x061f] has been reserved
[ 2.191763] system 00:02: [io 0x0ca0-0x0ca1] has been reserved
[ 2.191766] system 00:02: [io 0x0ca4-0x0ca6] has been reserved
[ 2.191772] system 00:02: [mem 0xff000000-0xffffffff] has been reserved
[ 2.196703] pnp 00:03: [dma 0 disabled]
[ 2.197404] pnp: PnP ACPI: found 4 devices
[ 2.205477] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 2.205790] NET: Registered PF_INET protocol family
[ 2.206309] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 2.210186] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 2.210270] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 2.210729] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 2.211485] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 2.211874] TCP: Hash tables configured (established 262144 bind 65536)
[ 2.212621] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[ 2.212974] UDP hash table entries: 16384 (order: 8, 1048576 bytes, linear)
[ 2.213308] UDP-Lite hash table entries: 16384 (order: 8, 1048576 bytes, linear)
[ 2.213718] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 2.213748] NET: Registered PF_XDP protocol family
[ 2.213758] pci 0000:0d:00.0: ROM [mem 0xfffe0000-0xffffffff pref]: can't claim; no compatible bridge window
[ 2.213766] pci 0000:2d:00.0: ROM [mem 0xfffe0000-0xffffffff pref]: can't claim; no compatible bridge window
[ 2.213771] pci 0000:30:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[ 2.213774] pci 0000:30:00.1: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[ 2.213778] pci 0000:31:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[ 2.213786] pci 0000:ae:00.0: ROM [mem 0xfff80000-0xffffffff pref]: can't claim; no compatible bridge window
[ 2.213789] pci 0000:ae:00.1: ROM [mem 0xfff80000-0xffffffff pref]: can't claim; no compatible bridge window
[ 2.213830] pci_bus 0000:00: resource 4 [io 0x1000-0x3fff window]
[ 2.213835] pci_bus 0000:00: resource 5 [mem 0x90000000-0x907dffff window]
[ 2.213838] pci_bus 0000:00: resource 6 [mem 0x1e0500000000-0x1e0fffbfffff window]
[ 2.213841] pci_bus 0000:00: resource 7 [io 0x0070-0x0077 window]
[ 2.213844] pci_bus 0000:00: resource 8 [io 0x0780-0x079f window]
[ 2.213847] pci_bus 0000:00: resource 9 [io 0x0400-0x041f window]
[ 2.213850] pci_bus 0000:00: resource 10 [io 0x0500-0x05ff window]
[ 2.213853] pci_bus 0000:00: resource 11 [mem 0xf6800000-0xf6803fff window]
[ 2.213856] pci_bus 0000:00: resource 12 [mem 0xf6830000-0xf6830fff window]
[ 2.213859] pci_bus 0000:00: resource 13 [mem 0xf7000000-0xf7ffffff window]
[ 2.213880] pci_bus 0000:01: resource 4 [mem 0x1e0000000000-0x1e00ffffffff window]
[ 2.213886] pci_bus 0000:03: resource 4 [mem 0x1e0100000000-0x1e04ffffffff window]
[ 2.213892] pci_bus 0000:05: resource 4 [mem 0x90800000-0x90fdffff window]
[ 2.213895] pci_bus 0000:05: resource 5 [mem 0x1e1000000000-0x1e1fffffffff window]
[ 2.213910] pci 0000:0d:00.0: ROM [mem 0x91120000-0x9113ffff pref]: assigned
[ 2.213915] pci 0000:0c:00.0: PCI bridge to [bus 0d]
[ 2.213925] pci 0000:0c:00.0: bridge window [io 0x4000-0x4fff]
[ 2.213933] pci 0000:0c:00.0: bridge window [mem 0x91000000-0x911fffff]
[ 2.213938] pci 0000:0c:00.0: bridge window [mem 0x1e2c00000000-0x1e2e0fffffff 64bit pref]
[ 2.213948] pci 0000:0b:00.0: PCI bridge to [bus 0c-0d]
[ 2.213952] pci 0000:0b:00.0: bridge window [io 0x4000-0x4fff]
[ 2.213958] pci 0000:0b:00.0: bridge window [mem 0x91000000-0x911fffff]
[ 2.213964] pci 0000:0b:00.0: bridge window [mem 0x1e2c00000000-0x1e2e0fffffff 64bit pref]
[ 2.213973] pci 0000:0a:02.0: PCI bridge to [bus 0b-0d]
[ 2.213976] pci 0000:0a:02.0: bridge window [io 0x4000-0x4fff]
[ 2.213982] pci 0000:0a:02.0: bridge window [mem 0x91000000-0x912fffff]
[ 2.213986] pci 0000:0a:02.0: bridge window [mem 0x1e2c00000000-0x1e2e0fffffff 64bit pref]
[ 2.213994] pci_bus 0000:0a: resource 4 [io 0x4000-0x5fff window]
[ 2.213997] pci_bus 0000:0a: resource 5 [mem 0x91000000-0x9c3bffff window]
[ 2.214000] pci_bus 0000:0a: resource 6 [mem 0x1e2000000000-0x1e2fffffffff window]
[ 2.214003] pci_bus 0000:0b: resource 0 [io 0x4000-0x4fff]
[ 2.214006] pci_bus 0000:0b: resource 1 [mem 0x91000000-0x912fffff]
[ 2.214008] pci_bus 0000:0b: resource 2 [mem 0x1e2c00000000-0x1e2e0fffffff 64bit pref]
[ 2.214012] pci_bus 0000:0c: resource 0 [io 0x4000-0x4fff]
[ 2.214014] pci_bus 0000:0c: resource 1 [mem 0x91000000-0x911fffff]
[ 2.214017] pci_bus 0000:0c: resource 2 [mem 0x1e2c00000000-0x1e2e0fffffff 64bit pref]
[ 2.214020] pci_bus 0000:0d: resource 0 [io 0x4000-0x4fff]
[ 2.214023] pci_bus 0000:0d: resource 1 [mem 0x91000000-0x911fffff]
[ 2.214025] pci_bus 0000:0d: resource 2 [mem 0x1e2c00000000-0x1e2e0fffffff 64bit pref]
[ 2.214087] pci 0000:2c:1c.0: bridge window [io 0x1000-0x0fff] to [bus 2e] add_size 1000
[ 2.214094] pci 0000:2c:1c.4: bridge window [mem 0x00100000-0x000fffff] to [bus 30] add_size 200000 add_align 100000
[ 2.214108] pci 0000:2c:1c.4: bridge window [mem 0x9d900000-0x9dafffff]: assigned
[ 2.214112] pci 0000:2c:15.0: BAR 0 [mem 0x1e3000000000-0x1e3000000fff 64bit]: assigned
[ 2.214136] pci 0000:2c:15.2: BAR 0 [mem 0x1e3000001000-0x1e3000001fff 64bit]: assigned
[ 2.214156] pci 0000:2c:1c.0: bridge window [io 0x7000-0x7fff]: assigned
[ 2.214161] pci 0000:2d:00.0: ROM [mem 0x9c8a0000-0x9c8bffff pref]: assigned
[ 2.214164] pci 0000:2c:1b.0: PCI bridge to [bus 2d]
[ 2.214175] pci 0000:2c:1b.0: bridge window [mem 0x9c400000-0x9c8fffff]
[ 2.214186] pci 0000:2c:1c.0: PCI bridge to [bus 2e]
[ 2.214190] pci 0000:2c:1c.0: bridge window [io 0x7000-0x7fff]
[ 2.214197] pci 0000:2c:1c.0: bridge window [mem 0x9cf00000-0x9d6fffff]
[ 2.214202] pci 0000:2c:1c.0: bridge window [mem 0x1e3fea400000-0x1e3fee3fffff 64bit pref]
[ 2.214212] pci 0000:2c:1c.3: PCI bridge to [bus 2f]
[ 2.214218] pci 0000:2c:1c.3: bridge window [mem 0x9ca00000-0x9ccfffff]
[ 2.214230] pci 0000:30:00.0: ROM [mem 0x9d900000-0x9d9fffff pref]: assigned
[ 2.214234] pci 0000:30:00.1: ROM [mem 0x9da00000-0x9dafffff pref]: assigned
[ 2.214237] pci 0000:2c:1c.4: PCI bridge to [bus 30]
[ 2.214246] pci 0000:2c:1c.4: bridge window [mem 0x9d900000-0x9dafffff]
[ 2.214251] pci 0000:2c:1c.4: bridge window [mem 0x1e3fe6000000-0x1e3fea0fffff 64bit pref]
[ 2.214261] pci 0000:31:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[ 2.214264] pci 0000:31:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[ 2.214268] pci 0000:2c:1d.0: PCI bridge to [bus 31]
[ 2.214289] pci 0000:2c:1d.0: bridge window [mem 0x9cd00000-0x9cefffff]
[ 2.214311] pci_bus 0000:2c: Some PCI device resources are unassigned, try booting with pci=realloc
[ 2.214314] pci_bus 0000:2c: resource 4 [mem 0x000a0000-0x000bffff window]
[ 2.214317] pci_bus 0000:2c: resource 5 [io 0x6000-0x7fff window]
[ 2.214320] pci_bus 0000:2c: resource 6 [io 0x03b0-0x03bb window]
[ 2.214322] pci_bus 0000:2c: resource 7 [io 0x03c0-0x03df window]
[ 2.214325] pci_bus 0000:2c: resource 8 [mem 0x9c400000-0xa66fffff window]
[ 2.214328] pci_bus 0000:2c: resource 9 [mem 0x1e3000000000-0x1e3fefffffff window]
[ 2.214331] pci_bus 0000:2d: resource 1 [mem 0x9c400000-0x9c8fffff]
[ 2.214334] pci_bus 0000:2e: resource 0 [io 0x7000-0x7fff]
[ 2.214337] pci_bus 0000:2e: resource 1 [mem 0x9cf00000-0x9d6fffff]
[ 2.214340] pci_bus 0000:2e: resource 2 [mem 0x1e3fea400000-0x1e3fee3fffff 64bit pref]
[ 2.214343] pci_bus 0000:2f: resource 1 [mem 0x9ca00000-0x9ccfffff]
[ 2.214346] pci_bus 0000:30: resource 1 [mem 0x9d900000-0x9dafffff]
[ 2.214348] pci_bus 0000:30: resource 2 [mem 0x1e3fe6000000-0x1e3fea0fffff 64bit pref]
[ 2.214352] pci_bus 0000:31: resource 1 [mem 0x9cd00000-0x9cefffff]
[ 2.214496] pci 0000:45:02.0: PCI bridge to [bus 46]
[ 2.214505] pci 0000:45:02.0: bridge window [mem 0x1e4fffe00000-0x1e4fffefffff 64bit pref]
[ 2.214512] pci 0000:45:06.0: PCI bridge to [bus 47]
[ 2.214517] pci 0000:45:06.0: bridge window [mem 0xa7800000-0xa78fffff]
[ 2.214526] pci_bus 0000:45: resource 4 [io 0x8000-0x9fff window]
[ 2.214529] pci_bus 0000:45: resource 5 [mem 0xa7800000-0xb2bbffff window]
[ 2.214532] pci_bus 0000:45: resource 6 [mem 0x1e4000000000-0x1e4fffffffff window]
[ 2.214535] pci_bus 0000:46: resource 2 [mem 0x1e4fffe00000-0x1e4fffefffff 64bit pref]
[ 2.214538] pci_bus 0000:47: resource 1 [mem 0xa7800000-0xa78fffff]
[ 2.214591] pci_bus 0000:5f: resource 4 [io 0xa000-0xafff window]
[ 2.214594] pci_bus 0000:5f: resource 5 [mem 0xb2c00000-0xbdfbffff window]
[ 2.214596] pci_bus 0000:5f: resource 6 [mem 0x1e5000000000-0x1e5fffffffff window]
[ 2.214658] pci_bus 0000:79: resource 4 [io 0xb000-0xbfff window]
[ 2.214662] pci_bus 0000:79: resource 5 [mem 0xbe000000-0xc93bffff window]
[ 2.214665] pci_bus 0000:79: resource 6 [mem 0x1e6000000000-0x1e6fffffffff window]
[ 2.214721] pci_bus 0000:93: resource 4 [io 0xc000-0xcfff window]
[ 2.214724] pci_bus 0000:93: resource 5 [mem 0xc9400000-0xd47bffff window]
[ 2.214727] pci_bus 0000:93: resource 6 [mem 0x1e7000000000-0x1e7fffffffff window]
[ 2.214779] pci 0000:ad:02.0: bridge window [mem 0x00100000-0x000fffff] to [bus ae] add_size 100000 add_align 100000
[ 2.214786] pci 0000:ad:02.0: bridge window [mem 0xd4800000-0xd48fffff]: assigned
[ 2.214791] pci 0000:ae:00.0: ROM [mem 0xd4800000-0xd487ffff pref]: assigned
[ 2.214794] pci 0000:ae:00.1: ROM [mem 0xd4880000-0xd48fffff pref]: assigned
[ 2.214797] pci 0000:ad:02.0: PCI bridge to [bus ae]
[ 2.214808] pci 0000:ad:02.0: bridge window [mem 0xd4800000-0xd48fffff]
[ 2.214813] pci 0000:ad:02.0: bridge window [mem 0x1e8ffc000000-0x1e8ffeafffff 64bit pref]
[ 2.214821] pci_bus 0000:ad: resource 4 [io 0xd000-0xdfff window]
[ 2.214824] pci_bus 0000:ad: resource 5 [mem 0xd4800000-0xdfbbffff window]
[ 2.214826] pci_bus 0000:ad: resource 6 [mem 0x1e8000000000-0x1e8fffffffff window]
[ 2.214830] pci_bus 0000:ae: resource 1 [mem 0xd4800000-0xd48fffff]
[ 2.214832] pci_bus 0000:ae: resource 2 [mem 0x1e8ffc000000-0x1e8ffeafffff 64bit pref]
[ 2.214886] pci_bus 0000:c7: resource 4 [io 0xe000-0xefff window]
[ 2.214888] pci_bus 0000:c7: resource 5 [mem 0xdfc00000-0xeafbffff window]
[ 2.214891] pci_bus 0000:c7: resource 6 [mem 0x1e9000000000-0x1e9fffffffff window]
[ 2.214945] pci_bus 0000:e1: resource 4 [io 0xf000-0xffff window]
[ 2.214948] pci_bus 0000:e1: resource 5 [mem 0xeb000000-0xf5fbffff window]
[ 2.214951] pci_bus 0000:e1: resource 6 [mem 0x1ea000000000-0x1eafffffffff window]
[ 2.215222] pci 0000:0d:00.1: D0 power state depends on 0000:0d:00.0
[ 2.216240] pci 0000:47:00.0: PME# does not work under D0, disabling it
[ 2.217051] PCI: CLS 128 bytes, default 64
[ 2.217210] Unpacking initramfs...
[ 2.217505] DMAR: dmar9: Using Queued invalidation
[ 2.217514] DMAR: dmar8: Using Queued invalidation
[ 2.217520] DMAR: dmar7: Using Queued invalidation
[ 2.217526] DMAR: dmar6: Using Queued invalidation
[ 2.217531] DMAR: dmar5: Using Queued invalidation
[ 2.217537] DMAR: dmar4: Using Queued invalidation
[ 2.217543] DMAR: dmar3: Using Queued invalidation
[ 2.217549] DMAR: dmar2: Using Queued invalidation
[ 2.217555] DMAR: dmar1: Using Queued invalidation
[ 2.217560] DMAR: dmar0: Using Queued invalidation
[ 2.217566] DMAR: dmar10: Using Queued invalidation
[ 2.222437] pci 0000:e1:00.0: Adding to iommu group 0
[ 2.222505] pci 0000:e1:00.1: Adding to iommu group 1
[ 2.222563] pci 0000:e1:00.2: Adding to iommu group 2
[ 2.222671] pci 0000:e1:00.4: Adding to iommu group 3
[ 2.222729] pci 0000:e1:00.5: Adding to iommu group 4
[ 2.222843] pci 0000:e1:02.0: Adding to iommu group 5
[ 2.222950] pci 0000:e1:04.0: Adding to iommu group 6
[ 2.223057] pci 0000:e1:06.0: Adding to iommu group 7
[ 2.223170] pci 0000:e1:08.0: Adding to iommu group 8
[ 2.233853] pci 0000:c7:00.0: Adding to iommu group 9
[ 2.233915] pci 0000:c7:00.1: Adding to iommu group 10
[ 2.233973] pci 0000:c7:00.2: Adding to iommu group 11
[ 2.234082] pci 0000:c7:00.4: Adding to iommu group 12
[ 2.234140] pci 0000:c7:00.5: Adding to iommu group 13
[ 2.234247] pci 0000:c7:02.0: Adding to iommu group 14
[ 2.234354] pci 0000:c7:04.0: Adding to iommu group 15
[ 2.234461] pci 0000:c7:06.0: Adding to iommu group 16
[ 2.234570] pci 0000:c7:08.0: Adding to iommu group 17
[ 2.246651] pci 0000:ad:00.0: Adding to iommu group 18
[ 2.246716] pci 0000:ad:00.1: Adding to iommu group 19
[ 2.246777] pci 0000:ad:00.2: Adding to iommu group 20
[ 2.246896] pci 0000:ad:00.4: Adding to iommu group 21
[ 2.246955] pci 0000:ad:00.5: Adding to iommu group 22
[ 2.247014] pci 0000:ad:02.0: Adding to iommu group 23
[ 2.247121] pci 0000:ad:06.0: Adding to iommu group 24
[ 2.247229] pci 0000:ad:08.0: Adding to iommu group 25
[ 2.247308] pci 0000:ae:00.0: Adding to iommu group 26
[ 2.247384] pci 0000:ae:00.1: Adding to iommu group 27
[ 2.260580] pci 0000:93:00.0: Adding to iommu group 28
[ 2.260673] pci 0000:93:00.1: Adding to iommu group 29
[ 2.260754] pci 0000:93:00.2: Adding to iommu group 30
[ 2.260914] pci 0000:93:00.4: Adding to iommu group 31
[ 2.260998] pci 0000:93:00.5: Adding to iommu group 32
[ 2.261128] pci 0000:93:02.0: Adding to iommu group 33
[ 2.261247] pci 0000:93:04.0: Adding to iommu group 34
[ 2.261364] pci 0000:93:06.0: Adding to iommu group 35
[ 2.261476] pci 0000:93:08.0: Adding to iommu group 36
[ 2.272092] pci 0000:79:00.0: Adding to iommu group 37
[ 2.272177] pci 0000:79:00.1: Adding to iommu group 38
[ 2.272255] pci 0000:79:00.2: Adding to iommu group 39
[ 2.272392] pci 0000:79:00.4: Adding to iommu group 40
[ 2.272464] pci 0000:79:00.5: Adding to iommu group 41
[ 2.272604] pci 0000:79:02.0: Adding to iommu group 42
[ 2.272724] pci 0000:79:04.0: Adding to iommu group 43
[ 2.272857] pci 0000:79:06.0: Adding to iommu group 44
[ 2.272968] pci 0000:79:08.0: Adding to iommu group 45
[ 2.283896] pci 0000:5f:00.0: Adding to iommu group 46
[ 2.283957] pci 0000:5f:00.1: Adding to iommu group 47
[ 2.284016] pci 0000:5f:00.2: Adding to iommu group 48
[ 2.284124] pci 0000:5f:00.4: Adding to iommu group 49
[ 2.289092] pci 0000:45:00.0: Adding to iommu group 50
[ 2.289152] pci 0000:45:00.1: Adding to iommu group 51
[ 2.289210] pci 0000:45:00.2: Adding to iommu group 52
[ 2.289318] pci 0000:45:00.4: Adding to iommu group 53
[ 2.289384] pci 0000:45:02.0: Adding to iommu group 54
[ 2.289442] pci 0000:45:06.0: Adding to iommu group 55
[ 2.289505] pci 0000:46:00.0: Adding to iommu group 56
[ 2.289566] pci 0000:47:00.0: Adding to iommu group 57
[ 2.301706] pci 0000:0a:00.0: Adding to iommu group 58
[ 2.301781] pci 0000:0a:00.1: Adding to iommu group 59
[ 2.301848] pci 0000:0a:00.2: Adding to iommu group 60
[ 2.301958] pci 0000:0a:00.4: Adding to iommu group 61
[ 2.302016] pci 0000:0a:02.0: Adding to iommu group 62
[ 2.302082] pci 0000:0b:00.0: Adding to iommu group 63
[ 2.302143] pci 0000:0c:00.0: Adding to iommu group 64
[ 2.302217] pci 0000:0d:00.0: Adding to iommu group 65
[ 2.302283] pci 0000:0d:00.1: Adding to iommu group 66
[ 2.313723] pci 0000:05:00.0: Adding to iommu group 67
[ 2.313791] pci 0000:05:00.1: Adding to iommu group 68
[ 2.313855] pci 0000:05:00.2: Adding to iommu group 69
[ 2.313964] pci 0000:05:00.4: Adding to iommu group 70
[ 2.319499] pci 0000:00:00.0: Adding to iommu group 71
[ 2.319564] pci 0000:00:00.1: Adding to iommu group 72
[ 2.319623] pci 0000:00:00.2: Adding to iommu group 73
[ 2.319731] pci 0000:00:00.4: Adding to iommu group 74
[ 2.319824] pci 0000:00:01.0: Adding to iommu group 75
[ 2.319883] pci 0000:00:03.0: Adding to iommu group 76
[ 2.319941] pci 0000:00:03.1: Adding to iommu group 77
[ 2.320150] pci 0000:00:1f.0: Adding to iommu group 78
[ 2.320208] pci 0000:00:1f.4: Adding to iommu group 78
[ 2.320269] pci 0000:00:1f.5: Adding to iommu group 78
[ 2.320356] pci 0000:fe:02.0: Adding to iommu group 79
[ 2.323910] Freeing initrd memory: 30288K
[ 2.331234] pci 0000:2b:00.0: Adding to iommu group 80
[ 2.331298] pci 0000:2b:00.1: Adding to iommu group 81
[ 2.331360] pci 0000:2b:00.2: Adding to iommu group 82
[ 2.331469] pci 0000:2b:00.4: Adding to iommu group 83
[ 2.331579] pci 0000:2c:14.0: Adding to iommu group 84
[ 2.331640] pci 0000:2c:14.5: Adding to iommu group 85
[ 2.331798] pci 0000:2c:15.0: Adding to iommu group 86
[ 2.331871] pci 0000:2c:15.2: Adding to iommu group 86
[ 2.332035] pci 0000:2c:16.0: Adding to iommu group 87
[ 2.332097] pci 0000:2c:16.3: Adding to iommu group 87
[ 2.332158] pci 0000:2c:17.0: Adding to iommu group 88
[ 2.332225] pci 0000:2c:1b.0: Adding to iommu group 89
[ 2.332291] pci 0000:2c:1c.0: Adding to iommu group 90
[ 2.332356] pci 0000:2c:1c.3: Adding to iommu group 91
[ 2.332422] pci 0000:2c:1c.4: Adding to iommu group 92
[ 2.332492] pci 0000:2c:1d.0: Adding to iommu group 93
[ 2.332802] pci 0000:2c:1f.0: Adding to iommu group 94
[ 2.332865] pci 0000:2c:1f.3: Adding to iommu group 94
[ 2.332928] pci 0000:2c:1f.4: Adding to iommu group 94
[ 2.332993] pci 0000:2c:1f.5: Adding to iommu group 94
[ 2.333057] pci 0000:2c:1f.6: Adding to iommu group 94
[ 2.333124] pci 0000:2d:00.0: Adding to iommu group 95
[ 2.333190] pci 0000:2e:00.0: Adding to iommu group 96
[ 2.333257] pci 0000:2f:00.0: Adding to iommu group 97
[ 2.333332] pci 0000:30:00.0: Adding to iommu group 98
[ 2.333405] pci 0000:30:00.1: Adding to iommu group 99
[ 2.333473] pci 0000:31:00.0: Adding to iommu group 100
[ 2.333546] pci 0000:fe:00.0: Adding to iommu group 101
[ 2.333605] pci 0000:fe:00.1: Adding to iommu group 102
[ 2.333665] pci 0000:fe:00.2: Adding to iommu group 103
[ 2.333725] pci 0000:fe:05.0: Adding to iommu group 104
[ 2.333783] pci 0000:fe:05.1: Adding to iommu group 105
[ 2.333844] pci 0000:fe:05.2: Adding to iommu group 106
[ 2.333903] pci 0000:fe:05.3: Adding to iommu group 107
[ 2.333963] pci 0000:fe:05.4: Adding to iommu group 108
[ 2.334023] pci 0000:fe:05.5: Adding to iommu group 109
[ 2.334082] pci 0000:fe:05.6: Adding to iommu group 110
[ 2.334141] pci 0000:fe:05.7: Adding to iommu group 111
[ 2.334201] pci 0000:fe:06.0: Adding to iommu group 112
[ 2.334261] pci 0000:fe:06.1: Adding to iommu group 113
[ 2.334320] pci 0000:fe:07.0: Adding to iommu group 114
[ 2.334379] pci 0000:fe:09.0: Adding to iommu group 115
[ 2.334440] pci 0000:fe:0d.0: Adding to iommu group 116
[ 2.334499] pci 0000:fe:0d.1: Adding to iommu group 117
[ 2.334558] pci 0000:fe:0e.0: Adding to iommu group 118
[ 2.334617] pci 0000:fe:0e.1: Adding to iommu group 119
[ 2.334676] pci 0000:fe:0e.2: Adding to iommu group 120
[ 2.334738] pci 0000:fe:0e.3: Adding to iommu group 121
[ 2.334797] pci 0000:fe:0e.4: Adding to iommu group 122
[ 2.334863] pci 0000:fe:0e.5: Adding to iommu group 123
[ 2.334925] pci 0000:fe:0e.6: Adding to iommu group 124
[ 2.334984] pci 0000:fe:0e.7: Adding to iommu group 125
[ 2.335044] pci 0000:fe:0f.0: Adding to iommu group 126
[ 2.335103] pci 0000:fe:0f.1: Adding to iommu group 127
[ 2.335163] pci 0000:fe:0f.2: Adding to iommu group 128
[ 2.335223] pci 0000:fe:0f.3: Adding to iommu group 129
[ 2.335283] pci 0000:fe:0f.4: Adding to iommu group 130
[ 2.335348] pci 0000:fe:0f.5: Adding to iommu group 131
[ 2.335409] pci 0000:fe:0f.6: Adding to iommu group 132
[ 2.335468] pci 0000:fe:0f.7: Adding to iommu group 133
[ 2.335528] pci 0000:fe:10.0: Adding to iommu group 134
[ 2.335588] pci 0000:fe:10.1: Adding to iommu group 135
[ 2.335647] pci 0000:fe:10.2: Adding to iommu group 136
[ 2.335707] pci 0000:fe:10.3: Adding to iommu group 137
[ 2.335766] pci 0000:fe:10.4: Adding to iommu group 138
[ 2.335831] pci 0000:fe:10.5: Adding to iommu group 139
[ 2.335891] pci 0000:fe:10.6: Adding to iommu group 140
[ 2.335950] pci 0000:fe:10.7: Adding to iommu group 141
[ 2.336009] pci 0000:fe:11.0: Adding to iommu group 142
[ 2.336072] pci 0000:fe:11.1: Adding to iommu group 143
[ 2.336132] pci 0000:fe:11.2: Adding to iommu group 144
[ 2.336191] pci 0000:fe:11.3: Adding to iommu group 145
[ 2.336253] pci 0000:fe:11.4: Adding to iommu group 146
[ 2.336313] pci 0000:fe:11.5: Adding to iommu group 147
[ 2.336373] pci 0000:fe:11.6: Adding to iommu group 148
[ 2.336433] pci 0000:fe:11.7: Adding to iommu group 149
[ 2.336492] pci 0000:fe:12.0: Adding to iommu group 150
[ 2.336553] pci 0000:fe:12.1: Adding to iommu group 151
[ 2.336612] pci 0000:fe:12.2: Adding to iommu group 152
[ 2.336671] pci 0000:fe:12.3: Adding to iommu group 153
[ 2.336732] pci 0000:fe:12.4: Adding to iommu group 154
[ 2.336792] pci 0000:fe:12.5: Adding to iommu group 155
[ 2.336858] pci 0000:fe:12.6: Adding to iommu group 156
[ 2.336919] pci 0000:fe:12.7: Adding to iommu group 157
[ 2.336978] pci 0000:fe:13.0: Adding to iommu group 158
[ 2.337037] pci 0000:fe:13.1: Adding to iommu group 159
[ 2.337096] pci 0000:fe:13.2: Adding to iommu group 160
[ 2.337158] pci 0000:fe:13.3: Adding to iommu group 161
[ 2.337218] pci 0000:fe:13.4: Adding to iommu group 162
[ 2.337278] pci 0000:fe:13.5: Adding to iommu group 163
[ 2.337338] pci 0000:fe:13.6: Adding to iommu group 164
[ 2.337397] pci 0000:fe:13.7: Adding to iommu group 165
[ 2.337457] pci 0000:fe:14.0: Adding to iommu group 166
[ 2.337517] pci 0000:fe:14.1: Adding to iommu group 167
[ 2.337576] pci 0000:fe:14.2: Adding to iommu group 168
[ 2.337638] pci 0000:fe:14.3: Adding to iommu group 169
[ 2.337698] pci 0000:fe:14.4: Adding to iommu group 170
[ 2.337757] pci 0000:fe:14.5: Adding to iommu group 171
[ 2.337818] pci 0000:fe:14.6: Adding to iommu group 172
[ 2.337879] pci 0000:fe:14.7: Adding to iommu group 173
[ 2.337938] pci 0000:fe:15.0: Adding to iommu group 174
[ 2.337997] pci 0000:fe:15.1: Adding to iommu group 175
[ 2.338058] pci 0000:fe:15.2: Adding to iommu group 176
[ 2.338118] pci 0000:fe:15.3: Adding to iommu group 177
[ 2.338176] pci 0000:fe:15.4: Adding to iommu group 178
[ 2.338236] pci 0000:fe:15.5: Adding to iommu group 179
[ 2.338295] pci 0000:fe:15.6: Adding to iommu group 180
[ 2.338356] pci 0000:fe:15.7: Adding to iommu group 181
[ 2.338416] pci 0000:fe:16.0: Adding to iommu group 182
[ 2.338475] pci 0000:fe:16.1: Adding to iommu group 183
[ 2.338537] pci 0000:fe:16.2: Adding to iommu group 184
[ 2.338600] pci 0000:fe:16.3: Adding to iommu group 185
[ 2.338660] pci 0000:fe:16.4: Adding to iommu group 186
[ 2.338724] pci 0000:fe:16.5: Adding to iommu group 187
[ 2.338785] pci 0000:fe:16.6: Adding to iommu group 188
[ 2.338847] pci 0000:fe:16.7: Adding to iommu group 189
[ 2.338907] pci 0000:fe:17.0: Adding to iommu group 190
[ 2.338969] pci 0000:fe:17.1: Adding to iommu group 191
[ 2.339029] pci 0000:fe:17.2: Adding to iommu group 192
[ 2.339090] pci 0000:fe:17.3: Adding to iommu group 193
[ 2.339149] pci 0000:fe:17.4: Adding to iommu group 194
[ 2.339212] pci 0000:fe:17.5: Adding to iommu group 195
[ 2.339273] pci 0000:fe:17.6: Adding to iommu group 196
[ 2.339332] pci 0000:fe:17.7: Adding to iommu group 197
[ 2.339390] pci 0000:fe:18.0: Adding to iommu group 198
[ 2.339452] pci 0000:fe:18.1: Adding to iommu group 199
[ 2.339512] pci 0000:fe:18.2: Adding to iommu group 200
[ 2.339571] pci 0000:fe:18.3: Adding to iommu group 201
[ 2.339631] pci 0000:ff:00.0: Adding to iommu group 202
[ 2.339691] pci 0000:ff:00.1: Adding to iommu group 203
[ 2.339751] pci 0000:ff:00.2: Adding to iommu group 204
[ 2.339811] pci 0000:ff:00.3: Adding to iommu group 205
[ 2.339873] pci 0000:ff:00.4: Adding to iommu group 206
[ 2.339931] pci 0000:ff:00.5: Adding to iommu group 207
[ 2.339991] pci 0000:ff:00.6: Adding to iommu group 208
[ 2.340050] pci 0000:ff:00.7: Adding to iommu group 209
[ 2.340109] pci 0000:ff:01.0: Adding to iommu group 210
[ 2.340170] pci 0000:ff:01.1: Adding to iommu group 211
[ 2.340229] pci 0000:ff:01.2: Adding to iommu group 212
[ 2.340288] pci 0000:ff:01.3: Adding to iommu group 213
[ 2.340350] pci 0000:ff:01.4: Adding to iommu group 214
[ 2.340409] pci 0000:ff:01.5: Adding to iommu group 215
[ 2.340468] pci 0000:ff:01.6: Adding to iommu group 216
[ 2.340528] pci 0000:ff:01.7: Adding to iommu group 217
[ 2.340587] pci 0000:ff:02.0: Adding to iommu group 218
[ 2.340647] pci 0000:ff:02.1: Adding to iommu group 219
[ 2.340705] pci 0000:ff:02.2: Adding to iommu group 220
[ 2.340767] pci 0000:ff:02.3: Adding to iommu group 221
[ 2.340829] pci 0000:ff:02.4: Adding to iommu group 222
[ 2.340888] pci 0000:ff:02.5: Adding to iommu group 223
[ 2.340947] pci 0000:ff:02.6: Adding to iommu group 224
[ 2.341006] pci 0000:ff:02.7: Adding to iommu group 225
[ 2.341066] pci 0000:ff:03.0: Adding to iommu group 226
[ 2.341127] pci 0000:ff:03.1: Adding to iommu group 227
[ 2.341187] pci 0000:ff:03.2: Adding to iommu group 228
[ 2.341248] pci 0000:ff:03.3: Adding to iommu group 229
[ 2.341307] pci 0000:ff:03.4: Adding to iommu group 230
[ 2.341367] pci 0000:ff:03.5: Adding to iommu group 231
[ 2.341426] pci 0000:ff:03.6: Adding to iommu group 232
[ 2.341486] pci 0000:ff:03.7: Adding to iommu group 233
[ 2.341545] pci 0000:ff:04.0: Adding to iommu group 234
[ 2.341604] pci 0000:ff:04.1: Adding to iommu group 235
[ 2.341666] pci 0000:ff:04.2: Adding to iommu group 236
[ 2.341724] pci 0000:ff:04.3: Adding to iommu group 237
[ 2.341784] pci 0000:ff:04.4: Adding to iommu group 238
[ 2.341844] pci 0000:ff:04.5: Adding to iommu group 239
[ 2.341903] pci 0000:ff:04.6: Adding to iommu group 240
[ 2.341963] pci 0000:ff:04.7: Adding to iommu group 241
[ 2.342022] pci 0000:ff:05.0: Adding to iommu group 242
[ 2.342083] pci 0000:ff:05.1: Adding to iommu group 243
[ 2.342147] pci 0000:ff:05.2: Adding to iommu group 244
[ 2.342207] pci 0000:ff:05.3: Adding to iommu group 245
[ 2.342266] pci 0000:ff:05.4: Adding to iommu group 246
[ 2.342326] pci 0000:ff:05.5: Adding to iommu group 247
[ 2.342386] pci 0000:ff:05.6: Adding to iommu group 248
[ 2.342447] pci 0000:ff:05.7: Adding to iommu group 249
[ 2.342506] pci 0000:ff:06.0: Adding to iommu group 250
[ 2.342569] pci 0000:ff:06.1: Adding to iommu group 251
[ 2.342629] pci 0000:ff:06.2: Adding to iommu group 252
[ 2.342687] pci 0000:ff:06.3: Adding to iommu group 253
[ 2.342746] pci 0000:ff:06.4: Adding to iommu group 254
[ 2.342807] pci 0000:ff:06.5: Adding to iommu group 255
[ 2.342868] pci 0000:ff:06.6: Adding to iommu group 256
[ 2.342927] pci 0000:ff:06.7: Adding to iommu group 257
[ 2.342986] pci 0000:ff:07.0: Adding to iommu group 258
[ 2.343054] pci 0000:ff:07.1: Adding to iommu group 259
[ 2.343113] pci 0000:ff:07.2: Adding to iommu group 260
[ 2.343173] pci 0000:ff:07.3: Adding to iommu group 261
[ 2.343233] pci 0000:ff:07.4: Adding to iommu group 262
[ 2.343292] pci 0000:ff:07.5: Adding to iommu group 263
[ 2.343352] pci 0000:ff:07.6: Adding to iommu group 264
[ 2.343411] pci 0000:ff:07.7: Adding to iommu group 265
[ 2.343473] pci 0000:ff:08.0: Adding to iommu group 266
[ 2.343532] pci 0000:ff:08.1: Adding to iommu group 267
[ 2.343592] pci 0000:ff:08.2: Adding to iommu group 268
[ 2.343654] pci 0000:ff:08.3: Adding to iommu group 269
[ 2.343713] pci 0000:ff:08.4: Adding to iommu group 270
[ 2.343772] pci 0000:ff:08.5: Adding to iommu group 271
[ 2.343834] pci 0000:ff:08.6: Adding to iommu group 272
[ 2.343894] pci 0000:ff:08.7: Adding to iommu group 273
[ 2.343955] pci 0000:ff:09.0: Adding to iommu group 274
[ 2.344015] pci 0000:ff:09.1: Adding to iommu group 275
[ 2.344074] pci 0000:ff:09.2: Adding to iommu group 276
[ 2.344133] pci 0000:ff:09.3: Adding to iommu group 277
[ 2.344193] pci 0000:ff:09.4: Adding to iommu group 278
[ 2.344251] pci 0000:ff:09.5: Adding to iommu group 279
[ 2.344310] pci 0000:ff:09.6: Adding to iommu group 280
[ 2.344373] pci 0000:ff:09.7: Adding to iommu group 281
[ 2.344432] pci 0000:ff:0a.0: Adding to iommu group 282
[ 2.344491] pci 0000:ff:0a.1: Adding to iommu group 283
[ 2.344550] pci 0000:ff:0a.2: Adding to iommu group 284
[ 2.344610] pci 0000:ff:0a.3: Adding to iommu group 285
[ 2.581513] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 2.581523] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 2.581527] software IO TLB: mapped [mem 0x000000003f3dd000-0x00000000433dd000] (64MB)
[ 2.628498] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x36c657b5833, max_idle_ns: 881590513399 ns
[ 2.629245] clocksource: Switched to clocksource tsc
[ 2.695072] Initialise system trusted keyrings
[ 2.695102] Key type blacklist registered
[ 2.695511] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[ 2.696858] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 2.697669] fuse: init (API version 7.44)
[ 2.700624] integrity: Platform Keyring initialized
[ 2.700634] integrity: Machine keyring initialized
[ 2.712261] Key type asymmetric registered
[ 2.712263] Asymmetric key parser 'x509' registered
[ 2.712370] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[ 2.712837] io scheduler mq-deadline registered
[ 2.768326] ledtrig-cpu: registered to indicate activity on CPUs
[ 2.768847] pcieport 0000:00:00.4: PME: Signaling with IRQ 153
[ 2.769223] pcieport 0000:05:00.4: PME: Signaling with IRQ 154
[ 2.769555] pcieport 0000:0a:00.4: PME: Signaling with IRQ 155
[ 2.769863] pcieport 0000:0a:02.0: PME: Signaling with IRQ 156
[ 2.770667] pcieport 0000:2b:00.4: PME: Signaling with IRQ 158
[ 2.771028] pcieport 0000:2c:1b.0: PME: Signaling with IRQ 159
[ 2.771438] pcieport 0000:2c:1c.0: PME: Signaling with IRQ 160
[ 2.771479] pcieport 0000:2c:1c.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 2.772358] pcieport 0000:2c:1c.3: PME: Signaling with IRQ 161
[ 2.772731] pcieport 0000:2c:1c.4: PME: Signaling with IRQ 162
[ 2.773192] pcieport 0000:2c:1d.0: PME: Signaling with IRQ 163
[ 2.773684] pcieport 0000:45:00.4: PME: Signaling with IRQ 164
[ 2.773967] pcieport 0000:45:02.0: PME: Signaling with IRQ 165
[ 2.774258] pcieport 0000:45:06.0: PME: Signaling with IRQ 166
[ 2.774602] pcieport 0000:5f:00.4: PME: Signaling with IRQ 167
[ 2.774905] pcieport 0000:79:00.4: PME: Signaling with IRQ 168
[ 2.775222] pcieport 0000:93:00.4: PME: Signaling with IRQ 169
[ 2.775539] pcieport 0000:ad:00.4: PME: Signaling with IRQ 170
[ 2.775848] pcieport 0000:ad:02.0: PME: Signaling with IRQ 171
[ 2.776213] pcieport 0000:c7:00.4: PME: Signaling with IRQ 172
[ 2.776540] pcieport 0000:e1:00.4: PME: Signaling with IRQ 173
[ 2.778261] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 2.778456] ACPI: button: Power Button [PWRB]
[ 2.778610] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 2.778785] ACPI: button: Power Button [PWRF]
[ 2.879016] ERST: Error Record Serialization Table (ERST) support is initialized.
[ 2.879103] pstore: Using crash dump compression: deflate
[ 2.879107] pstore: Registered erst as persistent store backend
[ 2.879537] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 2.907469] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 2.932633] serial 0000:2c:16.3: enabling device (0001 -> 0003)
[ 2.954808] 0000:2c:16.3: ttyS4 at I/O 0x6048 (irq = 19, base_baud = 115200) is a 16550A
[ 2.955830] Linux agpgart interface v0.103
[ 2.958595] tpm_tis NTC0702:00: 2.0 TPM (device-id 0xFC, rev-id 1)
[ 2.978214] ACPI: bus type drm_connector registered
[ 3.043359] loop: module loaded
[ 3.044262] tun: Universal TUN/TAP device driver, 1.6
[ 3.044342] PPP generic driver version 2.4.2
[ 3.045106] xhci_hcd 0000:2c:14.0: xHCI Host Controller
[ 3.045133] xhci_hcd 0000:2c:14.0: new USB bus registered, assigned bus number 1
[ 3.046374] xhci_hcd 0000:2c:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 3.047440] xhci_hcd 0000:2c:14.0: xHCI Host Controller
[ 3.047447] xhci_hcd 0000:2c:14.0: new USB bus registered, assigned bus number 2
[ 3.047453] xhci_hcd 0000:2c:14.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 3.047537] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[ 3.047541] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.047545] usb usb1: Product: xHCI Host Controller
[ 3.047548] usb usb1: Manufacturer: Linux 6.16.0+ xhci-hcd
[ 3.047550] usb usb1: SerialNumber: 0000:2c:14.0
[ 3.047797] hub 1-0:1.0: USB hub found
[ 3.047839] hub 1-0:1.0: 16 ports detected
[ 3.048323] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[ 3.048327] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.048330] usb usb2: Product: xHCI Host Controller
[ 3.048333] usb usb2: Manufacturer: Linux 6.16.0+ xhci-hcd
[ 3.048335] usb usb2: SerialNumber: 0000:2c:14.0
[ 3.048430] hub 2-0:1.0: USB hub found
[ 3.048463] hub 2-0:1.0: 8 ports detected
[ 3.048860] xhci_hcd 0000:47:00.0: xHCI Host Controller
[ 3.048870] xhci_hcd 0000:47:00.0: new USB bus registered, assigned bus number 3
[ 3.107289] xhci_hcd 0000:47:00.0: hcc params 0x0200ef80 hci version 0x110 quirks 0x0000000000800010
[ 3.108062] xhci_hcd 0000:47:00.0: xHCI Host Controller
[ 3.108067] xhci_hcd 0000:47:00.0: new USB bus registered, assigned bus number 4
[ 3.108072] xhci_hcd 0000:47:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 3.108875] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[ 3.108879] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.108882] usb usb3: Product: xHCI Host Controller
[ 3.108884] usb usb3: Manufacturer: Linux 6.16.0+ xhci-hcd
[ 3.108887] usb usb3: SerialNumber: 0000:47:00.0
[ 3.109107] hub 3-0:1.0: USB hub found
[ 3.109115] hub 3-0:1.0: 2 ports detected
[ 3.109200] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 3.109224] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[ 3.109227] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.109230] usb usb4: Product: xHCI Host Controller
[ 3.109233] usb usb4: Manufacturer: Linux 6.16.0+ xhci-hcd
[ 3.109235] usb usb4: SerialNumber: 0000:47:00.0
[ 3.109318] hub 4-0:1.0: USB hub found
[ 3.109326] hub 4-0:1.0: 2 ports detected
[ 3.109780] i8042: PNP: No PS/2 controller found.
[ 3.109952] mousedev: PS/2 mouse device common for all mice
[ 3.110188] rtc_cmos 00:01: RTC can wake from S4
[ 3.113000] rtc_cmos 00:01: registered as rtc0
[ 3.113581] rtc_cmos 00:01: setting system clock to 2025-07-30T07:59:51 UTC (1753862391)
[ 3.113854] rtc_cmos 00:01: alarms up to one day, y3k, 114 bytes nvram
[ 3.113869] i2c_dev: i2c /dev entries driver
[ 3.142757] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 3.142848] device-mapper: uevent: version 1.0.3
[ 3.143242] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@xxxxxxxxxxxxxxx
[ 3.143258] intel_pstate: Intel P-state driver initializing
[ 3.241471] intel_pstate: HWP enabled
[ 3.242168] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[ 3.242173] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 3.256936] Console: switching to colour frame buffer device 240x67
[ 3.263902] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 3.264504] drop_monitor: Initializing network drop monitor service
[ 3.264864] NET: Registered PF_INET6 protocol family
[ 3.266324] Segment Routing with IPv6
[ 3.266363] In-situ OAM (IOAM) with IPv6
[ 3.266414] NET: Registered PF_PACKET protocol family
[ 3.266548] Key type dns_resolver registered
[ 3.285944] usb 1-6: new high-speed USB device number 2 using xhci_hcd
[ 3.383669] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 3.412832] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[ 3.416658] microcode: Current revision: 0x11000121
[ 3.432642] usb 1-6: New USB device found, idVendor=0bda, idProduct=5420, bcdDevice= 1.01
[ 3.432735] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.432767] usb 1-6: Product: 4-Port USB 2.0 Hub
[ 3.432789] usb 1-6: Manufacturer: Generic
[ 3.435124] hub 1-6:1.0: USB hub found
[ 3.436530] hub 1-6:1.0: 4 ports detected
[ 3.482837] resctrl: L3 allocation detected
[ 3.482883] resctrl: L2 allocation detected
[ 3.482919] resctrl: MB allocation detected
[ 3.482954] resctrl: L3 monitoring detected
[ 3.483512] IPI shorthand broadcast: enabled
[ 3.488242] sched_clock: Marking stable (3463002787, 24798440)->(5448006999, -1960205772)
[ 3.490923] registered taskstats version 1
[ 3.535042] usb 2-5: new SuperSpeed Plus Gen 2x1 USB device number 2 using xhci_hcd
[ 3.555892] Loading compiled-in X.509 certificates
[ 3.557985] Loaded X.509 cert 'Build time autogenerated kernel key: 91931248021c479e48d4a386d444777b90ed7b08'
[ 3.564351] Demotion targets for Node 0: null
[ 3.564520] usb 2-5: New USB device found, idVendor=0bda, idProduct=0420, bcdDevice= 1.01
[ 3.564615] usb 2-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.564660] usb 2-5: Product: 4-Port USB 3.0 Hub
[ 3.564690] usb 2-5: Manufacturer: Generic
[ 3.564926] Key type .fscrypt registered
[ 3.564954] Key type fscrypt-provisioning registered
[ 3.565164] Key type big_key registered
[ 3.565193] Key type trusted registered
[ 3.573256] hub 2-5:1.0: USB hub found
[ 3.575041] hub 2-5:1.0: 4 ports detected
[ 3.599526] Key type encrypted registered
[ 3.599585] AppArmor: AppArmor sha256 policy hashing enabled
[ 3.599939] integrity: Loading X.509 certificate: UEFI:db
[ 3.600037] integrity: Loaded X.509 cert 'Dell Inc.: Dell Bios DB Key: 637fa7a9f74471b406de0511557071fd41dd5487'
[ 3.601339] integrity: Loading X.509 certificate: UEFI:db
[ 3.602593] integrity: Loaded X.509 cert 'Dell Inc.: Dell Bios FW Aux Authority 2018: dd4df7c3f5ce7e5a77847915abc37b031f6b10bd'
[ 3.603703] integrity: Loading X.509 certificate: UEFI:db
[ 3.604786] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 3.606630] integrity: Loading X.509 certificate: UEFI:db
[ 3.608274] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 3.610502] integrity: Loading X.509 certificate: UEFI:db
[ 3.612818] integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
[ 3.614974] integrity: Loading X.509 certificate: UEFI:db
[ 3.617176] integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
[ 3.619702] Loading compiled-in module X.509 certificates
[ 3.620621] usb 3-1: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.90
[ 3.620777] Loaded X.509 cert 'Build time autogenerated kernel key: 91931248021c479e48d4a386d444777b90ed7b08'
[ 3.621592] usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 3.622559] ima: Allocated hash algorithm: sha256
[ 3.623495] usb 3-1: Product: USB2.0 Hub
[ 3.659262] hub 3-1:1.0: USB hub found
[ 3.662702] ima: No architecture policies found
[ 3.664174] evm: Initialising EVM extended attributes:
[ 3.664575] hub 3-1:1.0: 4 ports detected
[ 3.665152] evm: security.selinux
[ 3.667169] evm: security.SMACK64
[ 3.668525] evm: security.SMACK64EXEC
[ 3.669864] evm: security.SMACK64TRANSMUTE
[ 3.671156] evm: security.SMACK64MMAP
[ 3.672444] evm: security.apparmor
[ 3.672659] usb 1-14: new high-speed USB device number 3 using xhci_hcd
[ 3.673259] evm: security.ima
[ 3.675139] evm: security.capability
[ 3.676386] evm: HMAC attrs: 0x1
[ 3.678389] PM: Magic number: 1:445:977
[ 3.679720] pcie_pme 0000:ad:02.0:pcie001: hash matches
[ 3.681056] clockevents clockevent54: hash matches
[ 3.682345] pci 0000:fe:02.0: hash matches
[ 3.683877] acpi ACPI0007:139: hash matches
[ 3.685116] acpi ACPI0007:10c: hash matches
[ 3.691183] RAS: Correctable Errors collector initialized.
[ 3.721644] clk: Disabling unused clocks
[ 3.722838] PM: genpd: Disabling unused power domains
[ 3.733633] Freeing unused decrypted memory: 2036K
[ 3.737841] Freeing unused kernel image (initmem) memory: 5060K
[ 3.739071] Write protecting the kernel read-only data: 38912k
[ 3.742619] Freeing unused kernel image (text/rodata gap) memory: 1200K
[ 3.745567] Freeing unused kernel image (rodata/data gap) memory: 1940K
[ 3.754924] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 3.755669] Run /init as init process
[ 3.756373] with arguments:
[ 3.756375] /init
[ 3.756376] with environment:
[ 3.756376] HOME=/
[ 3.756377] TERM=linux
[ 3.756377] BOOT_IMAGE=/boot/vmlinuz-6.16.0+
[ 3.805351] usb 1-14: New USB device found, idVendor=0489, idProduct=e139, bcdDevice= 1.00
[ 3.806506] usb 1-14: New USB device strings: Mfr=5, Product=6, SerialNumber=7
[ 3.807577] usb 1-14: Product: Wireless_Device
[ 3.808531] usb 1-14: Manufacturer: MediaTek Inc.
[ 3.808533] usb 1-14: SerialNumber: 000000000
[ 3.878931] usb 1-6.1: new full-speed USB device number 4 using xhci_hcd
[ 3.967999] usb 3-1.2: new full-speed USB device number 3 using xhci_hcd
[ 3.979621] usb 1-6.1: New USB device found, idVendor=cafe, idProduct=0000, bcdDevice= 2.00
[ 3.981576] usb 1-6.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.984143] usb 1-6.1: Product: Zapper main board
[ 3.985919] usb 1-6.1: Manufacturer: Canonical
[ 3.987637] usb 1-6.1: SerialNumber: 123456
[ 4.005978] gpio gpiochip0: line cnt 592 is greater than fast path cnt 512
[ 4.046047] hid: raw HID events driver (C) Jiri Kosina
[ 4.046329] ahci 0000:2c:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, RAID mode
[ 4.048777] ahci 0000:2c:17.0: 8/8 ports implemented (port mask 0xff)
[ 4.049796] ahci 0000:2c:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds
[ 4.051009] rtsx_pci 0000:2e:00.0: enabling device (0000 -> 0002)
[ 4.051160] Intel(R) 2.5G Ethernet Linux Driver
[ 4.052299] MACsec IEEE 802.1AE
[ 4.052305] vmd 0000:79:00.5: PCI host bridge to bus 10000:80
[ 4.052309] pci_bus 10000:80: root bus resource [bus 80-9f]
[ 4.052311] pci_bus 10000:80: root bus resource [mem 0xc0000000-0xc3ffffff]
[ 4.052311] pci_bus 10000:80: root bus resource [mem 0x1e6ffe002010-0x1e6ffe1fffff 64bit]
[ 4.052339] pci 10000:80:02.0: [8086:0db0] type 01 class 0x060400 PCIe Root Port
[ 4.052357] pci 10000:80:02.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.052359] pci 10000:80:02.0: PCI bridge to [bus 81]
[ 4.052361] pci 10000:80:02.0: bridge window [io 0x0000-0x5fff]
[ 4.052373] pci 10000:80:02.0: enabling Extended Tags
[ 4.052451] pci 10000:80:02.0: PME# supported from D0 D3hot D3cold
[ 4.052506] pci 10000:80:02.0: PTM enabled (root), 2ns granularity
[ 4.052609] pci 10000:80:02.0: Adding to iommu group 41
[ 4.052648] pci 10000:80:04.0: [8086:0db1] type 01 class 0x060400 PCIe Root Port
[ 4.052664] pci 10000:80:04.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.052666] pci 10000:80:04.0: PCI bridge to [bus 82]
[ 4.052668] pci 10000:80:04.0: bridge window [io 0x0000-0x5fff]
[ 4.052678] pci 10000:80:04.0: enabling Extended Tags
[ 4.052751] pci 10000:80:04.0: PME# supported from D0 D3hot D3cold
[ 4.052804] pci 10000:80:04.0: PTM enabled (root), 2ns granularity
[ 4.052867] Copyright(c) 2018 Intel Corporation.
[ 4.052877] pci 10000:80:04.0: Adding to iommu group 41
[ 4.052906] pci 10000:80:06.0: [8086:0db2] type 01 class 0x060400 PCIe Root Port
[ 4.052922] pci 10000:80:06.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.052923] pci 10000:80:06.0: PCI bridge to [bus 83]
[ 4.052925] pci 10000:80:06.0: bridge window [io 0x0000-0x5fff]
[ 4.052936] pci 10000:80:06.0: enabling Extended Tags
[ 4.053009] pci 10000:80:06.0: PME# supported from D0 D3hot D3cold
[ 4.053059] pci 10000:80:06.0: PTM enabled (root), 2ns granularity
[ 4.053130] pci 10000:80:06.0: Adding to iommu group 41
[ 4.053159] pci 10000:80:08.0: [8086:0db3] type 01 class 0x060400 PCIe Root Port
[ 4.053176] pci 10000:80:08.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.053177] pci 10000:80:08.0: PCI bridge to [bus 84]
[ 4.053179] pci 10000:80:08.0: bridge window [io 0x0000-0x5fff]
[ 4.053191] pci 10000:80:08.0: enabling Extended Tags
[ 4.053263] pci 10000:80:08.0: PME# supported from D0 D3hot D3cold
[ 4.053311] pci 10000:80:08.0: PTM enabled (root), 2ns granularity
[ 4.053393] pci 10000:80:08.0: Adding to iommu group 41
[ 4.053438] pci 10000:80:02.0: PCI bridge to [bus 81]
[ 4.053468] pci 10000:80:04.0: PCI bridge to [bus 82]
[ 4.053497] pci 10000:80:06.0: PCI bridge to [bus 83]
[ 4.053528] pci 10000:80:08.0: PCI bridge to [bus 84]
[ 4.056588] e1000e: Intel(R) PRO/1000 Network Driver
[ 4.056589] Loading mpi3mr version 8.13.0.5.50
[ 4.057257] pci 10000:80:02.0: BAR 0 [mem 0x1e6ffe010000-0x1e6ffe01ffff 64bit]: assigned
[ 4.057265] pci 10000:80:04.0: BAR 0 [mem 0x1e6ffe020000-0x1e6ffe02ffff 64bit]: assigned
[ 4.057271] pci 10000:80:06.0: BAR 0 [mem 0x1e6ffe030000-0x1e6ffe03ffff 64bit]: assigned
[ 4.057277] pci 10000:80:08.0: BAR 0 [mem 0x1e6ffe040000-0x1e6ffe04ffff 64bit]: assigned
[ 4.057283] pci 10000:80:02.0: bridge window [io size 0x6000]: can't assign; no space
[ 4.057285] pci 10000:80:02.0: bridge window [io size 0x6000]: failed to assign
[ 4.057286] pci 10000:80:04.0: bridge window [io size 0x6000]: can't assign; no space
[ 4.057286] pci 10000:80:04.0: bridge window [io size 0x6000]: failed to assign
[ 4.057287] pci 10000:80:06.0: bridge window [io size 0x6000]: can't assign; no space
[ 4.057288] pci 10000:80:06.0: bridge window [io size 0x6000]: failed to assign
[ 4.057289] pci 10000:80:08.0: bridge window [io size 0x6000]: can't assign; no space
[ 4.057289] pci 10000:80:08.0: bridge window [io size 0x6000]: failed to assign
[ 4.057291] pci 10000:80:02.0: bridge window [io size 0x6000]: can't assign; no space
[ 4.057291] pci 10000:80:02.0: bridge window [io size 0x6000]: failed to assign
[ 4.057292] pci 10000:80:04.0: bridge window [io size 0x6000]: can't assign; no space
[ 4.057293] pci 10000:80:04.0: bridge window [io size 0x6000]: failed to assign
[ 4.057294] pci 10000:80:06.0: bridge window [io size 0x6000]: can't assign; no space
[ 4.057294] pci 10000:80:06.0: bridge window [io size 0x6000]: failed to assign
[ 4.057295] pci 10000:80:08.0: bridge window [io size 0x6000]: can't assign; no space
[ 4.057296] pci 10000:80:08.0: bridge window [io size 0x6000]: failed to assign
[ 4.057297] pci 10000:80:02.0: PCI bridge to [bus 81]
[ 4.057307] pci 10000:80:04.0: PCI bridge to [bus 82]
[ 4.057316] pci 10000:80:06.0: PCI bridge to [bus 83]
[ 4.057325] pci 10000:80:08.0: PCI bridge to [bus 84]
[ 4.057580] pcieport 10000:80:02.0: can't derive routing for PCI INT A
[ 4.058231] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 4.059117] pcieport 10000:80:02.0: PCI INT A: no GSI
[ 4.085813] usb 1-6.3: new low-speed USB device number 5 using xhci_hcd
[ 4.086123] mpi3mr0: mpi3mr_probe :host protection capabilities enabled DIF1 DIF2 DIF3
[ 4.099858] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[ 4.100205] workqueue: work_for_cpu_fn hogged CPU for >13333us 4 times, consider switching to WQ_UNBOUND
[ 4.100992] mpi3mr0: iomem(0x00001e4fffe00000), mapped(0x00000000b602a457), size(16384)
[ 4.101599] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[ 4.102295] mpi3mr0: Number of MSI-X vectors found in capabilities: (128)
[ 4.102318] mpi3mr0: ioc_status(0x00000011), ioc_config(0x00470001), ioc_info(0x00000000ff000000) at the bringup
[ 4.103410] usbcore: registered new interface driver usbhid
[ 4.103834] mpi3mr0: ready timeout: 510 seconds
[ 4.104499] usbhid: USB HID core driver
[ 4.105164] mpi3mr0: controller is in ready state during detection
[ 4.115481] mpi3mr0: issuing message unit reset (MUR) to bring to reset state
[ 4.116141] mpi3mr0: Issuing Message unit Reset(MUR)
[ 4.117690] igc 0000:31:00.0: PCIe PTM not supported by PCIe bus/controller
[ 4.119753] e1000e 0000:2c:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 4.134800] workqueue: work_for_cpu_fn hogged CPU for >13333us 5 times, consider switching to WQ_UNBOUND
[ 4.160239] pcieport 10000:80:02.0: PME: Signaling with IRQ 192
[ 4.161356] intel-lpss 0000:2c:15.0: enabling device (0000 -> 0002)
[ 4.162959] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 4.165830] scsi host1: ahci
[ 4.172827] scsi host2: ahci
[ 4.176614] usb 1-6.3: New USB device found, idVendor=0461, idProduct=4141, bcdDevice= 1.00
[ 4.177845] scsi host3: ahci
[ 4.179242] usb 1-6.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.181919] usb 1-6.3: Product: HP 320M USB Optical Mouse
[ 4.183247] usb 1-6.3: Manufacturer: PixArt
[ 4.184675] scsi host4: ahci
[ 4.189002] scsi host5: ahci
[ 4.203800] workqueue: work_for_cpu_fn hogged CPU for >13333us 7 times, consider switching to WQ_UNBOUND
[ 4.241653] atlantic: Detect ATL2FW 105002a
[ 4.258644] usb 3-1.2: New USB device found, idVendor=04b4, idProduct=0004, bcdDevice= 0.00
[ 4.261621] usb 3-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.265044] usb 3-1.2: Product: USB-Serial (Single Channel)
[ 4.266160] scsi host6: ahci
[ 4.267750] usb 3-1.2: Manufacturer: Cypress Semiconductor
[ 4.268647] mpi3mr0: Base IOC Sts/Config after successful MUR is (0x00000010)/(0x00470000)
[ 4.269688] usb 1-6.4: new low-speed USB device number 6 using xhci_hcd
[ 4.270399] mpi3mr0: bringing controller to ready state
[ 4.279811] pcieport 10000:80:04.0: can't derive routing for PCI INT A
[ 4.280634] pcieport 10000:80:04.0: PCI INT A: no GSI
[ 4.281718] pcieport 10000:80:04.0: PME: Signaling with IRQ 209
[ 4.291838] scsi host7: ahci
[ 4.300852] scsi host8: ahci
[ 4.301564] ata1: SATA max UDMA/133 abar m2048@0x9d823000 port 0x9d823100 irq 190 lpm-pol 3
[ 4.302289] ata2: SATA max UDMA/133 abar m2048@0x9d823000 port 0x9d823180 irq 190 lpm-pol 3
[ 4.302984] ata3: SATA max UDMA/133 abar m2048@0x9d823000 port 0x9d823200 irq 190 lpm-pol 3
[ 4.303645] ata4: SATA max UDMA/133 abar m2048@0x9d823000 port 0x9d823280 irq 190 lpm-pol 3
[ 4.304337] ata5: SATA max UDMA/133 abar m2048@0x9d823000 port 0x9d823300 irq 190 lpm-pol 3
[ 4.305024] ata6: SATA max UDMA/133 abar m2048@0x9d823000 port 0x9d823380 irq 190 lpm-pol 3
[ 4.305649] ata7: SATA max UDMA/133 abar m2048@0x9d823000 port 0x9d823400 irq 190 lpm-pol 3
[ 4.306285] ata8: SATA max UDMA/133 abar m2048@0x9d823000 port 0x9d823480 irq 190 lpm-pol 3
[ 4.309721] e1000e 0000:2c:1f.6 0000:2c:1f.6 (uninitialized): registered PHC clock
[ 4.313869] pcieport 10000:80:06.0: can't derive routing for PCI INT A
[ 4.314489] pcieport 10000:80:06.0: PCI INT A: no GSI
[ 4.315141] pcieport 10000:80:06.0: PME: Signaling with IRQ 210
[ 4.315786] intel-lpss 0000:2c:15.2: enabling device (0000 -> 0002)
[ 4.316724] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 4.320835] igc 0000:31:00.0 (unnamed net_device) (uninitialized): PHC added
[ 4.334530] pcieport 10000:80:08.0: can't derive routing for PCI INT A
[ 4.335105] pcieport 10000:80:08.0: PCI INT A: no GSI
[ 4.335710] pcieport 10000:80:08.0: PME: Signaling with IRQ 211
[ 4.339615] vmd 0000:79:00.5: Bound to PCI domain 10000
[ 4.365238] usb 1-6.4: New USB device found, idVendor=046d, idProduct=c31d, bcdDevice=66.01
[ 4.368580] usb 1-6.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.371282] usb 1-6.4: Product: USB Keyboard
[ 4.372678] usb 1-6.4: Manufacturer: Logitech
[ 4.376327] mpi3mr0: successfully transitioned to ready state
[ 4.377930] vmd 0000:93:00.5: PCI host bridge to bus 10001:00
[ 4.378862] pci_bus 10001:00: root bus resource [bus 00-1f]
[ 4.379776] pci_bus 10001:00: root bus resource [mem 0xcc000000-0xcfffffff]
[ 4.382276] mpi3mr0: IOCFactsdata length mismatch driver_sz(112) firmware_sz(104)
[ 4.383218] mpi3mr0: ioc_num(0), maxopQ(127), maxopRepQ(127), maxdh(1023),
[ 4.383220] mpi3mr0: maxreqs(8192), mindh(1) maxvectors(128) maxperids(1024)
[ 4.385042] mpi3mr0: SGEModMask 0x80 SGEModVal 0x80 SGEModShift 0x18
[ 4.385044] mpi3mr0: DMA mask 63 InitialPE status 0x20 max_data_len (1048576)
[ 4.386772] mpi3mr0: max_dev_per_throttle_group(16), max_throttle_groups(241)
[ 4.387648] mpi3mr0: io_throttle_data_len(68KiB), io_throttle_high(128MiB), io_throttle_low(64MiB)
[ 4.389830] mpi3mr0: Changing DMA mask from 0xffffffffffffffff to 0x7fffffffffffffff
[ 4.390524] pci_bus 10001:00: root bus resource [mem 0x1e7ffe002010-0x1e7ffe1fffff 64bit]
[ 4.391220] pci 10001:00:02.0: [8086:0db0] type 01 class 0x060400 PCIe Root Port
[ 4.391843] pci 10001:00:02.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.392445] pci 10001:00:02.0: PCI bridge to [bus 0a]
[ 4.393049] pci 10001:00:02.0: bridge window [io 0x0000-0x6fff]
[ 4.393617] pci 10001:00:02.0: enabling Extended Tags
[ 4.397986] pci 10001:00:02.0: PME# supported from D0 D3hot D3cold
[ 4.398668] pci 10001:00:02.0: PTM enabled (root), 2ns granularity
[ 4.399459] pci 10001:00:02.0: Adding to iommu group 32
[ 4.400122] pci 10001:00:04.0: [8086:0db1] type 01 class 0x060400 PCIe Root Port
[ 4.400719] pci 10001:00:04.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.401336] pci 10001:00:04.0: PCI bridge to [bus 0b]
[ 4.401902] pci 10001:00:04.0: bridge window [io 0x0000-0x6fff]
[ 4.402457] pci 10001:00:04.0: enabling Extended Tags
[ 4.409826] mpi3mr0: Running in RAID Personality
[ 4.409828] mpi3mr0: FW version(8.3.1.0.0.1)
[ 4.411496] mpi3mr0: Protocol=(Initiator,NVMe attachment), Capabilities=(RAID,MultiPath)
[ 4.415797] input: Canonical Zapper main board as /devices/pci0000:2c/0000:2c:14.0/usb1/1-6/1-6.1/1-6.1:1.0/0003:CAFE:0000.0001/input/input2
[ 4.421822] mpi3mr0: number of sgl entries=256 chain buffer size=4KB
[ 4.426076] mpi3mr0: reply buf pool(0x00000000134f82ae): depth(8256), frame_size(128), pool_size(1032 kB), reply_dma(0xffc00000)
[ 4.426829] mpi3mr0: reply_free_q pool(0x00000000a1eb110a): depth(8257), frame_size(8), pool_size(64 kB), reply_dma(0xffbe0000)
[ 4.427544] mpi3mr0: sense_buf pool(0x00000000ac8a92ce): depth(2730), frame_size(256), pool_size(682 kB), sense_dma(0xffb00000)
[ 4.428266] mpi3mr0: sense_buf_q pool(0x00000000bf08fd4e): depth(2731), frame_size(8), pool_size(21 kB), sense_dma(0xffaf8000)
[ 4.429088] pci 10001:00:04.0: PME# supported from D0 D3hot D3cold
[ 4.429822] i40e 0000:ae:00.0: fw 9.840.76614 api 1.15 nvm 9.40 0x8000f6bd 22.5.7 [8086:15ff] [8086:0005]
[ 4.430558] pci 10001:00:04.0: PTM enabled (root), 2ns granularity
[ 4.468797] hid-generic 0003:CAFE:0000.0001: input,hidraw0: USB HID v1.00 Keyboard [Canonical Zapper main board] on usb-0000:2c:14.0-6.1/input0
[ 4.472288] input: Canonical Zapper main board as /devices/pci0000:2c/0000:2c:14.0/usb1/1-6/1-6.1/1-6.1:1.1/0003:CAFE:0000.0002/input/input3
[ 4.475781] hid-generic 0003:CAFE:0000.0002: input,hidraw1: USB HID v1.00 Mouse [Canonical Zapper main board] on usb-0000:2c:14.0-6.1/input1
[ 4.477551] input: PixArt HP 320M USB Optical Mouse as /devices/pci0000:2c/0000:2c:14.0/usb1/1-6/1-6.3/1-6.3:1.0/0003:0461:4141.0003/input/input4
[ 4.479257] hid-generic 0003:0461:4141.0003: input,hidraw2: USB HID v1.11 Mouse [PixArt HP 320M USB Optical Mouse] on usb-0000:2c:14.0-6.3/input0
[ 4.480965] input: Logitech USB Keyboard as /devices/pci0000:2c/0000:2c:14.0/usb1/1-6/1-6.4/1-6.4:1.0/0003:046D:C31D.0004/input/input5
[ 4.533557] pci 10001:00:04.0: Adding to iommu group 32
[ 4.533856] hid-generic 0003:046D:C31D.0004: input,hidraw3: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:2c:14.0-6.4/input0
[ 4.534845] e1000e 0000:2c:1f.6 eth1: (PCI Express:2.5GT/s:Width x1) f4:6b:8c:fa:89:a1
[ 4.539167] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:2c/0000:2c:14.0/usb1/1-6/1-6.4/1-6.4:1.1/0003:046D:C31D.0005/input/input6
[ 4.540158] workqueue: work_for_cpu_fn hogged CPU for >13333us 11 times, consider switching to WQ_UNBOUND
[ 4.540170] e1000e 0000:2c:1f.6 eth1: Intel(R) PRO/1000 Network Connection
[ 4.546991] igc 0000:31:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
[ 4.551641] igc 0000:31:00.0 eth2: MAC: f0:b2:b9:27:47:27
[ 4.552904] pci 10001:00:06.0: [8086:0db2] type 01 class 0x060400 PCIe Root Port
[ 4.553615] pci 10001:00:06.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.554427] pci 10001:00:06.0: PCI bridge to [bus 0c]
[ 4.555210] pci 10001:00:06.0: bridge window [io 0x0000-0x6fff]
[ 4.555945] pci 10001:00:06.0: enabling Extended Tags
[ 4.556842] e1000e 0000:2c:1f.6 eth1: MAC: 15, PHY: 12, PBA No: FFFFFF-0FF
[ 4.557910] pci 10001:00:06.0: PME# supported from D0 D3hot D3cold
[ 4.558653] pci 10001:00:06.0: PTM enabled (root), 2ns granularity
[ 4.559527] pci 10001:00:06.0: Adding to iommu group 32
[ 4.560347] pci 10001:00:08.0: [8086:0db3] type 01 class 0x060400 PCIe Root Port
[ 4.561094] pci 10001:00:08.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.561783] pci 10001:00:08.0: PCI bridge to [bus 0d]
[ 4.562580] pci 10001:00:08.0: bridge window [io 0x0000-0x6fff]
[ 4.563353] pci 10001:00:08.0: enabling Extended Tags
[ 4.564216] pci 10001:00:08.0: PME# supported from D0 D3hot D3cold
[ 4.564966] pci 10001:00:08.0: PTM enabled (root), 2ns granularity
[ 4.565714] pci 10001:00:08.0: Adding to iommu group 32
[ 4.570004] pci 10001:0a:00.0: [1c5c:1069] type 00 class 0x010802 PCIe Endpoint
[ 4.570726] pci 10001:0a:00.0: BAR 0 [mem 0x00000000-0x00003fff 64bit]
[ 4.574838] mpi3mr0: firmware package version(8.3.1.0.00000-00001)
[ 4.578829] mpi3mr0: MSI-X vectors supported: 128, no of cores: 172,
[ 4.578830] mpi3mr0: MSI-x vectors requested: 128 poll_queues 0
[ 4.588816] i40e 0000:ae:00.0: MAC address: b4:83:51:1e:56:bc
[ 4.593077] i40e 0000:ae:00.0: FW LLDP is enabled
[ 4.601566] input: Logitech USB Keyboard System Control as /devices/pci0000:2c/0000:2c:14.0/usb1/1-6/1-6.4/1-6.4:1.1/0003:046D:C31D.0005/input/input7
[ 4.606319] hid-generic 0003:046D:C31D.0005: input,hidraw4: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:2c:14.0-6.4/input1
[ 4.611337] ata2: SATA link down (SStatus 4 SControl 300)
[ 4.613115] i40e 0000:ae:00.0: PCI-Express: Speed 8.0GT/s Width x8
[ 4.614888] ata1: SATA link down (SStatus 4 SControl 300)
[ 4.615862] pci 10001:0a:00.0: Adding to iommu group 32
[ 4.620224] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 4.622820] pci 10001:00:02.0: PCI bridge to [bus 0a]
[ 4.623816] ata3: SATA link down (SStatus 4 SControl 300)
[ 4.625024] pci 10001:00:04.0: PCI bridge to [bus 0b]
[ 4.626850] ata6: SATA link down (SStatus 4 SControl 300)
[ 4.627697] pci 10001:00:06.0: PCI bridge to [bus 0c]
[ 4.628581] ata8: SATA link down (SStatus 4 SControl 300)
[ 4.629743] i40e 0000:ae:00.0: Features: PF-id[0] VFs: 64 VSIs: 66 QP: 119 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[ 4.630845] ata5: SATA link down (SStatus 4 SControl 300)
[ 4.631927] pci 10001:00:08.0: PCI bridge to [bus 0d]
[ 4.632835] ata7: SATA link down (SStatus 4 SControl 300)
[ 4.635064] ata4.00: ATAPI: HL-DT-ST DVD+/-RW GU90N, A1C6, max UDMA/100
[ 4.643236] ata4.00: configured for UDMA/100
[ 4.643392] mpi3mr0: trying to create 127 operational queue pairs
[ 4.645311] mpi3mr0: allocating operational queues through segmented queues
[ 4.651688] scsi 4:0:0:0: CD-ROM HL-DT-ST DVD+-RW GU90N A1C6 PQ: 0 ANSI: 5
[ 4.653293] i40e 0000:ae:00.1: fw 9.840.76614 api 1.15 nvm 9.40 0x8000f6bd 22.5.7 [8086:15ff] [8086:0005]
[ 4.712644] sr 4:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 4.717120] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 4.753921] sr 4:0:0:0: Attached scsi CD-ROM sr0
[ 4.754223] sr 4:0:0:0: Attached scsi generic sg0 type 5
[ 4.759765] i40e 0000:ae:00.1: MAC address: b4:83:51:1e:56:bd
[ 4.762005] i40e 0000:ae:00.1: FW LLDP is enabled
[ 4.763597] e1000e 0000:2c:1f.6 enp44s31f6: renamed from eth1
[ 4.768982] igc 0000:31:00.0 enp49s0: renamed from eth2
[ 4.773570] atlantic 0000:2d:00.0 enp45s0: renamed from eth0
[ 4.788714] i40e 0000:ae:00.1: PCI-Express: Speed 8.0GT/s Width x8
[ 4.795172] i40e 0000:ae:00.1: Features: PF-id[1] VFs: 64 VSIs: 66 QP: 119 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[ 4.801155] i40e 0000:ae:00.0 ens13f0np0: renamed from eth3
[ 4.803894] i40e 0000:ae:00.1 ens13f1np1: renamed from eth0
[ 4.861985] pci 10001:00:02.0: bridge window [mem 0xcc000000-0xcc0fffff]: assigned
[ 4.863302] pci 10001:00:02.0: BAR 0 [mem 0x1e7ffe010000-0x1e7ffe01ffff 64bit]: assigned
[ 4.864462] pci 10001:00:04.0: BAR 0 [mem 0x1e7ffe020000-0x1e7ffe02ffff 64bit]: assigned
[ 4.865515] pci 10001:00:06.0: BAR 0 [mem 0x1e7ffe030000-0x1e7ffe03ffff 64bit]: assigned
[ 4.866476] pci 10001:00:08.0: BAR 0 [mem 0x1e7ffe040000-0x1e7ffe04ffff 64bit]: assigned
[ 4.867408] pci 10001:00:02.0: bridge window [io size 0x7000]: can't assign; no space
[ 4.868285] pci 10001:00:02.0: bridge window [io size 0x7000]: failed to assign
[ 4.872616] pci 10001:00:04.0: bridge window [io size 0x7000]: can't assign; no space
[ 4.873250] pci 10001:00:04.0: bridge window [io size 0x7000]: failed to assign
[ 4.877033] pci 10001:00:06.0: bridge window [io size 0x7000]: can't assign; no space
[ 4.877625] pci 10001:00:06.0: bridge window [io size 0x7000]: failed to assign
[ 4.878245] pci 10001:00:08.0: bridge window [io size 0x7000]: can't assign; no space
[ 4.878802] pci 10001:00:08.0: bridge window [io size 0x7000]: failed to assign
[ 4.882578] pci 10001:00:02.0: bridge window [io size 0x7000]: can't assign; no space
[ 4.883165] pci 10001:00:02.0: bridge window [io size 0x7000]: failed to assign
[ 4.883729] pci 10001:00:04.0: bridge window [io size 0x7000]: can't assign; no space
[ 4.884334] pci 10001:00:04.0: bridge window [io size 0x7000]: failed to assign
[ 4.884868] pci 10001:00:06.0: bridge window [io size 0x7000]: can't assign; no space
[ 4.885402] pci 10001:00:06.0: bridge window [io size 0x7000]: failed to assign
[ 4.885942] pci 10001:00:08.0: bridge window [io size 0x7000]: can't assign; no space
[ 4.886469] pci 10001:00:08.0: bridge window [io size 0x7000]: failed to assign
[ 4.890235] pci 10001:0a:00.0: BAR 0 [mem 0xcc000000-0xcc003fff 64bit]: assigned
[ 4.890768] pci 10001:00:02.0: PCI bridge to [bus 0a]
[ 4.891364] pci 10001:00:02.0: bridge window [mem 0xcc000000-0xcc0fffff]
[ 4.891909] pci 10001:00:04.0: PCI bridge to [bus 0b]
[ 4.892439] pci 10001:00:06.0: PCI bridge to [bus 0c]
[ 4.892991] pci 10001:00:08.0: PCI bridge to [bus 0d]
[ 4.896766] pcieport 10001:00:02.0: can't derive routing for PCI INT A
[ 4.897372] pcieport 10001:00:02.0: PCI INT A: no GSI
[ 4.898037] pcieport 10001:00:02.0: PME: Signaling with IRQ 598
[ 4.901881] pcieport 10001:00:04.0: can't derive routing for PCI INT A
[ 4.902413] pcieport 10001:00:04.0: PCI INT A: no GSI
[ 4.903030] pcieport 10001:00:04.0: PME: Signaling with IRQ 599
[ 4.906835] pcieport 10001:00:06.0: can't derive routing for PCI INT A
[ 4.907320] pcieport 10001:00:06.0: PCI INT A: no GSI
[ 4.907896] pcieport 10001:00:06.0: PME: Signaling with IRQ 600
[ 4.911683] pcieport 10001:00:08.0: can't derive routing for PCI INT A
[ 4.912230] pcieport 10001:00:08.0: PCI INT A: no GSI
[ 4.912816] pcieport 10001:00:08.0: PME: Signaling with IRQ 601
[ 4.913402] vmd 0000:93:00.5: Bound to PCI domain 10001
[ 4.917138] vmd 0000:ad:00.5: PCI host bridge to bus 10002:00
[ 4.917617] pci_bus 10002:00: root bus resource [bus 00-1f]
[ 4.918156] pci_bus 10002:00: root bus resource [mem 0xd8000000-0xdbffffff]
[ 4.918631] pci_bus 10002:00: root bus resource [mem 0x1e8ffec02010-0x1e8ffedfffff 64bit]
[ 4.919169] pci 10002:00:06.0: [8086:0db2] type 01 class 0x060400 PCIe Root Port
[ 4.919658] pci 10002:00:06.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.920167] pci 10002:00:06.0: PCI bridge to [bus 0a]
[ 4.920628] pci 10002:00:06.0: bridge window [io 0x0000-0x7fff]
[ 4.921131] pci 10002:00:06.0: enabling Extended Tags
[ 4.921670] pci 10002:00:06.0: PME# supported from D0 D3hot D3cold
[ 4.922208] pci 10002:00:06.0: PTM enabled (root), 2ns granularity
[ 4.922759] pci 10002:00:06.0: Adding to iommu group 22
[ 4.923311] pci 10002:00:08.0: [8086:0db3] type 01 class 0x060400 PCIe Root Port
[ 4.923782] pci 10002:00:08.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.924285] pci 10002:00:08.0: PCI bridge to [bus 0b]
[ 4.924724] pci 10002:00:08.0: bridge window [io 0x0000-0x7fff]
[ 4.925209] pci 10002:00:08.0: enabling Extended Tags
[ 4.925723] pci 10002:00:08.0: PME# supported from D0 D3hot D3cold
[ 4.926236] pci 10002:00:08.0: PTM enabled (root), 2ns granularity
[ 4.926757] pci 10002:00:08.0: Adding to iommu group 22
[ 4.927289] pci 10002:00:06.0: PCI bridge to [bus 0a]
[ 4.927746] pci 10002:00:08.0: PCI bridge to [bus 0b]
[ 4.931055] pci 10002:00:06.0: BAR 0 [mem 0x1e8ffec10000-0x1e8ffec1ffff 64bit]: assigned
[ 4.931486] pci 10002:00:08.0: BAR 0 [mem 0x1e8ffec20000-0x1e8ffec2ffff 64bit]: assigned
[ 4.931923] pci 10002:00:06.0: bridge window [io size 0x8000]: can't assign; no space
[ 4.932329] pci 10002:00:06.0: bridge window [io size 0x8000]: failed to assign
[ 4.936000] pci 10002:00:08.0: bridge window [io size 0x8000]: can't assign; no space
[ 4.936413] pci 10002:00:08.0: bridge window [io size 0x8000]: failed to assign
[ 4.936821] pci 10002:00:06.0: bridge window [io size 0x8000]: can't assign; no space
[ 4.937255] pci 10002:00:06.0: bridge window [io size 0x8000]: failed to assign
[ 4.937666] pci 10002:00:08.0: bridge window [io size 0x8000]: can't assign; no space
[ 4.938110] pci 10002:00:08.0: bridge window [io size 0x8000]: failed to assign
[ 4.938521] pci 10002:00:06.0: PCI bridge to [bus 0a]
[ 4.938952] pci 10002:00:08.0: PCI bridge to [bus 0b]
[ 4.942613] pcieport 10002:00:06.0: can't derive routing for PCI INT A
[ 4.943055] pcieport 10002:00:06.0: PCI INT A: no GSI
[ 4.943541] pcieport 10002:00:06.0: PME: Signaling with IRQ 602
[ 4.947344] pcieport 10002:00:08.0: can't derive routing for PCI INT A
[ 4.947755] pcieport 10002:00:08.0: PCI INT A: no GSI
[ 4.948304] pcieport 10002:00:08.0: PME: Signaling with IRQ 603
[ 4.948822] vmd 0000:ad:00.5: Bound to PCI domain 10002
[ 4.952496] vmd 0000:c7:00.5: PCI host bridge to bus 10003:00
[ 4.952941] pci_bus 10003:00: root bus resource [bus 00-1f]
[ 4.953364] pci_bus 10003:00: root bus resource [mem 0xe0000000-0xe3ffffff]
[ 4.953864] pci_bus 10003:00: root bus resource [mem 0x1e9ffe002010-0x1e9ffe1fffff 64bit]
[ 4.954315] pci 10003:00:02.0: [8086:0db0] type 01 class 0x060400 PCIe Root Port
[ 4.954763] pci 10003:00:02.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.955241] pci 10003:00:02.0: PCI bridge to [bus 0a]
[ 4.955677] pci 10003:00:02.0: bridge window [io 0x0000-0x8fff]
[ 4.956147] pci 10003:00:02.0: enabling Extended Tags
[ 4.956662] pci 10003:00:02.0: PME# supported from D0 D3hot D3cold
[ 4.957174] pci 10003:00:02.0: PTM enabled (root), 2ns granularity
[ 4.957706] pci 10003:00:02.0: Adding to iommu group 13
[ 4.958220] pci 10003:00:04.0: [8086:0db1] type 01 class 0x060400 PCIe Root Port
[ 4.958672] pci 10003:00:04.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.959143] pci 10003:00:04.0: PCI bridge to [bus 0b]
[ 4.959585] pci 10003:00:04.0: bridge window [io 0x0000-0x8fff]
[ 4.960060] pci 10003:00:04.0: enabling Extended Tags
[ 4.960589] pci 10003:00:04.0: PME# supported from D0 D3hot D3cold
[ 4.961108] pci 10003:00:04.0: PTM enabled (root), 2ns granularity
[ 4.961642] pci 10003:00:04.0: Adding to iommu group 13
[ 4.962145] pci 10003:00:06.0: [8086:0db2] type 01 class 0x060400 PCIe Root Port
[ 4.962603] pci 10003:00:06.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.963075] pci 10003:00:06.0: PCI bridge to [bus 0c]
[ 4.963518] pci 10003:00:06.0: bridge window [io 0x0000-0x8fff]
[ 4.963991] pci 10003:00:06.0: enabling Extended Tags
[ 4.964525] pci 10003:00:06.0: PME# supported from D0 D3hot D3cold
[ 4.965049] pci 10003:00:06.0: PTM enabled (root), 2ns granularity
[ 4.965586] pci 10003:00:06.0: Adding to iommu group 13
[ 4.966091] pci 10003:00:08.0: [8086:0db3] type 01 class 0x060400 PCIe Root Port
[ 4.966552] pci 10003:00:08.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 4.967019] pci 10003:00:08.0: PCI bridge to [bus 0d]
[ 4.967462] pci 10003:00:08.0: bridge window [io 0x0000-0x8fff]
[ 4.967928] pci 10003:00:08.0: enabling Extended Tags
[ 4.971687] pci 10003:00:08.0: PME# supported from D0 D3hot D3cold
[ 4.975448] pci 10003:00:08.0: PTM enabled (root), 2ns granularity
[ 4.976005] pci 10003:00:08.0: Adding to iommu group 13
[ 4.976508] pci 10003:00:02.0: PCI bridge to [bus 0a]
[ 4.977010] pci 10003:00:04.0: PCI bridge to [bus 0b]
[ 4.977516] pci 10003:00:06.0: PCI bridge to [bus 0c]
[ 4.978009] pci 10003:00:08.0: PCI bridge to [bus 0d]
[ 4.984005] pci 10003:00:02.0: BAR 0 [mem 0x1e9ffe010000-0x1e9ffe01ffff 64bit]: assigned
[ 4.984468] pci 10003:00:04.0: BAR 0 [mem 0x1e9ffe020000-0x1e9ffe02ffff 64bit]: assigned
[ 4.984929] pci 10003:00:06.0: BAR 0 [mem 0x1e9ffe030000-0x1e9ffe03ffff 64bit]: assigned
[ 4.985372] pci 10003:00:08.0: BAR 0 [mem 0x1e9ffe040000-0x1e9ffe04ffff 64bit]: assigned
[ 4.985811] pci 10003:00:02.0: bridge window [io size 0x9000]: can't assign; no space
[ 4.986250] pci 10003:00:02.0: bridge window [io size 0x9000]: failed to assign
[ 4.989926] pci 10003:00:04.0: bridge window [io size 0x9000]: can't assign; no space
[ 4.990380] pci 10003:00:04.0: bridge window [io size 0x9000]: failed to assign
[ 4.990821] pci 10003:00:06.0: bridge window [io size 0x9000]: can't assign; no space
[ 4.991262] pci 10003:00:06.0: bridge window [io size 0x9000]: failed to assign
[ 4.991679] pci 10003:00:08.0: bridge window [io size 0x9000]: can't assign; no space
[ 4.992128] pci 10003:00:08.0: bridge window [io size 0x9000]: failed to assign
[ 4.995770] pci 10003:00:02.0: bridge window [io size 0x9000]: can't assign; no space
[ 4.996234] pci 10003:00:02.0: bridge window [io size 0x9000]: failed to assign
[ 4.996644] pci 10003:00:04.0: bridge window [io size 0x9000]: can't assign; no space
[ 4.997092] pci 10003:00:04.0: bridge window [io size 0x9000]: failed to assign
[ 4.997507] pci 10003:00:06.0: bridge window [io size 0x9000]: can't assign; no space
[ 4.997932] pci 10003:00:06.0: bridge window [io size 0x9000]: failed to assign
[ 4.998339] pci 10003:00:08.0: bridge window [io size 0x9000]: can't assign; no space
[ 4.998748] pci 10003:00:08.0: bridge window [io size 0x9000]: failed to assign
[ 4.999195] pci 10003:00:02.0: PCI bridge to [bus 0a]
[ 4.999612] pci 10003:00:04.0: PCI bridge to [bus 0b]
[ 5.000046] pci 10003:00:06.0: PCI bridge to [bus 0c]
[ 5.000454] pci 10003:00:08.0: PCI bridge to [bus 0d]
[ 5.004114] pcieport 10003:00:02.0: can't derive routing for PCI INT A
[ 5.004513] pcieport 10003:00:02.0: PCI INT A: no GSI
[ 5.004989] pcieport 10003:00:02.0: PME: Signaling with IRQ 604
[ 5.008761] pcieport 10003:00:04.0: can't derive routing for PCI INT A
[ 5.009218] pcieport 10003:00:04.0: PCI INT A: no GSI
[ 5.009686] pcieport 10003:00:04.0: PME: Signaling with IRQ 605
[ 5.013459] pcieport 10003:00:06.0: can't derive routing for PCI INT A
[ 5.013869] pcieport 10003:00:06.0: PCI INT A: no GSI
[ 5.014328] pcieport 10003:00:06.0: PME: Signaling with IRQ 606
[ 5.018104] pcieport 10003:00:08.0: can't derive routing for PCI INT A
[ 5.018498] pcieport 10003:00:08.0: PCI INT A: no GSI
[ 5.018973] pcieport 10003:00:08.0: PME: Signaling with IRQ 607
[ 5.019510] vmd 0000:c7:00.5: Bound to PCI domain 10003
[ 5.023166] vmd 0000:e1:00.5: PCI host bridge to bus 10004:00
[ 5.023568] pci_bus 10004:00: root bus resource [bus 00-1f]
[ 5.023988] pci_bus 10004:00: root bus resource [mem 0xec000000-0xefffffff]
[ 5.024456] pci_bus 10004:00: root bus resource [mem 0x1eaffe002010-0x1eaffe1fffff 64bit]
[ 5.024888] pci 10004:00:02.0: [8086:0db0] type 01 class 0x060400 PCIe Root Port
[ 5.025300] pci 10004:00:02.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 5.025718] pci 10004:00:02.0: PCI bridge to [bus 0a]
[ 5.026147] pci 10004:00:02.0: bridge window [io 0x0000-0x9fff]
[ 5.026554] pci 10004:00:02.0: enabling Extended Tags
[ 5.027045] pci 10004:00:02.0: PME# supported from D0 D3hot D3cold
[ 5.027484] pci 10004:00:02.0: PTM enabled (root), 2ns granularity
[ 5.027957] pci 10004:00:02.0: Adding to iommu group 4
[ 5.028443] pci 10004:00:04.0: [8086:0db1] type 01 class 0x060400 PCIe Root Port
[ 5.028878] pci 10004:00:04.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 5.029283] pci 10004:00:04.0: PCI bridge to [bus 0b]
[ 5.029711] pci 10004:00:04.0: bridge window [io 0x0000-0x9fff]
[ 5.030147] pci 10004:00:04.0: enabling Extended Tags
[ 5.030623] pci 10004:00:04.0: PME# supported from D0 D3hot D3cold
[ 5.031093] pci 10004:00:04.0: PTM enabled (root), 2ns granularity
[ 5.031543] pci 10004:00:04.0: Adding to iommu group 4
[ 5.032035] pci 10004:00:06.0: [8086:0db2] type 01 class 0x060400 PCIe Root Port
[ 5.032446] pci 10004:00:06.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 5.032847] pci 10004:00:06.0: PCI bridge to [bus 0c]
[ 5.033273] pci 10004:00:06.0: bridge window [io 0x0000-0x9fff]
[ 5.033677] pci 10004:00:06.0: enabling Extended Tags
[ 5.034182] pci 10004:00:06.0: PME# supported from D0 D3hot D3cold
[ 5.034626] pci 10004:00:06.0: PTM enabled (root), 2ns granularity
[ 5.035121] pci 10004:00:06.0: Adding to iommu group 4
[ 5.035610] pci 10004:00:08.0: [8086:0db3] type 01 class 0x060400 PCIe Root Port
[ 5.036071] pci 10004:00:08.0: BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[ 5.036476] pci 10004:00:08.0: PCI bridge to [bus 0d]
[ 5.036926] pci 10004:00:08.0: bridge window [io 0x0000-0x9fff]
[ 5.037351] pci 10004:00:08.0: enabling Extended Tags
[ 5.037856] pci 10004:00:08.0: PME# supported from D0 D3hot D3cold
[ 5.038325] pci 10004:00:08.0: PTM enabled (root), 2ns granularity
[ 5.038844] pci 10004:00:08.0: Adding to iommu group 4
[ 5.039308] pci 10004:00:02.0: PCI bridge to [bus 0a]
[ 5.039766] pci 10004:00:04.0: PCI bridge to [bus 0b]
[ 5.043468] pci 10004:00:06.0: PCI bridge to [bus 0c]
[ 5.043933] pci 10004:00:08.0: PCI bridge to [bus 0d]
[ 5.050089] pci 10004:00:02.0: BAR 0 [mem 0x1eaffe010000-0x1eaffe01ffff 64bit]: assigned
[ 5.050678] pci 10004:00:04.0: BAR 0 [mem 0x1eaffe020000-0x1eaffe02ffff 64bit]: assigned
[ 5.051387] pci 10004:00:06.0: BAR 0 [mem 0x1eaffe030000-0x1eaffe03ffff 64bit]: assigned
[ 5.052006] pci 10004:00:08.0: BAR 0 [mem 0x1eaffe040000-0x1eaffe04ffff 64bit]: assigned
[ 5.052590] pci 10004:00:02.0: bridge window [io size 0xa000]: can't assign; no space
[ 5.053247] pci 10004:00:02.0: bridge window [io size 0xa000]: failed to assign
[ 5.056909] pci 10004:00:04.0: bridge window [io size 0xa000]: can't assign; no space
[ 5.057326] pci 10004:00:04.0: bridge window [io size 0xa000]: failed to assign
[ 5.060975] pci 10004:00:06.0: bridge window [io size 0xa000]: can't assign; no space
[ 5.061387] pci 10004:00:06.0: bridge window [io size 0xa000]: failed to assign
[ 5.065027] pci 10004:00:08.0: bridge window [io size 0xa000]: can't assign; no space
[ 5.065443] pci 10004:00:08.0: bridge window [io size 0xa000]: failed to assign
[ 5.069150] pci 10004:00:02.0: bridge window [io size 0xa000]: can't assign; no space
[ 5.069571] pci 10004:00:02.0: bridge window [io size 0xa000]: failed to assign
[ 5.070009] pci 10004:00:04.0: bridge window [io size 0xa000]: can't assign; no space
[ 5.070424] pci 10004:00:04.0: bridge window [io size 0xa000]: failed to assign
[ 5.070840] pci 10004:00:06.0: bridge window [io size 0xa000]: can't assign; no space
[ 5.071254] pci 10004:00:06.0: bridge window [io size 0xa000]: failed to assign
[ 5.071663] pci 10004:00:08.0: bridge window [io size 0xa000]: can't assign; no space
[ 5.072098] pci 10004:00:08.0: bridge window [io size 0xa000]: failed to assign
[ 5.072506] pci 10004:00:02.0: PCI bridge to [bus 0a]
[ 5.072934] pci 10004:00:04.0: PCI bridge to [bus 0b]
[ 5.073347] pci 10004:00:06.0: PCI bridge to [bus 0c]
[ 5.073758] pci 10004:00:08.0: PCI bridge to [bus 0d]
[ 5.077494] pcieport 10004:00:02.0: can't derive routing for PCI INT A
[ 5.077915] pcieport 10004:00:02.0: PCI INT A: no GSI
[ 5.078391] pcieport 10004:00:02.0: PME: Signaling with IRQ 608
[ 5.082131] pcieport 10004:00:04.0: can't derive routing for PCI INT A
[ 5.082555] pcieport 10004:00:04.0: PCI INT A: no GSI
[ 5.083064] pcieport 10004:00:04.0: PME: Signaling with IRQ 609
[ 5.086806] pcieport 10004:00:06.0: can't derive routing for PCI INT A
[ 5.087210] pcieport 10004:00:06.0: PCI INT A: no GSI
[ 5.087681] pcieport 10004:00:06.0: PME: Signaling with IRQ 610
[ 5.091451] pcieport 10004:00:08.0: can't derive routing for PCI INT A
[ 5.091857] pcieport 10004:00:08.0: PCI INT A: no GSI
[ 5.092333] pcieport 10004:00:08.0: PME: Signaling with IRQ 611
[ 5.092838] vmd 0000:e1:00.5: Bound to PCI domain 10004
[ 5.109535] Key type psk registered
[ 5.130845] nvme nvme0: pci function 10001:0a:00.0
[ 5.131406] pcieport 10001:00:02.0: can't derive routing for PCI INT A
[ 5.131983] nvme 10001:0a:00.0: PCI INT A: not connected
[ 5.157763] nvme nvme0: 64/0/0 default/read/poll queues
[ 5.174895] nvme0n1: p1 p2 p3
[ 5.572995] mpi3mr0: successfully created 127 operational queue pairs(default/polled) queue = (127/0)
[ 5.584941] mpi3mr0: controller initialization completed successfully
[ 5.585613] scsi host0: MPI3 Storage Controller
[ 5.591301] mpi3mr0: mpi3mr_scan_start :Issuing Port Enable
[ 5.605044] mpi3mr0: port enable is successfully completed
[ 5.605458] scsi 0:0:1:0: Direct-Access BROADCOM 9660-16i 0001 PQ: 0 ANSI: 5
[ 5.610120] scsi 0:0:291:0: Enclosure BROADCOM VirtualSES 04 PQ: 0 ANSI: 7
[ 5.612032] sd 0:0:1:0: Attached scsi generic sg1 type 0
[ 5.612114] sd 0:0:1:0: [sda] 976617472 4096-byte logical blocks: (4.00 TB/3.64 TiB)
[ 5.614480] scsi 0:0:291:0: Attached scsi generic sg2 type 13
[ 5.614923] sd 0:0:1:0: [sda] Write Protect is off
[ 5.617290] sd 0:0:1:0: [sda] Mode Sense: 1f 00 00 08
[ 5.617430] sd 0:0:1:0: [sda] Write cache: disabled, read cache: disabled, doesn't support DPO or FUA
[ 5.617957] sd 0:0:1:0: [sda] Preferred minimum I/O size 16777216 bytes
[ 5.648249] sda: sda1
[ 5.649233] sd 0:0:1:0: [sda] Attached SCSI disk
[ 5.902802] raid6: avx512x4 gen() 25385 MB/s
[ 5.919801] raid6: avx512x2 gen() 39143 MB/s
[ 5.936801] raid6: avx512x1 gen() 38018 MB/s
[ 5.953802] raid6: avx2x4 gen() 38564 MB/s
[ 5.970802] raid6: avx2x2 gen() 38021 MB/s
[ 5.987802] raid6: avx2x1 gen() 31132 MB/s
[ 5.987806] raid6: using algorithm avx512x2 gen() 39143 MB/s
[ 6.004802] raid6: .... xor() 44559 MB/s, rmw enabled
[ 6.004807] raid6: using avx512x2 recovery algorithm
[ 6.008857] async_tx: api initialized (async)
[ 6.010639] xor: automatically using best checksumming function avx
[ 6.116884] EXT4-fs (nvme0n1p3): mounted filesystem 626961d2-1480-4e1f-929b-9f064259b9de ro with ordered data mode. Quota mode: none.
[ 6.187546] systemd[1]: Inserted module 'autofs4'
[ 6.207382] systemd[1]: systemd 255.4-1ubuntu8.10 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 6.207526] systemd[1]: Detected architecture x86-64.
[ 6.208202] systemd[1]: Hostname set to <localhost>.
[ 6.337922] systemd[1]: Queued start job for default target graphical.target.
[ 6.363210] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 6.364440] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 6.364876] systemd[1]: Created slice user.slice - User and Session Slice.
[ 6.364968] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 6.365163] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 6.365211] systemd[1]: Expecting device dev-disk-by\x2duuid-8333\x2dD532.device - /dev/disk/by-uuid/8333-D532...
[ 6.365257] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 6.365305] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 6.365332] systemd[1]: Reached target slices.target - Slice Units.
[ 6.365361] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[ 6.365398] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 6.365547] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 6.365606] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 6.365667] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 6.365725] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 6.365792] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 6.365916] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
[ 6.365965] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 6.366916] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 6.367373] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 6.376613] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 6.383511] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 6.388292] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 6.392029] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 6.397430] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 6.400009] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 6.401804] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 6.403617] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 6.405695] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 6.407565] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 6.409408] systemd-journald[2045]: Collecting audit messages is disabled.
[ 6.412291] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 6.415934] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 6.420084] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 6.422595] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
[ 6.424416] systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
[ 6.425730] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[ 6.427381] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 6.428658] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 6.430259] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 6.431524] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 6.433282] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 6.435722] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 6.437531] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 6.439238] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 6.440913] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 6.442614] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 6.444469] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 6.445250] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 6.446305] lp: driver loaded but no devices found
[ 6.449649] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 6.452188] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 6.456477] EXT4-fs (nvme0n1p3): re-mounted 626961d2-1480-4e1f-929b-9f064259b9de r/w.
[ 6.456892] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 6.463217] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 6.465568] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 6.465765] ppdev: user-space parallel port driver
[ 6.469417] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 6.470259] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 6.472064] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 6.473165] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 6.474946] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 6.475842] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 6.477683] systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
[ 6.478775] systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
[ 6.480990] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 6.502061] systemd[1]: Activating swap swap.img.swap - /swap.img...
[ 6.504975] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 6.506009] Adding 8388604k swap on /swap.img. Priority:-2 extents:65 across:897449984k SS
[ 6.507884] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 6.509683] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 6.510412] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 6.512345] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 6.517061] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 6.519706] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 6.524997] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 6.527186] systemd[1]: Activated swap swap.img.swap - /swap.img.
[ 6.530623] systemd[1]: Started systemd-journald.service - Journal Service.
[ 6.548107] systemd-journald[2045]: Received client request to flush runtime journal.
[ 6.552952] systemd-journald[2045]: /var/log/journal/405a326f952e4eefb2b8d98957d6ac1b/system.journal: Journal file uses a different sequence number ID, rotating.
[ 6.553716] systemd-journald[2045]: Rotating system journal.
[ 6.635774] loop0: detected capacity change from 0 to 8
[ 6.643287] loop1: detected capacity change from 0 to 213392
[ 6.647042] loop2: detected capacity change from 0 to 151376
[ 6.648705] loop3: detected capacity change from 0 to 47688
[ 6.649299] loop4: detected capacity change from 0 to 502400
[ 6.654856] loop5: detected capacity change from 0 to 502024
[ 6.658120] loop6: detected capacity change from 0 to 22800
[ 6.659007] loop7: detected capacity change from 0 to 1056784
[ 6.689266] loop8: detected capacity change from 0 to 187776
[ 6.690843] loop9: detected capacity change from 0 to 100952
[ 6.692568] loop10: detected capacity change from 0 to 22176
[ 6.702602] loop12: detected capacity change from 0 to 430832
[ 6.704430] loop11: detected capacity change from 0 to 1152
[ 6.840552] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 6.840620] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 6.841089] i801_smbus 0000:2c:1f.4: enabling device (0000 -> 0003)
[ 6.841214] i801_smbus 0000:2c:1f.4: SPD Write Disable is set
[ 6.841243] i801_smbus 0000:2c:1f.4: SMBus using PCI interrupt
[ 6.841317] sysfs: cannot create duplicate filename '/bus/platform/devices/iTCO_wdt'
[ 6.841322] CPU: 0 UID: 0 PID: 1570 Comm: kworker/0:4 Not tainted 6.16.0+ #2 PREEMPT(voluntary)
[ 6.841325] Hardware name: Dell Inc. Dell Machine/, BIOS 0.9.39 07/09/2025
[ 6.841327] Workqueue: events work_for_cpu_fn
[ 6.841337] Call Trace:
[ 6.841340] <TASK>
[ 6.841343] dump_stack_lvl+0x76/0xa0
[ 6.841352] dump_stack+0x10/0x20
[ 6.841354] sysfs_warn_dup+0x8a/0xb0
[ 6.841361] sysfs_do_create_link_sd+0xf1/0x100
[ 6.841364] sysfs_create_link+0x21/0x50
[ 6.841365] bus_add_device+0x69/0x140
[ 6.841373] device_add+0x3c0/0x8c0
[ 6.841376] ? dev_set_name+0x5a/0x90
[ 6.841380] platform_device_add+0x193/0x270
[ 6.841385] platform_device_register_full+0x10d/0x1c0
[ 6.841392] i801_add_tco_cnl.constprop.0+0x68/0x90 [i2c_i801]
[ 6.841401] i801_add_tco+0x144/0x150 [i2c_i801]
[ 6.841404] i801_probe+0x3d0/0x770 [i2c_i801]
[ 6.841406] local_pci_probe+0x44/0xb0
[ 6.841415] work_for_cpu_fn+0x17/0x30
[ 6.841416] process_one_work+0x18e/0x3e0
[ 6.841419] worker_thread+0x2e3/0x420
[ 6.841421] ? __pfx_worker_thread+0x10/0x10
[ 6.841422] kthread+0x10a/0x230
[ 6.841427] ? __pfx_kthread+0x10/0x10
[ 6.841429] ret_from_fork+0x1d4/0x210
[ 6.841438] ? __pfx_kthread+0x10/0x10
[ 6.841440] ret_from_fork_asm+0x1a/0x30
[ 6.841447] </TASK>
[ 6.841460] i801_smbus 0000:2c:1f.4: failed to create iTCO device
[ 6.849068] idxd 0000:00:01.0: enabling device (0000 -> 0002)
[ 6.854827] intel-spi 0000:2c:1f.5: enabling device (0400 -> 0402)
[ 6.855157] wmi_bus wmi_bus-PNP0C14:02: [Firmware Bug]: WQBC data block query control method not found
[ 6.911378] spi-nor spi0.0: supply vcc not found, using dummy regulator
[ 6.912105] spi-nor spi0.0: unrecognized JEDEC id bytes: 66 f0 30 09 00 00
[ 6.913879] spi-nor spi0.1: supply vcc not found, using dummy regulator
[ 6.914232] spi-nor spi0.1: unrecognized JEDEC id bytes: 66 f0 30 09 00 00
[ 6.916626] spi-nor spi1.0: supply vcc not found, using dummy regulator
[ 6.917587] idxd 0000:00:01.0: Intel(R) Accelerator Device (v200)
[ 6.931283] wmi_bus wmi_bus-PNP0C14:0a: [Firmware Bug]: WMAA method block execution control method not found
[ 7.012361] Bluetooth: Core ver 2.22
[ 7.012580] NET: Registered PF_BLUETOOTH protocol family
[ 7.012581] Bluetooth: HCI device and connection manager initialized
[ 7.012588] Bluetooth: HCI socket layer initialized
[ 7.012590] Bluetooth: L2CAP socket layer initialized
[ 7.012592] Bluetooth: SCO socket layer initialized
[ 7.012820] ACPI: battery: new hook: Dell DDV Battery Extension
[ 7.012858] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 7.013126] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 7.013243] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 7.013616] Creating 1 MTD partitions on "0000:2c:1f.5":
[ 7.013620] 0x000000000000-0x000002000000 : "BIOS"
[ 7.017938] spi-nor spi1.1: supply vcc not found, using dummy regulator
[ 7.022226] Creating 1 MTD partitions on "0000:2c:1f.5-chip1":
[ 7.022230] 0x000000000000-0x000002000000 : "BIOS1"
[ 7.040140] ses 0:0:291:0: Attached Enclosure device
[ 7.370729] dell_smm_hwmon: SMM call took 294003 usecs!
[ 9.149301] intel_rapl_common: Found RAPL domain package
[ 9.149305] intel_rapl_common: Found RAPL domain dram
[ 9.174906] EDAC DEBUG: i10nm_init:
[ 9.174919] EDAC DEBUG: skx_get_hi_lo: tolm = 0x7c000000 tohm = 0x87c000000
[ 9.174952] EDAC DEBUG: skx_get_all_bus_mappings: busses: 0xfe, 0xff, 0x0, 0x0
[ 9.175041] EDAC DEBUG: i10nm_get_imc_num: Get DDR CH number: 8
[ 9.175043] EDAC DEBUG: i10nm_get_imc_num: Set DDR MC number: 8
[ 9.175105] EDAC DEBUG: i10nm_get_ddr_munits: socket0 mmio base 0xf6000000 (reg 0x1ec)
[ 9.175123] EDAC DEBUG: i10nm_get_ddr_munits: mc0 mmio base 0xf624c000 size 0x4000 (reg 0x1ec)
[ 9.175182] EDAC DEBUG: i10nm_get_ddr_munits: mc1 mmio base 0xf6250000 size 0x4000 (reg 0x1ec)
[ 9.175230] EDAC DEBUG: i10nm_get_ddr_munits: mc2 mmio base 0xf6254000 size 0x4000 (reg 0x1ec)
[ 9.175287] EDAC DEBUG: i10nm_get_ddr_munits: mc3 mmio base 0xf6258000 size 0x4000 (reg 0x1ec)
[ 9.175366] EDAC DEBUG: i10nm_get_ddr_munits: mc4 mmio base 0xf625c000 size 0x4000 (reg 0x1ec)
[ 9.175451] EDAC DEBUG: i10nm_get_ddr_munits: mc5 mmio base 0xf6260000 size 0x4000 (reg 0x1ec)
[ 9.175547] EDAC DEBUG: i10nm_get_ddr_munits: mc6 mmio base 0xf6264000 size 0x4000 (reg 0x1ec)
[ 9.175658] EDAC DEBUG: i10nm_get_ddr_munits: mc7 mmio base 0xf6268000 size 0x4000 (reg 0x1ec)
[ 9.175667] EDAC i10nm: No hbm memory
[ 9.175669] EDAC DEBUG: i10nm_init: src_id = 0
[ 9.175677] EDAC DEBUG: skx_register_mci: MC#0: mci = 00000000fc4818d6
[ 9.175682] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0x8190 mcddrtcfg 0x0 (mc0 ch0 dimm0)
[ 9.175684] EDAC DEBUG: skx_get_dimm_info: mc#0: channel 0, dimm 0, 16384 MiB (4194304 pages) bank: 32, rank: 1, row: 0x10, col: 0xa
[ 9.175687] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0x0 mcddrtcfg 0x0 (mc0 ch0 dimm1)
[ 9.175689] EDAC DEBUG: i10nm_check_ecc: ch0 mcmtr reg 80f05
[ 9.175690] EDAC DEBUG: edac_mc_add_mc_with_groups:
[ 9.175712] EDAC DEBUG: edac_create_sysfs_mci_device: device mc0 created
[ 9.175720] EDAC DEBUG: edac_create_dimm_object: device dimm0 created at location channel 0 slot 0
[ 9.175733] EDAC MC0: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#0: DEV 0000:fe:05.1 (INTERRUPT)
[ 9.175742] EDAC DEBUG: skx_register_mci: MC#1: mci = 000000001af55d4a
[ 9.175746] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc1 ch0 dimm0)
[ 9.175747] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.175748] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.175749] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.175750] ------------[ cut here ]------------
[ 9.175751] UBSAN: shift-out-of-bounds in drivers/edac/skx_common.c:453:16
[ 9.176829] shift exponent -66 is negative
[ 9.177898] CPU: 159 UID: 0 PID: 2198 Comm: (udev-worker) Not tainted 6.16.0+ #2 PREEMPT(voluntary)
[ 9.177903] Hardware name: Dell Inc. Dell Machine/, BIOS 0.9.39 07/09/2025
[ 9.177905] Call Trace:
[ 9.177907] <TASK>
[ 9.177910] dump_stack_lvl+0x76/0xa0
[ 9.177923] dump_stack+0x10/0x20
[ 9.177925] __ubsan_handle_shift_out_of_bounds+0x1e3/0x390
[ 9.177934] skx_get_dimm_info.cold+0x47/0xd40 [skx_edac_common]
[ 9.177939] i10nm_get_dimm_config+0x23e/0x390 [i10nm_edac]
[ 9.177944] ? kasprintf+0x55/0x80
[ 9.177949] skx_register_mci+0x159/0x220 [skx_edac_common]
[ 9.177951] ? __pfx_i10nm_get_dimm_config+0x10/0x10 [i10nm_edac]
[ 9.177954] i10nm_init+0xce3/0x1ff0 [i10nm_edac]
[ 9.177957] ? __pfx_i10nm_init+0x10/0x10 [i10nm_edac]
[ 9.177959] do_one_initcall+0x5a/0x340
[ 9.177964] do_init_module+0x97/0x2c0
[ 9.177972] load_module+0x2cc7/0x2d90
[ 9.177977] init_module_from_file+0x95/0x100
[ 9.177979] ? init_module_from_file+0x95/0x100
[ 9.177982] idempotent_init_module+0x10f/0x300
[ 9.177985] __x64_sys_finit_module+0x73/0xe0
[ 9.177988] x64_sys_call+0x1784/0x2680
[ 9.177992] do_syscall_64+0x80/0x6a0
[ 9.177998] ? __x64_sys_lseek+0x18/0x30
[ 9.178004] ? x64_sys_call+0x1ee9/0x2680
[ 9.178005] ? do_syscall_64+0xb8/0x6a0
[ 9.178007] ? x64_sys_call+0x1bce/0x2680
[ 9.178009] ? do_syscall_64+0xb8/0x6a0
[ 9.178011] ? do_user_addr_fault+0x2fc/0x8d0
[ 9.178015] ? irqentry_exit_to_user_mode+0x2e/0x270
[ 9.178020] ? irqentry_exit+0x43/0x50
[ 9.178022] ? exc_page_fault+0x90/0x1b0
[ 9.178025] entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 9.178027] RIP: 0033:0x72d2d192725d
[ 9.178030] Code: ff c3 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 8b bb 0d 00 f7 d8 64 89 01 48
[ 9.178031] RSP: 002b:00007ffd094b3048 EFLAGS: 00000246 ORIG_RAX: 0000000000000139
[ 9.178034] RAX: ffffffffffffffda RBX: 000058e035b68f30 RCX: 000072d2d192725d
[ 9.178035] RDX: 0000000000000000 RSI: 000072d2d1c4407d RDI: 0000000000000063
[ 9.178036] RBP: 00007ffd094b3100 R08: 0000000000000040 R09: 00007ffd094b3090
[ 9.178036] R10: 000072d2d1a03b20 R11: 0000000000000246 R12: 000072d2d1c4407d
[ 9.178037] R13: 0000000000020000 R14: 000058e035b613c0 R15: 000058e035b6b7f0
[ 9.178039] </TASK>
[ 9.178041] ---[ end trace ]---
[ 9.178044] ------------[ cut here ]------------
[ 9.178045] UBSAN: shift-out-of-bounds in drivers/edac/skx_common.c:456:2
[ 9.178046] shift exponent -22 is negative
[ 9.178047] CPU: 159 UID: 0 PID: 2198 Comm: (udev-worker) Not tainted 6.16.0+ #2 PREEMPT(voluntary)
[ 9.178048] Hardware name: Dell Inc. Dell Machine/, BIOS 0.9.39 07/09/2025
[ 9.178049] Call Trace:
[ 9.178049] <TASK>
[ 9.178050] dump_stack_lvl+0x76/0xa0
[ 9.178052] dump_stack+0x10/0x20
[ 9.178055] __ubsan_handle_shift_out_of_bounds+0x1e3/0x390
[ 9.178058] skx_get_dimm_info.cold+0xc3/0xd40 [skx_edac_common]
[ 9.178060] i10nm_get_dimm_config+0x23e/0x390 [i10nm_edac]
[ 9.178062] ? kasprintf+0x55/0x80
[ 9.178064] skx_register_mci+0x159/0x220 [skx_edac_common]
[ 9.178066] ? __pfx_i10nm_get_dimm_config+0x10/0x10 [i10nm_edac]
[ 9.178068] i10nm_init+0xce3/0x1ff0 [i10nm_edac]
[ 9.178070] ? __pfx_i10nm_init+0x10/0x10 [i10nm_edac]
[ 9.178072] do_one_initcall+0x5a/0x340
[ 9.178073] do_init_module+0x97/0x2c0
[ 9.178076] load_module+0x2cc7/0x2d90
[ 9.178080] init_module_from_file+0x95/0x100
[ 9.178083] ? init_module_from_file+0x95/0x100
[ 9.178086] idempotent_init_module+0x10f/0x300
[ 9.178089] __x64_sys_finit_module+0x73/0xe0
[ 9.178091] x64_sys_call+0x1784/0x2680
[ 9.178093] do_syscall_64+0x80/0x6a0
[ 9.178095] ? __x64_sys_lseek+0x18/0x30
[ 9.178097] ? x64_sys_call+0x1ee9/0x2680
[ 9.178099] ? do_syscall_64+0xb8/0x6a0
[ 9.178101] ? x64_sys_call+0x1bce/0x2680
[ 9.178102] ? do_syscall_64+0xb8/0x6a0
[ 9.178104] ? do_user_addr_fault+0x2fc/0x8d0
[ 9.178105] ? irqentry_exit_to_user_mode+0x2e/0x270
[ 9.178108] ? irqentry_exit+0x43/0x50
[ 9.178110] ? exc_page_fault+0x90/0x1b0
[ 9.178112] entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 9.178113] RIP: 0033:0x72d2d192725d
[ 9.178114] Code: ff c3 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 8b bb 0d 00 f7 d8 64 89 01 48
[ 9.178115] RSP: 002b:00007ffd094b3048 EFLAGS: 00000246 ORIG_RAX: 0000000000000139
[ 9.178116] RAX: ffffffffffffffda RBX: 000058e035b68f30 RCX: 000072d2d192725d
[ 9.178116] RDX: 0000000000000000 RSI: 000072d2d1c4407d RDI: 0000000000000063
[ 9.178117] RBP: 00007ffd094b3100 R08: 0000000000000040 R09: 00007ffd094b3090
[ 9.178118] R10: 000072d2d1a03b20 R11: 0000000000000246 R12: 000072d2d1c4407d
[ 9.178118] R13: 0000000000020000 R14: 000058e035b613c0 R15: 000058e035b6b7f0
[ 9.178120] </TASK>
[ 9.178121] ---[ end trace ]---
[ 9.178122] EDAC DEBUG: skx_get_dimm_info: mc#1: channel 0, dimm 0, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.178127] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc1 ch0 dimm1)
[ 9.178129] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.178129] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.178130] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.178131] EDAC DEBUG: skx_get_dimm_info: mc#1: channel 0, dimm 1, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.178133] EDAC DEBUG: i10nm_check_ecc: ch0 mcmtr reg ffffffff
[ 9.178134] EDAC DEBUG: edac_mc_add_mc_with_groups:
[ 9.178721] EDAC DEBUG: edac_create_sysfs_mci_device: device mc1 created
[ 9.178744] EDAC MC1: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#1: DEV 0000:fe:05.2 (INTERRUPT)
[ 9.178764] EDAC DEBUG: skx_register_mci: MC#2: mci = 00000000172327ea
[ 9.178770] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc2 ch0 dimm0)
[ 9.178771] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.178772] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.178773] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.178774] EDAC DEBUG: skx_get_dimm_info: mc#2: channel 0, dimm 0, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.178777] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc2 ch0 dimm1)
[ 9.178777] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.178778] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.178779] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.178779] EDAC DEBUG: skx_get_dimm_info: mc#2: channel 0, dimm 1, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.178781] EDAC DEBUG: i10nm_check_ecc: ch0 mcmtr reg ffffffff
[ 9.178782] EDAC DEBUG: edac_mc_add_mc_with_groups:
[ 9.178788] EDAC DEBUG: edac_create_sysfs_mci_device: device mc2 created
[ 9.178794] EDAC MC2: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#2: DEV 0000:fe:05.3 (INTERRUPT)
[ 9.178811] EDAC DEBUG: skx_register_mci: MC#3: mci = 000000009af9242e
[ 9.178814] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc3 ch0 dimm0)
[ 9.178815] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.178816] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.178816] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.178817] EDAC DEBUG: skx_get_dimm_info: mc#3: channel 0, dimm 0, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.178819] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc3 ch0 dimm1)
[ 9.178820] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.178820] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.178821] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.178821] EDAC DEBUG: skx_get_dimm_info: mc#3: channel 0, dimm 1, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.178823] EDAC DEBUG: i10nm_check_ecc: ch0 mcmtr reg ffffffff
[ 9.178823] EDAC DEBUG: edac_mc_add_mc_with_groups:
[ 9.178832] EDAC DEBUG: edac_create_sysfs_mci_device: device mc3 created
[ 9.178837] EDAC MC3: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#3: DEV 0000:fe:05.4 (INTERRUPT)
[ 9.178842] EDAC DEBUG: skx_register_mci: MC#4: mci = 00000000b5a3988b
[ 9.178843] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc4 ch0 dimm0)
[ 9.178844] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.178844] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.178845] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.178845] EDAC DEBUG: skx_get_dimm_info: mc#4: channel 0, dimm 0, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.178847] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc4 ch0 dimm1)
[ 9.178848] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.178848] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.178849] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.178849] EDAC DEBUG: skx_get_dimm_info: mc#4: channel 0, dimm 1, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.178851] EDAC DEBUG: i10nm_check_ecc: ch0 mcmtr reg ffffffff
[ 9.178851] EDAC DEBUG: edac_mc_add_mc_with_groups:
[ 9.178857] EDAC DEBUG: edac_create_sysfs_mci_device: device mc4 created
[ 9.178861] EDAC MC4: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#4: DEV 0000:fe:05.5 (INTERRUPT)
[ 9.178871] EDAC DEBUG: skx_register_mci: MC#5: mci = 00000000146640a3
[ 9.178873] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc5 ch0 dimm0)
[ 9.178874] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.178874] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.178875] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.178875] EDAC DEBUG: skx_get_dimm_info: mc#5: channel 0, dimm 0, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.178877] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc5 ch0 dimm1)
[ 9.178878] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.178878] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.178878] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.178879] EDAC DEBUG: skx_get_dimm_info: mc#5: channel 0, dimm 1, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.178881] EDAC DEBUG: i10nm_check_ecc: ch0 mcmtr reg ffffffff
[ 9.178881] EDAC DEBUG: edac_mc_add_mc_with_groups:
[ 9.178886] EDAC DEBUG: edac_create_sysfs_mci_device: device mc5 created
[ 9.178892] EDAC MC5: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#5: DEV 0000:fe:05.6 (INTERRUPT)
[ 9.181091] EDAC DEBUG: skx_register_mci: MC#6: mci = 00000000e6cd154f
[ 9.181094] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0x8190 mcddrtcfg 0x0 (mc6 ch0 dimm0)
[ 9.181095] EDAC DEBUG: skx_get_dimm_info: mc#6: channel 0, dimm 0, 16384 MiB (4194304 pages) bank: 32, rank: 1, row: 0x10, col: 0xa
[ 9.181099] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0x0 mcddrtcfg 0x0 (mc6 ch0 dimm1)
[ 9.181101] EDAC DEBUG: i10nm_check_ecc: ch0 mcmtr reg 80f05
[ 9.181102] EDAC DEBUG: edac_mc_add_mc_with_groups:
[ 9.181126] EDAC DEBUG: edac_create_sysfs_mci_device: device mc6 created
[ 9.181145] EDAC DEBUG: edac_create_dimm_object: device dimm0 created at location channel 0 slot 0
[ 9.181152] EDAC MC6: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#6: DEV 0000:fe:05.7 (INTERRUPT)
[ 9.181156] EDAC DEBUG: skx_register_mci: MC#7: mci = 000000006b1f53d4
[ 9.181158] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc7 ch0 dimm0)
[ 9.181159] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.181159] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.181160] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.181161] EDAC DEBUG: skx_get_dimm_info: mc#7: channel 0, dimm 0, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.181163] EDAC DEBUG: i10nm_get_dimm_config: dimmmtr 0xffffffff mcddrtcfg 0x0 (mc7 ch0 dimm1)
[ 9.181164] EDAC DEBUG: skx_get_dimm_attr: bad ranks = 3 (raw=0xffffffff)
[ 9.181165] EDAC DEBUG: skx_get_dimm_attr: bad rows = 7 (raw=0xffffffff)
[ 9.181166] EDAC DEBUG: skx_get_dimm_attr: bad cols = 3 (raw=0xffffffff)
[ 9.181166] EDAC DEBUG: skx_get_dimm_info: mc#7: channel 0, dimm 1, 0 MiB (0 pages) bank: 32, rank: 1024, row: 0xffffffea, col: 0xffffffea
[ 9.181168] EDAC DEBUG: i10nm_check_ecc: ch0 mcmtr reg ffffffff
[ 9.181169] EDAC DEBUG: edac_mc_add_mc_with_groups:
[ 9.181183] EDAC DEBUG: edac_create_sysfs_mci_device: device mc7 created
[ 9.181188] EDAC MC7: Giving out device to module i10nm_edac controller Intel_10nm Socket#0 IMC#7: DEV 0000:fe:06.1 (INTERRUPT)
[ 9.181204] EDAC i10nm: v0.0.6
[ 9.186188] input: Dell Privacy Driver as /devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/6932965F-1671-4CEB-B988-D3AB0A901919-6/input/input8
[ 9.186547] input: Dell WMI hotkeys as /devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/9DBB5994-A997-11DA-B012-B622A1EF5492-8/input/input9
[ 9.190271] audit: type=1400 audit(1753862397.576:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=5027 comm="apparmor_parser"
[ 9.190300] audit: type=1400 audit(1753862397.576:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=5017 comm="apparmor_parser"
[ 9.190324] audit: type=1400 audit(1753862397.576:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=5030 comm="apparmor_parser"
[ 9.190361] audit: type=1400 audit(1753862397.576:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=5022 comm="apparmor_parser"
[ 9.190396] audit: type=1400 audit(1753862397.576:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=5016 comm="apparmor_parser"
[ 9.190421] audit: type=1400 audit(1753862397.576:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="firefox" pid=5036 comm="apparmor_parser"
[ 9.190454] audit: type=1400 audit(1753862397.576:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="crun" pid=5031 comm="apparmor_parser"
[ 9.190480] audit: type=1400 audit(1753862397.576:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=5026 comm="apparmor_parser"
[ 9.190507] audit: type=1400 audit(1753862397.576:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=5018 comm="apparmor_parser"
[ 9.190538] audit: type=1400 audit(1753862397.576:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-run" pid=5028 comm="apparmor_parser"
[ 9.208782] usbcore: registered new interface driver btusb
[ 9.214393] Bluetooth: hci0: HW/SW Version: 0x00000000, Build Time: 20250305133215
[ 9.376055] PEFILE: Unsigned PE binary
[ 9.411162] snd_hda_intel 0000:0d:00.1: enabling device (0000 -> 0002)
[ 9.411354] snd_hda_intel 0000:0d:00.1: Force to non-snoop mode
[ 9.412890] snd_hda_intel 0000:2c:1f.3: enabling device (0000 -> 0002)
[ 9.420572] mt7925e 0000:2f:00.0: enabling device (0000 -> 0002)
[ 9.427835] mt7925e 0000:2f:00.0: ASIC revision: 79250000
[ 9.432241] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:0a/0000:0a:02.0/0000:0b:00.0/0000:0c:00.0/0000:0d:00.1/sound/card0/input10
[ 9.432358] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:0a/0000:0a:02.0/0000:0b:00.0/0000:0c:00.0/0000:0d:00.1/sound/card0/input11
[ 9.432422] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:0a/0000:0a:02.0/0000:0b:00.0/0000:0c:00.0/0000:0d:00.1/sound/card0/input12
[ 9.432462] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:0a/0000:0a:02.0/0000:0b:00.0/0000:0c:00.0/0000:0d:00.1/sound/card0/input13
[ 9.440631] snd_hda_codec_generic hdaudioC1D0: autoconfig for Generic: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:line
[ 9.440636] snd_hda_codec_generic hdaudioC1D0: speaker_outs=1 (0x14/0x0/0x0/0x0/0x0)
[ 9.440638] snd_hda_codec_generic hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 9.440639] snd_hda_codec_generic hdaudioC1D0: mono: mono_out=0x0
[ 9.440640] snd_hda_codec_generic hdaudioC1D0: inputs:
[ 9.449118] input: HDA Intel PCH Line Out as /devices/pci0000:2c/0000:2c:1f.3/sound/card1/input14
[ 9.449166] input: HDA Intel PCH Front Headphone as /devices/pci0000:2c/0000:2c:1f.3/sound/card1/input15
[ 9.507959] mt7925e 0000:2f:00.0: HW/SW Version: 0x8a108a10, Build Time: 20250305132908a
[ 9.607670] Bluetooth: hci0: Device setup in 388628 usecs
[ 9.607674] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[ 9.718411] Bluetooth: hci0: AOSP extensions version v1.00
[ 9.718414] Bluetooth: hci0: AOSP quality report is supported
[ 9.859807] mt7925e 0000:2f:00.0: WM Firmware Version: ____000000, Build Time: 20250305133013
[ 9.864639] nvme nvme0: using unchecked data buffer
[ 10.673760] mt7925e 0000:2f:00.0 wlp47s0: renamed from wlan0
[ 11.646130] loop13: detected capacity change from 0 to 8
[ 12.580090] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 12.580101] Bluetooth: BNEP filters: protocol multicast
[ 12.580123] Bluetooth: BNEP socket layer initialized
[ 12.583429] NET: Registered PF_QIPCRTR protocol family
[ 12.585889] Bluetooth: MGMT ver 1.23
[ 12.588739] [drm] amdgpu kernel modesetting enabled.
[ 12.589752] amdgpu: Virtual CRAT table created for CPU
[ 12.589882] amdgpu: Topology: Add CPU node
[ 12.590290] amdgpu 0000:0d:00.0: enabling device (0006 -> 0007)
[ 12.590380] [drm] initializing kernel modesetting (IP DISCOVERY 0x1002:0x7499 0x1028:0x0045 0x00).
[ 12.590455] [drm] register mmio base: 0x91000000
[ 12.590457] [drm] register mmio size: 1048576
[ 12.596983] amdgpu 0000:0d:00.0: amdgpu: detected ip block number 0 <soc21_common>
[ 12.596988] amdgpu 0000:0d:00.0: amdgpu: detected ip block number 1 <gmc_v11_0>
[ 12.596990] amdgpu 0000:0d:00.0: amdgpu: detected ip block number 2 <ih_v6_0>
[ 12.596991] amdgpu 0000:0d:00.0: amdgpu: detected ip block number 3 <psp>
[ 12.596993] amdgpu 0000:0d:00.0: amdgpu: detected ip block number 4 <smu>
[ 12.596996] amdgpu 0000:0d:00.0: amdgpu: detected ip block number 5 <dm>
[ 12.596998] amdgpu 0000:0d:00.0: amdgpu: detected ip block number 6 <gfx_v11_0>
[ 12.597000] amdgpu 0000:0d:00.0: amdgpu: detected ip block number 7 <sdma_v6_0>
[ 12.597002] amdgpu 0000:0d:00.0: amdgpu: detected ip block number 8 <vcn_v4_0>
[ 12.597004] amdgpu 0000:0d:00.0: amdgpu: detected ip block number 9 <jpeg_v4_0>
[ 12.597005] amdgpu 0000:0d:00.0: amdgpu: detected ip block number 10 <mes_v11_0>
[ 12.597105] amdgpu 0000:0d:00.0: amdgpu: Fetched VBIOS from VFCT
[ 12.597108] amdgpu: ATOM BIOS: 113-D7530100-100
[ 12.602168] amdgpu 0000:0d:00.0: amdgpu: CP RS64 enable
[ 12.604251] NET: Registered PF_ALG protocol family
[ 12.619204] block nvme0n1: No UUID available providing old NGUID
[ 12.624759] Console: switching to colour dummy device 80x25
[ 12.637236] amdgpu 0000:0d:00.0: vgaarb: deactivate vga console
[ 12.637244] amdgpu 0000:0d:00.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
[ 12.637355] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 12.637364] amdgpu 0000:0d:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
[ 12.637366] amdgpu 0000:0d:00.0: amdgpu: GART: 512M 0x00007FFF00000000 - 0x00007FFF1FFFFFFF
[ 12.637383] [drm] Detected VRAM RAM=8176M, BAR=8192M
[ 12.637384] [drm] RAM width 128bits GDDR6
[ 12.638439] [drm] amdgpu: 8176M of VRAM memory ready
[ 12.638445] [drm] amdgpu: 15475M of GTT memory ready.
[ 12.638525] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 12.638695] [drm] PCIE GART of 512M enabled (table at 0x00000081FEB00000).
[ 12.640078] amdgpu 0000:0d:00.0: amdgpu: [drm] Loading DMUB firmware via PSP: version=0x07002800
[ 12.640352] amdgpu 0000:0d:00.0: amdgpu: Found VCN firmware Version ENC: 1.19 DEC: 7 VEP: 0 Revision: 0
[ 12.643844] Bluetooth: hci0: HW/SW Version: 0x00000000, Build Time: 20250305133215
[ 12.701060] amdgpu 0000:0d:00.0: amdgpu: reserve 0x1300000 from 0x81fc000000 for PSP TMR
[ 12.795718] amdgpu 0000:0d:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 12.803378] amdgpu 0000:0d:00.0: amdgpu: RAP: optional rap ta ucode is not available
[ 12.803381] amdgpu 0000:0d:00.0: amdgpu: SECUREDISPLAY: optional securedisplay ta ucode is not available
[ 12.803416] amdgpu 0000:0d:00.0: amdgpu: smu driver if version = 0x00000035, smu fw if version = 0x00000040, smu fw program = 0, smu fw version = 0x00525800 (82.88.0)
[ 12.803419] amdgpu 0000:0d:00.0: amdgpu: SMU driver if version not matched
[ 12.877598] amdgpu 0000:0d:00.0: amdgpu: SMU is initialized successfully!
[ 12.878879] amdgpu 0000:0d:00.0: amdgpu: [drm] Display Core v3.2.334 initialized on DCN 3.2.1
[ 12.878883] amdgpu 0000:0d:00.0: amdgpu: [drm] DP-HDMI FRL PCON supported
[ 12.880673] amdgpu 0000:0d:00.0: amdgpu: [drm] DMUB hardware initialized: version=0x07002800
[ 12.957315] Bluetooth: hci0: Device setup in 308894 usecs
[ 12.957323] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[ 13.044979] Bluetooth: hci0: AOSP extensions version v1.00
[ 13.044994] Bluetooth: hci0: AOSP quality report is supported
[ 13.124451] amdgpu 0000:0d:00.0: amdgpu: [drm] PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
[ 13.124771] amdgpu 0000:0d:00.0: amdgpu: [drm] PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
[ 13.124901] amdgpu 0000:0d:00.0: amdgpu: [drm] PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
[ 13.125000] amdgpu 0000:0d:00.0: amdgpu: [drm] PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
[ 13.185902] amdgpu: HMM registered 8176MB device memory
[ 13.190208] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 13.190233] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 13.190358] amdgpu: Virtual CRAT table created for GPU
[ 13.190444] amdgpu: Topology: Add dGPU node [0x7499:0x1002]
[ 13.190446] kfd kfd: amdgpu: added device 1002:7499
[ 13.190461] amdgpu 0000:0d:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 8, active_cu_number 28
[ 13.190465] amdgpu 0000:0d:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 13.190467] amdgpu 0000:0d:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 13.190469] amdgpu 0000:0d:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 13.190470] amdgpu 0000:0d:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[ 13.190470] amdgpu 0000:0d:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[ 13.190471] amdgpu 0000:0d:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[ 13.190472] amdgpu 0000:0d:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[ 13.190473] amdgpu 0000:0d:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[ 13.190474] amdgpu 0000:0d:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[ 13.190474] amdgpu 0000:0d:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[ 13.190476] amdgpu 0000:0d:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
[ 13.190477] amdgpu 0000:0d:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
[ 13.190477] amdgpu 0000:0d:00.0: amdgpu: ring jpeg_dec uses VM inv eng 1 on hub 8
[ 13.190478] amdgpu 0000:0d:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 14 on hub 0
[ 13.192236] amdgpu 0000:0d:00.0: amdgpu: Using BACO for runtime pm
[ 13.193164] amdgpu 0000:0d:00.0: [drm] Registered 4 planes with drm panic
[ 13.193166] [drm] Initialized amdgpu 3.64.0 for 0000:0d:00.0 on minor 1
[ 13.201735] fbcon: amdgpudrmfb (fb0) is primary device
[ 13.202063] [drm] pre_validate_dsc:1627 MST_DSC dsc precompute is not needed
[ 13.365492] snd_hda_codec_hdmi hdaudioC0D0: HDMI: ELD buf size is 0, force 128
[ 13.365571] snd_hda_codec_hdmi hdaudioC0D0: HDMI: invalid ELD data byte 0
[ 13.365791] snd_hda_codec_hdmi hdaudioC0D0: HDMI: ELD buf size is 0, force 128
[ 13.365862] snd_hda_codec_hdmi hdaudioC0D0: HDMI: invalid ELD data byte 0
[ 13.365901] snd_hda_codec_hdmi hdaudioC0D0: HDMI: ELD buf size is 0, force 128
[ 13.365932] snd_hda_codec_hdmi hdaudioC0D0: HDMI: invalid ELD data byte 0
[ 13.382694] Console: switching to colour frame buffer device 240x67
[ 13.425290] amdgpu 0000:0d:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 13.704358] systemd-journald[2045]: /var/log/journal/405a326f952e4eefb2b8d98957d6ac1b/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[ 13.918448] Bluetooth: RFCOMM TTY layer initialized
[ 13.918467] Bluetooth: RFCOMM socket layer initialized
[ 13.918480] Bluetooth: RFCOMM ver 1.11
[ 15.039560] rfkill: input handler disabled
[ 16.370632] e1000e 0000:2c:1f.6 enp44s31f6: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None