Re: UAF during boot on MTL based devices with attached dock

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Ilpo,

On Tue, 2024-09-24 at 13:51 +0300, Ilpo Järvinen wrote:
> On Mon, 23 Sep 2024, Wassenberg, Dennis wrote:
> 
> > Hi together,
> > 
> > we did some further analysis on this:
> > 
> > Because we are working on kernel 6.8.12, I will use some logs from this kernel version, just for demonstration. The
> > initial report was based on 6.11.
> > 
> > After we tried a KASAN build (dmesg-ramoops-kasan) it looks like it is exactly the same pciehp flow which leads to
> > the
> > UAF.
> > Both going through pciehp_ist -> pciehp_disable_slot -> pciehp_unconfigure_device -> pci_remove_bus_device -> ...
> > This means there are two consecutive interrupts, running on CPU 12 and both will execute the same flow.
> > At the latest the pci_lock_rescan_remove should be taken in pciehp_unconfigure_device to prevent accessing the
> > pci/bus
> > structures in parallel.
> > 
> > I had a look if there are shared data structures accessed in this code path:
> > For me the access to "*parent = ctrl->pcie->port->subordinate;" looks fishy in pciehp_unconfigure_device. The parent
> > ptr
> > will be obtained before getting the lock (pci_lock_rescan_remove). Now, if there are two concurrent/consecutive
> > flows
> > come into this function, both will get the pointer to the parent bridge/subordinate. One thread will enter the lock
> > and
> > the other one is waiting until the lock is gone. The thread which enters the lock at first will completely remove
> > the
> > bridge and the subordinate: pciehp_unconfigure_device -> pci_stop_and_remove_bus_device -> pci_remove_bus_device ->
> > pci_destroy_dev: This will destroy the pci_dev and the subordinate is a part the this structure as well. Now
> > everything
> > is gone below this pci_bus (childs included). In pci_remove_bus_device there is a loop which iterates over all child
> > devices and call pci_remove_bus_device again. This means even the child bridges of the current bridge will be
> > deleted.
> > In the end: everything is gone below the bridge which is regarded here at first.
> 
> Doesn't that end up removing portdrv/hotplug too so pciehp_remove() does 
> release ctrl? I'm not sure if ctrl can be safely accessed even if the 
> lock is taken first?
Yes, it looks like it ends up in removing portdrv/hotplug too. I am not sure if this can be safely accessed. For testing
I added "set_service_data(dev, NULL);" at the end of pciehp_remove. This should make sure that it is not possible to
access freed ctrl. If there is a flow which accesses this, it should result in a null-ptr instead of UAF. I did some
runs with this change but I always ran into the UAF.

For me it looks more related to the slot object. If I compare two runs (one with dyndbg enabled for pci and one without)
it will access the failing address in the __dynamic_dev_dbg portion at pci_destroy_slot in case of the dyndbg enabled
run. In case of the non dyndbg run it will fail while accessing "kobject_put(&slot->kobj);" in pci_destroy_slot.
Unfortunately I have currently no clue about how can this slot object ever been destroyed prematurely.

I attach the logs of both runs. I know, one is based on an other kernel version but there it is more easy to reproduce
with KASAN enabled.

Thank you & best regards,
Dennis

> 

Oops#1 Part1
<5>[    0.000000] Linux version 6.8.12-grsec+ (wassenberg@ws-1) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #33 SMP PREEMPT_DYNAMIC Wed Sep 25 14:05:27 UTC 2024
<6>[    0.000000] Command line: BOOT_IMAGE=/isolinux/bzImage loglevel=1 sina_toram console=tty1 intel_iommu=on
<6>[    0.000000] KERNEL supported cpus:
<6>[    0.000000]   Intel GenuineIntel
<6>[    0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
<6>[    0.000000] BIOS-provided physical RAM map:
<6>[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
<6>[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003e9f3fff] usable
<6>[    0.000000] BIOS-e820: [mem 0x000000003e9f4000-0x000000003fa2efff] ACPI NVS
<6>[    0.000000] BIOS-e820: [mem 0x000000003fa2f000-0x000000003fafefff] ACPI data
<6>[    0.000000] BIOS-e820: [mem 0x000000003faff000-0x00000000422fefff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000422ff000-0x00000000424fefff] type 20
<6>[    0.000000] BIOS-e820: [mem 0x00000000424ff000-0x00000000744fefff] usable
<6>[    0.000000] BIOS-e820: [mem 0x00000000744ff000-0x0000000077ffefff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x0000000077fff000-0x0000000077ffffff] usable
<6>[    0.000000] BIOS-e820: [mem 0x0000000078000000-0x00000000887fffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000086fffffff] usable
<6>[    0.000000] SMT: disabled
<6>[    0.000000] NX (Execute Disable) protection: active
<6>[    0.000000] APIC: Static calls initialized
<6>[    0.000000] user-defined physical RAM map:
<6>[    0.000000] user: [mem 0x0000000000000000-0x000000000009ffff] usable
<6>[    0.000000] user: [mem 0x00000000000a0000-0x00000000000fffff] reserved
<6>[    0.000000] user: [mem 0x0000000000100000-0x000000003e9f3fff] usable
<6>[    0.000000] user: [mem 0x000000003e9f4000-0x000000003fa2efff] ACPI NVS
<6>[    0.000000] user: [mem 0x000000003fa2f000-0x000000003fafefff] ACPI data
<6>[    0.000000] user: [mem 0x000000003faff000-0x00000000422fefff] reserved
<6>[    0.000000] user: [mem 0x00000000422ff000-0x00000000424fefff] type 20
<6>[    0.000000] user: [mem 0x00000000424ff000-0x00000000744fefff] usable
<6>[    0.000000] user: [mem 0x00000000744ff000-0x0000000077ffefff] reserved
<6>[    0.000000] user: [mem 0x0000000077fff000-0x0000000077ffffff] usable
<6>[    0.000000] user: [mem 0x0000000078000000-0x00000000887fffff] reserved
<6>[    0.000000] user: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
<6>[    0.000000] user: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
<6>[    0.000000] user: [mem 0x0000000100000000-0x0000000187ffffff] usable
<6>[    0.000000] user: [mem 0x0000000188000000-0x0000000189ffffff] reserved
<6>[    0.000000] user: [mem 0x000000018a000000-0x000000086fffffff] usable
<6>[    0.000000] efi: EFI v2.7 by Lenovo
<6>[    0.000000] efi: ACPI=0x3fafe000 ACPI 2.0=0x3fafe014 SMBIOS=0x42208000 SMBIOS 3.0=0x421fb000 MEMATTR=0x6e246018 ESRT=0x6dd66818 
<6>[    0.000000] SMBIOS 3.6.0 present.
<6>[    0.000000] DMI: LENOVO 21LVS1CV00/21LVS1CV00, BIOS N45ET18W (1.08 ) 07/08/2024
<6>[    0.000000] tsc: Detected 3000.000 MHz processor
<6>[    0.000000] tsc: Detected 2995.200 MHz TSC
<7>[    0.000012] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
<7>[    0.000016] e820: remove [mem 0x000a0000-0x000fffff] usable
<6>[    0.000020] last_pfn = 0x870000 max_arch_pfn = 0x400000000
<6>[    0.000025] MTRR map: 8 entries (3 fixed + 5 variable; max 23), built from 10 variable MTRRs
<6>[    0.000027] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
<6>[    0.000628] x2apic: enabled by BIOS, switching to x2apic ops
<6>[    0.000629] last_pfn = 0x78000 max_arch_pfn = 0x400000000
<6>[    0.025516] Using GB pages for direct mapping
<4>[    0.025517] PAX: PCID detected
<4>[    0.025518] PAX: INVPCID detected
<6>[    0.028938] Secure boot disabled
<6>[    0.028939] RAMDISK: [mem 0x31cf0000-0x3496efff]
<6>[    0.028940] Allocated new RAMDISK: [mem 0x86d000000-0x86fc7e62f]
<6>[    0.041921] Move RAMDISK from [mem 0x31cf0000-0x3496e62f] to [mem 0x86d000000-0x86fc7e62f]
<6>[    0.041933] ACPI: Early table checksum verification disabled
<6>[    0.041938] ACPI: RSDP 0x000000003FAFE014 000024 (v02 LENOVO)
<6>[    0.041946] ACPI: XSDT 0x000000003FAFD228 00016C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.041955] ACPI: FACP 0x000000004213A000 000114 (v06 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.041965] ACPI: DSDT 0x00000000420D5000 061056 (v02 LENOVO ICL      00000002      01000013)
<6>[    0.041969] ACPI: FACS 0x000000003FA08000 000040
<6>[    0.041973] ACPI: SSDT 0x000000004221B000 00038C (v02 LENOVO Pmax_Dev 00000001 INTL 20210930)
<6>[    0.041977] ACPI: SSDT 0x000000004221A000 000689 (v02 LENOVO Cpu0Ist  00003000 INTL 20210930)
<6>[    0.041981] ACPI: SSDT 0x0000000042219000 0005E7 (v02 LENOVO Cpu0Hwp  00003000 INTL 20210930)
<6>[    0.041985] ACPI: SSDT 0x0000000042218000 0001AB (v02 LENOVO Cpu0Psd  00003000 INTL 20210930)
<6>[    0.041988] ACPI: SSDT 0x0000000042217000 000394 (v02 LENOVO Cpu0Cst  00003001 INTL 20210930)
<6>[    0.041992] ACPI: SSDT 0x0000000042215000 001BAF (v02 LENOVO ApIst    00003000 INTL 20210930)
<6>[    0.041996] ACPI: SSDT 0x0000000042213000 001620 (v02 LENOVO ApHwp    00003000 INTL 20210930)
<6>[    0.042000] ACPI: SSDT 0x0000000042211000 001349 (v02 LENOVO ApPsd    00003000 INTL 20210930)
<6>[    0.042003] ACPI: SSDT 0x0000000042210000 000FBB (v02 LENOVO ApCst    00003000 INTL 20210930)
<6>[    0.042007] ACPI: SSDT 0x000000004220C000 003BC8 (v02 LENOVO CpuSsdt  00003000 INTL 20210930)
<6>[    0.042011] ACPI: SSDT 0x000000004220B000 00059B (v02 LENOVO CtdpB    00001000 INTL 20210930)
<6>[    0.042015] ACPI: DTPR 0x0000000042209000 000088 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042019] ACPI: SSDT 0x0000000042186000 0012A6 (v02 LENOVO PDatTabl 00001000 INTL 20210930)
<6>[    0.042023] ACPI: SSDT 0x0000000042146000 002679 (v02 LENOVO IgfxSsdt 00003000 INTL 20210930)
<6>[    0.042027] ACPI: SSDT 0x000000004213C000 009BEE (v02 LENOVO TcssSsdt 00001000 INTL 20210930)
<6>[    0.042031] ACPI: ECDT 0x000000004213B000 000053 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042035] ACPI: HPET 0x0000000042139000 000038 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042039] ACPI: APIC 0x0000000042138000 000358 (v05 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042044] ACPI: MCFG 0x0000000042137000 00003C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042048] ACPI: SSDT 0x00000000420CF000 005EDB (v02 LENOVO MtlP_Rvp 00001000 INTL 20210930)
<6>[    0.042052] ACPI: SSDT 0x00000000420CE000 00027B (v02 LENOVO PID1Ssdt 00000010 INTL 20210930)
<6>[    0.042056] ACPI: SSDT 0x00000000420CC000 00123A (v02 LENOVO ProjSsdt 00000010 INTL 20210930)
<6>[    0.042060] ACPI: SSDT 0x00000000420C7000 00429C (v02 LENOVO DptfTabl 00001000 INTL 20210930)
<6>[    0.042064] ACPI: LPIT 0x00000000420C6000 0000CC (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042068] ACPI: WSMT 0x00000000420C5000 000028 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042072] ACPI: SSDT 0x00000000420BF000 00587D (v02 LENOVO TbtTypeC 00000000 INTL 20210930)
<6>[    0.042076] ACPI: DBGP 0x00000000420BE000 000034 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042080] ACPI: DBG2 0x00000000420BD000 000054 (v00 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042084] ACPI: NHLT 0x00000000420BC000 00096C (v00 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042088] ACPI: MSDM 0x00000000420BB000 000055 (v03 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042092] ACPI: SSDT 0x00000000420A5000 001043 (v02 LENOVO UsbCTabl 00001000 INTL 20210930)
<6>[    0.042096] ACPI: BATB 0x00000000420A3000 00004A (v02 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042100] ACPI: DMAR 0x00000000402A1000 000098 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042105] ACPI: FPDT 0x00000000402A0000 000044 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042108] ACPI: SSDT 0x000000004029E000 0018C6 (v02 LENOVO SocGpe   00003000 INTL 20210930)
<6>[    0.042113] ACPI: SSDT 0x000000004029B000 0028D3 (v02 LENOVO SocCmn   00003000 INTL 20210930)
<6>[    0.042116] ACPI: SDEV 0x000000004029A000 0000BC (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042120] ACPI: PHAT 0x0000000040271000 00080C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042123] ACPI: BGRT 0x0000000040270000 000038 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042127] ACPI: UEFI 0x000000003E9F4000 000076 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042130] ACPI: Reserving FACP table memory at [mem 0x4213a000-0x4213a113]
<6>[    0.042132] ACPI: Reserving DSDT table memory at [mem 0x420d5000-0x42136055]
<6>[    0.042133] ACPI: Reserving FACS table memory at [mem 0x3fa08000-0x3fa0803f]
<6>[    0.042133] ACPI: Reserving SSDT table memory at [mem 0x4221b000-0x4221b38b]
<6>[    0.042134] ACPI: Reserving SSDT table memory at [mem 0x4221a000-0x4221a688]
<6>[    0.042135] ACPI: Reserving SSDT table memory at [mem 0x42219000-0x422195e6]
<6>[    0.042136] ACPI: Reserving SSDT table memory at [mem 0x42218000-0x422181aa]
<6>[    0.042137] ACPI: Reserving SSDT table memory at [mem 0x42217000-0x42217393]
<6>[    0.042138] ACPI: Reserving SSDT table memory at [mem 0x42215000-0x42216bae]
<6>[    0.042139] ACPI: Reserving SSDT table memory at [mem 0x42213000-0x4221461f]
<6>[    0.042139] ACPI: Reserving SSDT table memory at [mem 0x42211000-0x42212348]
<6>[    0.042140] ACPI: Reserving SSDT table memory at [mem 0x42210000-0x42210fba]
<6>[    0.042141] ACPI: Reserving SSDT table memory at [mem 0x4220c000-0x4220fbc7]
<6>[    0.042142] ACPI: Reserving SSDT table memory at [mem 0x4220b000-0x4220b59a]
<6>[    0.042142] ACPI: Reserving DTPR table memory at [mem 0x42209000-0x42209087]
<6>[    0.042143] ACPI: Reserving SSDT table memory at [mem 0x42186000-0x421872a5]
<6>[    0.042144] ACPI: Reserving SSDT table memory at [mem 0x42146000-0x42148678]
<6>[    0.042145] ACPI: Reserving SSDT table memory at [mem 0x4213c000-0x42145bed]
<6>[    0.042146] ACPI: Reserving ECDT table memory at [mem 0x4213b000-0x4213b052]
<6>[    0.042146] ACPI: Reserving HPET table memory at [mem 0x42139000-0x42139037]
<6>[    0.042147] ACPI: Reserving APIC table memory at [mem 0x42138000-0x42138357]
<6>[    0.042148] ACPI: Reserving MCFG table memory at [mem 0x42137000-0x4213703b]
<6>[    0.042149] ACPI: Reserving SSDT table memory at [mem 0x420cf000-0x420d4eda]
<6>[    0.042150] ACPI: Reserving SSDT table memory at [mem 0x420ce000-0x420ce27a]
<6>[    0.042151] ACPI: Reserving SSDT table memory at [mem 0x420cc000-0x420cd239]
<6>[    0.042152] ACPI: Reserving SSDT table memory at [mem 0x420c7000-0x420cb29b]
<6>[    0.042152] ACPI: Reserving LPIT table memory at [mem 0x420c6000-0x420c60cb]
<6>[    0.042154] ACPI: Reserving WSMT table memory at [mem 0x420c5000-0x420c5027]
<6>[    0.042155] ACPI: Reserving SSDT table memory at [mem 0x420bf000-0x420c487c]
<6>[    0.042156] ACPI: Reserving DBGP table memory at [mem 0x420be000-0x420be033]
<6>[    0.042156] ACPI: Reserving DBG2 table memory at [mem 0x420bd000-0x420bd053]
<6>[    0.042157] ACPI: Reserving NHLT table memory at [mem 0x420bc000-0x420bc96b]
<6>[    0.042158] ACPI: Reserving MSDM table memory at [mem 0x420bb000-0x420bb054]
<6>[    0.042159] ACPI: Reserving SSDT table memory at [mem 0x420a5000-0x420a6042]
<6>[    0.042159] ACPI: Reserving BATB table memory at [mem 0x420a3000-0x420a3049]
<6>[    0.042160] ACPI: Reserving DMAR table memory at [mem 0x402a1000-0x402a1097]
<6>[    0.042161] ACPI: Reserving FPDT table memory at [mem 0x402a0000-0x402a0043]
<6>[    0.042162] ACPI: Reserving SSDT table memory at [mem 0x4029e000-0x4029f8c5]
<6>[    0.042162] ACPI: Reserving SSDT table memory at [mem 0x4029b000-0x4029d8d2]
<6>[    0.042163] ACPI: Reserving SDEV table memory at [mem 0x4029a000-0x4029a0bb]
<6>[    0.042164] ACPI: Reserving PHAT table memory at [mem 0x40271000-0x4027180b]
<6>[    0.042165] ACPI: Reserving BGRT table memory at [mem 0x40270000-0x40270037]
<6>[    0.042165] ACPI: Reserving UEFI table memory at [mem 0x3e9f4000-0x3e9f4075]
<6>[    0.042314] APIC: Switched APIC routing to: cluster x2apic
<6>[    0.042427] Zone ranges:
<6>[    0.042430]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
<6>[    0.042432]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
<6>[    0.042433]   Normal   [mem 0x0000000100000000-0x000000086fffffff]
<6>[    0.042434] Movable zone start for each node
<6>[    0.042435] Early memory node ranges
<6>[    0.042435]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
<6>[    0.042437]   node   0: [mem 0x0000000000100000-0x000000003e9f3fff]
<6>[    0.042438]   node   0: [mem 0x00000000424ff000-0x00000000744fefff]
<6>[    0.042438]   node   0: [mem 0x0000000077fff000-0x0000000077ffffff]
<6>[    0.042439]   node   0: [mem 0x0000000100000000-0x0000000187ffffff]
<6>[    0.042440]   node   0: [mem 0x000000018a000000-0x000000086fffffff]
<6>[    0.042442] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fffffff]
<6>[    0.042448] On node 0, zone DMA: 1 pages in unavailable ranges
<6>[    0.042505] On node 0, zone DMA: 96 pages in unavailable ranges
<6>[    0.047611] On node 0, zone DMA32: 15115 pages in unavailable ranges
<6>[    0.047830] On node 0, zone DMA32: 15104 pages in unavailable ranges
<6>[    0.131047] On node 0, zone Normal: 8192 pages in unavailable ranges
<6>[    0.506931] kasan: KernelAddressSanitizer initialized
<6>[    0.507679] ACPI: PM-Timer IO Port: 0x1808
<6>[    0.507698] ACPI: X2APIC_NMI (uid[0xffffffff] high level lint[0x1])
<6>[    0.507737] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
<6>[    0.507741] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
<6>[    0.507744] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
<6>[    0.507751] ACPI: Using ACPI (MADT) for SMP configuration information
<6>[    0.507753] ACPI: HPET id: 0x8086a201 base: 0xfed00000
<6>[    0.507760] TSC deadline timer available
<6>[    0.507762] smpboot: Allowing 18 CPUs, 0 hotplug CPUs
<6>[    0.507780] [mem 0x88800000-0xbfffffff] available for PCI devices
<6>[    0.507787] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
<6>[    0.519409] setup_percpu: NR_CPUS:32 nr_cpumask_bits:18 nr_cpu_ids:18 nr_node_ids:1
<6>[    0.529156] percpu: Embedded 1287 pages/cpu s222504 r8192 d5040856 u6291456
<7>[    0.529168] pcpu-alloc: s222504 r8192 d5040856 u6291456 alloc=3*2097152
<7>[    0.529172] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 
<7>[    0.529179] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 
<7>[    0.529185] pcpu-alloc: [0] 16 [0] 17 
<5>[    0.529236] Kernel command line: memmap=0x2000000$0x188000000 ramoops.mem_address=0x188000000 ramoops.mem_size=0x2000000 ramoops.ecc=1 ramoops.record_size=0x200000 ramoops.console_size=0 ramoops.ftrace_size=0 ramoops.pmsg_size=0 mitigations=auto nosmt dummy_hcd.is_super_speed=true g_mass_storage.idVendor=0x22e0 g_mass_storage.idProduct=0x0300 g_mass_storage.iManufacturer=Secunet g_mass_storage.iProduct="SINA Virtual USB Stick" g_mass_storage.removable=1 g_mass_storage.nofua=1 BOOT_IMAGE=/isolinux/bzImage loglevel=1 sina_toram console=tty1 intel_iommu=on
<6>[    0.529329] DMAR: IOMMU enabled
<5>[    0.529332] Unknown kernel command line parameters "sina_toram BOOT_IMAGE=/isolinux/bzImage", will be passed to user space.
<5>[    0.529346] random: crng init done
<6>[    0.532150] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
<6>[    0.533541] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
<6>[    0.535077] Built 1 zonelists, mobility grouping on.  Total pages: 8122573
<6>[    0.535081] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
<6>[    0.535083] stackdepot: allocating hash table via alloc_large_system_hash
<6>[    0.535084] stackdepot hash table entries: 1048576 (order: 12, 16777216 bytes, linear)
<6>[    0.536483] software IO TLB: area num 32.
<6>[    3.376707] Memory: 27931004K/33007184K available (62418K kernel code, 20865K rwdata, 25524K rodata, 12288K init, 4052K bss, 5076180K reserved, 0K cma-reserved)
<6>[    3.377010] PAX: initializing 52201 (978) autoslabs for vmlinux
<6>[    3.614698] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=18, Nodes=1
<6>[    3.614755] ftrace: allocating 60872 entries in 238 pages
<6>[    3.712076] ftrace: allocated 238 pages with 6 groups
<6>[    3.714699] Dynamic Preempt: voluntary
<6>[    3.714975] rcu: Preemptible hierarchical RCU implementation.
<6>[    3.714976] rcu: 	RCU event tracing is enabled.
<6>[    3.714976] rcu: 	RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=18.
<6>[    3.714978] 	Trampoline variant of Tasks RCU enabled.
<6>[    3.714978] 	Rude variant of Tasks RCU enabled.
<6>[    3.714979] 	Tracing variant of Tasks RCU enabled.
<6>[    3.714980] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
<6>[    3.714981] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=18
<6>[    3.724704] NR_IRQS: 4352, nr_irqs: 2200, preallocated irqs: 16
<6>[    3.725175] rcu: srcu_init: Setting srcu_struct sizes based on contention.
<6>[    3.725459] Console: colour dummy device 80x25
<6>[    3.725463] printk: legacy console [tty1] enabled
<6>[    3.725508] ACPI: Core revision 20230628
<6>[    3.726201] hpet: HPET dysfunctional in PC10. Force disabled.
<6>[    3.726202] APIC: Switch to symmetric I/O mode setup
<6>[    3.726205] DMAR: Host address width 42
<6>[    3.726207] DMAR: DRHD base: 0x000000fc800000 flags: 0x0
<6>[    3.726259] DMAR: dmar0: reg_base_addr fc800000 ver 7:0 cap c9de008cee690462 ecap 12ca9a00f0ef5e
<6>[    3.726262] DMAR: DRHD base: 0x000000fc801000 flags: 0x1
<6>[    3.726268] DMAR: dmar1: reg_base_addr fc801000 ver 7:0 cap c9de008cee690462 ecap 12ca9a00f0efde
<6>[    3.726270] DMAR: SATC flags: 0x1
<6>[    3.726283] DMAR-IR: IOAPIC id 2 under DRHD base  0xfc801000 IOMMU 1
<6>[    3.726285] DMAR-IR: HPET id 0 under DRHD base 0xfc801000
<6>[    3.726286] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
<6>[    3.727884] DMAR-IR: Enabled IRQ remapping in x2apic mode
<6>[    3.732052] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b2c8ec87c7, max_idle_ns: 440795278598 ns
<6>[    3.732065] Calibrating delay loop (skipped), value calculated using timer frequency.. 5990.40 BogoMIPS (lpj=2995200)
<6>[    3.732130] CPU0: Thermal monitoring enabled (TM1)
<6>[    3.732133] x86/cpu: User Mode Instruction Prevention (UMIP) activated
<6>[    3.732145] CET detected: Indirect Branch Tracking enabled
<6>[    3.732334] process: using mwait in idle threads
<6>[    3.732339] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
<6>[    3.732340] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
<6>[    3.732344] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization (complete, automated)
<6>[    3.732351] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
<6>[    3.732352] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
<6>[    3.732358] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
<6>[    3.732362] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
<6>[    3.732375] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
<6>[    3.732377] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
<6>[    3.732378] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
<6>[    3.732379] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
<6>[    3.732381] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
<6>[    3.732383] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
<6>[    3.732384] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
<6>[    3.732386] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
<6>[    3.732387] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
<6>[    3.733059] Freeing SMP alternatives memory: 44K
<6>[    3.733059] pid_max: default: 32768 minimum: 501
<6>[    3.733059] LSM: initializing lsm=capability,sina
<6>[    3.733059] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
<6>[    3.733059] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
<6>[    3.733059] smpboot: CPU0: Intel(R) Core(TM) Ultra 5 125H (family: 0x6, model: 0xaa, stepping: 0x4)
<6>[    3.733059] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.733059] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.733059] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.733059] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Meteorlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
<6>[    3.733059] core: cpu_core PMU driver: 
<6>[    3.733059] ... version:                5
<6>[    3.733059] ... bit width:              48
<6>[    3.733059] ... generic registers:      8
<6>[    3.733059] ... value mask:             0000ffffffffffff
<6>[    3.733059] ... max period:             00007fffffffffff
<6>[    3.733059] ... fixed-purpose events:   4
<6>[    3.733059] ... event mask:             0001000f000000ff
<6>[    3.733059] signal: max sigframe size: 3232
<6>[    3.733059] Estimated ratio of average max frequency by base frequency (times 1024): 1467
<6>[    3.733059] rcu: Hierarchical SRCU implementation.
<6>[    3.733059] rcu: 	Max phase no-delay instances is 400.
<6>[    3.734894] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
<6>[    3.735223] smp: Bringing up secondary CPUs ...
<6>[    3.735357] smpboot: x86: Booting SMP configuration:
<6>[    3.735358] .... node  #0, CPUs:        #1  #3  #6  #8  #9 #10 #11 #12 #13 #14 #15 #16 #17
<6>[    0.007734] core: cpu_atom PMU driver: PEBS-via-PT 
<6>[    0.007734] ... version:                5
<6>[    0.007734] ... bit width:              48
<6>[    0.007734] ... generic registers:      8
<6>[    0.007734] ... value mask:             0000ffffffffffff
<6>[    0.007734] ... max period:             00007fffffffffff
<6>[    0.007734] ... fixed-purpose events:   3
<6>[    0.007734] ... event mask:             00000007000000ff
<4>[    3.747263]   #2  #4  #5  #7
<6>[    3.771634] smp: Brought up 1 node, 14 CPUs
<6>[    3.771646] smpboot: Max logical packages: 2
<6>[    3.771648] smpboot: Total of 14 processors activated (83865.60 BogoMIPS)
<6>[    3.774241] devtmpfs: initialized
<6>[    3.777428] ACPI: PM: Registering ACPI NVS region [mem 0x3e9f4000-0x3fa2efff] (17018880 bytes)
<6>[    3.777531] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
<6>[    3.777544] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
<6>[    3.778080] pinctrl core: initialized pinctrl subsystem
<6>[    3.778339] PM: RTC time: 16:19:12, date: 2024-09-25
<6>[    3.778528] NET: Registered PF_NETLINK/PF_ROUTE protocol family
<6>[    3.779025] ramoops: using module parameters
<6>[    3.779247] ramoops: uncorrectable error in header
<6>[    3.779337] ramoops: uncorrectable error in header
<6>[    3.779420] ramoops: uncorrectable error in header
<6>[    3.779506] ramoops: uncorrectable error in header
<6>[    3.779627] ramoops: uncorrectable error in header
<6>[    3.779713] ramoops: uncorrectable error in header
<6>[    3.779802] ramoops: uncorrectable error in header
<6>[    3.779888] ramoops: uncorrectable error in header
<6>[    3.779979] ramoops: uncorrectable error in header
<6>[    3.780068] ramoops: uncorrectable error in header
<6>[    3.781259] pstore: Using crash dump compression: deflate
<6>[    3.781262] pstore: Registered ramoops as persistent store backend
<6>[    3.781263] ramoops: using 0x2000000@0x188000000, ecc: 16
<6>[    3.781500] thermal_sys: Registered thermal governor 'step_wise'
<6>[    3.781502] thermal_sys: Registered thermal governor 'user_space'
<6>[    3.781560] cpuidle: using governor menu
<6>[    3.781560] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
<6>[    3.781560] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
<6>[    3.781560] PCI: ECAM [mem 0xc0000000-0xcfffffff] reserved as E820 entry
<6>[    3.789097] PCI: Using configuration type 1 for base access
<6>[    3.789101] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
<6>[    3.789152] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
<6>[    3.789152] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
<6>[    3.789274] ACPI: Added _OSI(Module Device)
<6>[    3.789274] ACPI: Added _OSI(Processor Device)
<6>[    3.789274] ACPI: Added _OSI(3.0 _SCP Extensions)
<6>[    3.789274] ACPI: Added _OSI(Processor Aggregator Device)
<6>[    4.243690] ACPI: 23 ACPI AML tables successfully acquired and loaded
<6>[    4.252227] ACPI: EC: EC started
<6>[    4.252229] ACPI: EC: interrupt blocked
<6>[    4.253138] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
<6>[    4.253140] ACPI: EC: Boot ECDT EC used to handle transactions
<5>[    4.256046] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
<6>[    5.128727] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
<6>[    5.128734] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
<6>[    5.151987] ACPI: _OSC evaluated successfully for all CPUs
<6>[    5.151989] ACPI: Interpreter enabled
<6>[    5.152063] ACPI: PM: (supports S0 S5)
<6>[    5.152066] ACPI: Using IOAPIC for interrupt routing
<6>[    5.152193] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
<6>[    5.152195] PCI: Ignoring E820 reservations for host bridge windows
<6>[    5.155710] ACPI: Enabled 10 GPEs in block 00 to 7F
<6>[    5.155731] ACPI: Enabled 8 GPEs in block 80 to DF
<6>[    5.169522] ACPI: \_SB_.PC00.LPCB.EC__.PUBS: New power resource
<6>[    5.186185] ACPI: \_SB_.PC00.XHCI.RHUB.HS08.WWPR: New power resource
<6>[    5.240965] ACPI: \_SB_.PC00.RP01.PXP_: New power resource
<6>[    5.261638] ACPI: \_SB_.PC00.RP06.PXP_: New power resource
<6>[    5.270249] ACPI: \_SB_.PC00.RP07.PXP_: New power resource
<6>[    5.286547] ACPI: \_SB_.PC00.RP10.PXP_: New power resource
<6>[    5.304258] ACPI: \_SB_.PC00.TBT0: New power resource
<6>[    5.304697] ACPI: \_SB_.PC00.TBT1: New power resource
<6>[    5.305129] ACPI: \_SB_.PC00.D3C_: New power resource
<6>[    5.419935] ACPI: \PIN_: New power resource
<6>[    5.420047] ACPI: \PINP: New power resource
<6>[    5.423292] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
<6>[    5.423303] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
<6>[    5.431677] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
<6>[    5.440981] PCI host bridge to bus 0000:00
<6>[    5.440991] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
<6>[    5.440994] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
<6>[    5.440996] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
<6>[    5.440998] pci_bus 0000:00: root bus resource [mem 0x90000000-0xbfffffff window]
<6>[    5.440999] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x3ffbfffffff window]
<6>[    5.441004] pci_bus 0000:00: root bus resource [bus 00-fe]
<6>[    5.577030] pci 0000:00:00.0: [8086:7d14] type 00 class 0x060000 conventional PCI endpoint
<6>[    5.577448] pci 0000:00:02.0: [8086:7d55] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
<6>[    5.577463] pci 0000:00:02.0: BAR 0 [mem 0x4058000000-0x4058ffffff 64bit pref]
<6>[    5.577473] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
<6>[    5.577511] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
<6>[    5.577515] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
<6>[    5.577560] pci 0000:00:02.0: PME# supported from D0 D3hot
<6>[    5.578908] pci 0000:00:04.0: [8086:7d03] type 00 class 0x118000 conventional PCI endpoint
<6>[    5.578924] pci 0000:00:04.0: BAR 0 [mem 0x405a6c0000-0x405a6dffff 64bit]
<6>[    5.581782] pci 0000:00:06.0: [8086:7e4d] type 01 class 0x060400 PCIe Root Port
<6>[    5.581809] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[    5.581824] pci 0000:00:06.0:   bridge window [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[    5.581922] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
<6>[    5.589105] pci 0000:00:06.1: [8086:7eca] type 01 class 0x060400 PCIe Root Port
<6>[    5.589132] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[    5.589138] pci 0000:00:06.1:   bridge window [mem 0xaac00000-0xaacfffff]
<6>[    5.589234] pci 0000:00:06.1: PME# supported from D0 D3hot D3cold
<6>[    5.597047] pci 0000:00:07.0: [8086:7ec4] type 01 class 0x060400 PCIe Root Port
<6>[    5.597073] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[    5.597079] pci 0000:00:07.0:   bridge window [mem 0x9e000000-0xaa1fffff]
<6>[    5.597088] pci 0000:00:07.0:   bridge window [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[    5.597277] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
<6>[    5.604158] pci 0000:00:07.2: [8086:7ec6] type 01 class 0x060400 PCIe Root Port
<6>[    5.604185] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[    5.604191] pci 0000:00:07.2:   bridge window [mem 0x90000000-0x9c1fffff]
<6>[    5.604200] pci 0000:00:07.2:   bridge window [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[    5.604385] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
<6>[    5.611258] pci 0000:00:08.0: [8086:7e4c] type 00 class 0x088000 conventional PCI endpoint
<6>[    5.611273] pci 0000:00:08.0: BAR 0 [mem 0x405a70f000-0x405a70ffff 64bit]
<6>[    5.611646] pci 0000:00:0a.0: [8086:7d0d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
<6>[    5.611654] pci 0000:00:0a.0: BAR 0 [mem 0x405a680000-0x405a6bffff 64bit]
<6>[    5.611671] pci 0000:00:0a.0: enabling Extended Tags
<6>[    5.611818] pci 0000:00:0b.0: [8086:7d1d] type 00 class 0x120000 PCIe Root Complex Integrated Endpoint
<6>[    5.611827] pci 0000:00:0b.0: BAR 0 [mem 0x4050000000-0x4057ffffff 64bit]
<6>[    5.611840] pci 0000:00:0b.0: BAR 4 [mem 0x405a70e000-0x405a70efff 64bit]
<6>[    5.612182] pci 0000:00:0d.0: [8086:7ec0] type 00 class 0x0c0330 conventional PCI endpoint
<6>[    5.612195] pci 0000:00:0d.0: BAR 0 [mem 0x405a6f0000-0x405a6fffff 64bit]
<6>[    5.612255] pci 0000:00:0d.0: PME# supported from D3hot D3cold
<6>[    5.616797] pci 0000:00:0d.2: [8086:7ec2] type 00 class 0x0c0340 conventional PCI endpoint
<6>[    5.616813] pci 0000:00:0d.2: BAR 0 [mem 0x405a640000-0x405a67ffff 64bit]
<6>[    5.616823] pci 0000:00:0d.2: BAR 2 [mem 0x405a70d000-0x405a70dfff 64bit]
<6>[    5.616875] pci 0000:00:0d.2: supports D1 D2
<6>[    5.616876] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.618499] pci 0000:00:0d.3: [8086:7ec3] type 00 class 0x0c0340 conventional PCI endpoint
<6>[    5.618514] pci 0000:00:0d.3: BAR 0 [mem 0x405a600000-0x405a63ffff 64bit]
<6>[    5.618524] pci 0000:00:0d.3: BAR 2 [mem 0x405a70c000-0x405a70cfff 64bit]
<6>[    5.618575] pci 0000:00:0d.3: supports D1 D2
<6>[    5.618576] pci 0000:00:0d.3: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.620244] pci 0000:00:14.0: [8086:7e7d] type 00 class 0x0c0330 conventional PCI endpoint
<6>[    5.620259] pci 0000:00:14.0: BAR 0 [mem 0x405a6e0000-0x405a6effff 64bit]
<6>[    5.620325] pci 0000:00:14.0: PME# supported from D3hot D3cold
<6>[    5.624960] pci 0000:00:14.2: [8086:7e7f] type 00 class 0x050000 conventional PCI endpoint
<6>[    5.624977] pci 0000:00:14.2: BAR 0 [mem 0x405a704000-0x405a707fff 64bit]
<6>[    5.624988] pci 0000:00:14.2: BAR 2 [mem 0x405a70b000-0x405a70bfff 64bit]
<6>[    5.625224] pci 0000:00:15.0: [8086:7e78] type 00 class 0x0c8000 conventional PCI endpoint
<6>[    5.625274] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
<6>[    5.628204] pci 0000:00:16.0: [8086:7e70] type 00 class 0x078000 conventional PCI endpoint
<6>[    5.628223] pci 0000:00:16.0: BAR 0 [mem 0x405a709000-0x405a709fff 64bit]
<6>[    5.628312] pci 0000:00:16.0: PME# supported from D3hot
<6>[    5.632830] pci 0000:00:1c.0: [8086:7e38] type 01 class 0x060400 PCIe Root Port
<6>[    5.632856] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<6>[    5.632864] pci 0000:00:1c.0:   bridge window [mem 0xaa200000-0xaabfffff]
<6>[    5.632875] pci 0000:00:1c.0:   bridge window [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[    5.634320] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
<6>[    5.642111] pci 0000:00:1f.0: [8086:7e02] type 00 class 0x060100 conventional PCI endpoint
<6>[    5.645078] pci 0000:00:1f.3: [8086:7e28] type 00 class 0x040380 conventional PCI endpoint
<6>[    5.645121] pci 0000:00:1f.3: BAR 0 [mem 0x405a700000-0x405a703fff 64bit]
<6>[    5.645163] pci 0000:00:1f.3: BAR 4 [mem 0x4059000000-0x40591fffff 64bit]
<6>[    5.645230] pci 0000:00:1f.3: PME# supported from D3hot D3cold
<6>[    5.645540] pci 0000:00:1f.4: [8086:7e22] type 00 class 0x0c0500 conventional PCI endpoint
<6>[    5.645560] pci 0000:00:1f.4: BAR 0 [mem 0x405a708000-0x405a7080ff 64bit]
<6>[    5.645584] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
<6>[    5.648372] pci 0000:00:1f.5: [8086:7e23] type 00 class 0x0c8000 conventional PCI endpoint
<6>[    5.648408] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
<6>[    5.648752] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[    5.648884] pci 0000:04:00.0: [1cc4:660c] type 00 class 0x010802 PCIe Endpoint
<6>[    5.648902] pci 0000:04:00.0: BAR 0 [mem 0xaac00000-0xaac03fff 64bit]
<6>[    5.649526] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[    5.649661] pci 0000:20:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Upstream Port
<6>[    5.649714] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[    5.649728] pci 0000:20:00.0:   bridge window [mem 0x9e000000-0xa9ffffff]
<6>[    5.649746] pci 0000:20:00.0:   bridge window [mem 0x4010000000-0x402befffff 64bit pref]
<6>[    5.649767] pci 0000:20:00.0: enabling Extended Tags
<6>[    5.649954] pci 0000:20:00.0: supports D1 D2
<6>[    5.649955] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.650066] pci 0000:20:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:00:07.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
<6>[    5.653093] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[    5.653245] pci 0000:21:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.653298] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[    5.653352] pci 0000:21:00.0: enabling Extended Tags
<6>[    5.653555] pci 0000:21:00.0: supports D1 D2
<6>[    5.653557] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.653931] pci 0000:21:01.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.653985] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[    5.653999] pci 0000:21:01.0:   bridge window [mem 0xa6000000-0xa9ffffff]
<6>[    5.654017] pci 0000:21:01.0:   bridge window [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[    5.654041] pci 0000:21:01.0: enabling Extended Tags
<6>[    5.654248] pci 0000:21:01.0: supports D1 D2
<6>[    5.654250] pci 0000:21:01.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.654603] pci 0000:21:02.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.654657] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[    5.654671] pci 0000:21:02.0:   bridge window [mem 0xa2000000-0xa5ffffff]
<6>[    5.654689] pci 0000:21:02.0:   bridge window [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[    5.654713] pci 0000:21:02.0: enabling Extended Tags
<6>[    5.654920] pci 0000:21:02.0: supports D1 D2
<6>[    5.654922] pci 0000:21:02.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.655283] pci 0000:21:03.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.655337] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[    5.655351] pci 0000:21:03.0:   bridge window [mem 0x9e000000-0xa1ffffff]
<6>[    5.655369] pci 0000:21:03.0:   bridge window [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[    5.655393] pci 0000:21:03.0: enabling Extended Tags
<6>[    5.655608] pci 0000:21:03.0: supports D1 D2
<6>[    5.655609] pci 0000:21:03.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.655978] pci 0000:21:04.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.656032] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[    5.656083] pci 0000:21:04.0: enabling Extended Tags
<6>[    5.656292] pci 0000:21:04.0: supports D1 D2
<6>[    5.656293] pci 0000:21:04.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.656664] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[    5.656782] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[    5.656901] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[    5.657019] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[    5.657139] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[    5.657266] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[    5.657436] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[    5.657538] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<7>[    5.657583] pci_bus 0000:00: on NUMA node 0
<6>[    5.691673] ACPI: \_SB_.PEPD: Duplicate LPS0 _DSM functions (mask: 0x1)
<6>[    9.954509] Low-power S0 idle used by default for system suspend
<6>[    9.959049] ACPI: EC: interrupt unblocked
<6>[    9.959052] ACPI: EC: event unblocked
<6>[    9.959059] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
<6>[    9.959061] ACPI: EC: GPE=0x6e
<6>[    9.959063] ACPI: \_SB_.PC00.LPCB.EC__: Boot ECDT EC initialization complete
<6>[    9.959068] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
<6>[    9.959314] iommu: Default domain type: Translated
<6>[    9.959316] iommu: DMA domain TLB invalidation policy: lazy mode
<5>[    9.959504] SCSI subsystem initialized
<7>[    9.959581] libata version 3.00 loaded.
<6>[    9.959581] ACPI: bus type USB registered
<6>[    9.959581] usbcore: registered new interface driver usbfs
<6>[    9.959581] usbcore: registered new interface driver hub
<6>[    9.959581] usbcore: registered new device driver usb
<6>[    9.960067] pps_core: LinuxPPS API ver. 1 registered
<6>[    9.960068] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
<6>[    9.960078] PTP clock support registered
<6>[    9.960189] Advanced Linux Sound Architecture Driver Initialized.
<6>[    9.960858] NetLabel: Initializing
<6>[    9.960859] NetLabel:  domain hash size = 128
<6>[    9.960860] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
<6>[    9.960946] NetLabel:  unlabeled traffic allowed by default
<6>[    9.961077] PCI: Using ACPI for IRQ routing
<7>[    9.974846] PCI: pci_cache_line_size set to 64 bytes
<6>[    9.974963] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
<7>[    9.975074] e820: reserve RAM buffer [mem 0x3e9f4000-0x3fffffff]
<7>[    9.975084] e820: reserve RAM buffer [mem 0x744ff000-0x77ffffff]
<6>[    9.975125] pci 0000:00:02.0: vgaarb: setting as boot VGA device
<6>[    9.975125] pci 0000:00:02.0: vgaarb: bridge control possible
<6>[    9.975125] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
<6>[    9.975125] vgaarb: loaded
<6>[    9.982054] clocksource: Switched to clocksource tsc-early
<6>[    9.982054] pnp: PnP ACPI init
<6>[    9.983738] system 00:00: [io  0x0680-0x069f] has been reserved
<6>[    9.983742] system 00:00: [io  0x164e-0x164f] has been reserved
<6>[    9.984317] system 00:01: [io  0x1854-0x1857] has been reserved
<6>[    9.984828] system 00:04: [io  0x1800-0x189f] could not be reserved
<6>[    9.984831] system 00:04: [io  0x0800-0x087f] has been reserved
<6>[    9.984833] system 00:04: [io  0x0880-0x08ff] has been reserved
<6>[    9.984835] system 00:04: [io  0x0900-0x097f] has been reserved
<6>[    9.984837] system 00:04: [io  0x0980-0x09ff] has been reserved
<6>[    9.984839] system 00:04: [io  0x0a00-0x0a7f] has been reserved
<6>[    9.984840] system 00:04: [io  0x0a80-0x0aff] has been reserved
<6>[    9.984842] system 00:04: [io  0x0b00-0x0b7f] has been reserved
<6>[    9.984844] system 00:04: [io  0x0b80-0x0bff] has been reserved
<6>[    9.984845] system 00:04: [io  0x15e0-0x15ef] has been reserved
<6>[    9.984851] system 00:04: [io  0x1600-0x167f] could not be reserved
<6>[    9.984856] system 00:04: [io  0x1640-0x165f] could not be reserved
<6>[    9.984859] system 00:04: [mem 0xc0000000-0xcfffffff] has been reserved
<6>[    9.984861] system 00:04: [mem 0xfed10000-0xfed13fff] has been reserved
<6>[    9.984863] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
<6>[    9.984865] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
<6>[    9.984867] system 00:04: [mem 0xfeb00000-0xfebfffff] has been reserved
<6>[    9.984868] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
<6>[    9.984870] system 00:04: [mem 0xfed90000-0xfed93fff] has been reserved
<6>[    9.992760] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
<6>[    9.992768] system 00:05: [mem 0x00000000-0x00000fff] could not be reserved
<6>[    9.992773] system 00:05: [mem 0x00000000-0x00000fff] could not be reserved
<6>[    9.992775] system 00:05: [mem 0xc0000000-0xcfffffff] has been reserved
<6>[    9.992781] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
<6>[    9.992786] system 00:05: [mem 0xfc800000-0xfc81ffff] could not be reserved
<6>[    9.992795] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
<6>[    9.992797] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
<6>[    9.997219] system 00:06: [io  0xff00-0xfffe] has been reserved
<4>[   10.001198] pnp 00:08: disabling [mem 0x000c0000-0x000c3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[   10.001202] pnp 00:08: disabling [mem 0x000c8000-0x000cbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[   10.001205] pnp 00:08: disabling [mem 0x000d0000-0x000d3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[   10.001207] pnp 00:08: disabling [mem 0x000d8000-0x000dbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<6>[   10.001291] system 00:08: [mem 0x00000000-0x0009ffff] could not be reserved
<6>[   10.001297] system 00:08: [mem 0x000e0000-0x000e3fff] could not be reserved
<6>[   10.001302] system 00:08: [mem 0x000e8000-0x000ebfff] could not be reserved
<6>[   10.001308] system 00:08: [mem 0x000f0000-0x000fffff] could not be reserved
<6>[   10.001313] system 00:08: [mem 0x00100000-0x8fffffff] could not be reserved
<6>[   10.001319] system 00:08: [mem 0xfec00000-0xfed3ffff] could not be reserved
<6>[   10.001325] system 00:08: [mem 0xfed4c000-0xffffffff] could not be reserved
<6>[   10.002232] pnp: PnP ACPI: found 9 devices
<6>[   10.013099] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
<6>[   10.013412] NET: Registered PF_INET protocol family
<6>[   10.013493] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
<6>[   10.016293] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
<6>[   10.016325] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
<6>[   10.016362] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
<6>[   10.016625] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
<6>[   10.016803] TCP: Hash tables configured (established 262144 bind 65536)
<6>[   10.016919] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
<6>[   10.016994] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
<6>[   10.017198] NET: Registered PF_UNIX/PF_LOCAL protocol family
<6>[   10.017740] pci 0000:00:06.0: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
<6>[   10.017745] pci 0000:00:06.0: bridge window [mem 0x00100000-0x000fffff] to [bus 1c] add_size 200000 add_align 100000
<6>[   10.017749] pci 0000:21:01.0: bridge window [io  0x1000-0x0fff] to [bus 23-2e] add_size 1000
<6>[   10.017752] pci 0000:21:02.0: bridge window [io  0x1000-0x0fff] to [bus 2f-3a] add_size 1000
<6>[   10.017753] pci 0000:21:03.0: bridge window [io  0x1000-0x0fff] to [bus 3b-48] add_size 1000
<6>[   10.017756] pci 0000:20:00.0: bridge window [io  0x1000-0x0fff] to [bus 21-49] add_size 3000
<6>[   10.017759] pci 0000:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 20-49] add_size 4000
<6>[   10.017761] pci 0000:00:07.2: bridge window [io  0x1000-0x0fff] to [bus 50-79] add_size 1000
<6>[   10.017763] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
<6>[   10.017776] pci 0000:00:06.0: bridge window [mem 0x9c200000-0x9c3fffff]: assigned
<6>[   10.017780] pci 0000:00:06.0: bridge window [io  0x2000-0x2fff]: assigned
<6>[   10.017783] pci 0000:00:07.0: bridge window [io  0x3000-0x6fff]: assigned
<6>[   10.017785] pci 0000:00:07.2: bridge window [io  0x7000-0x7fff]: assigned
<6>[   10.017787] pci 0000:00:15.0: BAR 0 [mem 0x402c000000-0x402c000fff 64bit]: assigned
<6>[   10.017831] pci 0000:00:1c.0: bridge window [io  0x8000-0x8fff]: assigned
<6>[   10.017834] pci 0000:00:1f.5: BAR 0 [mem 0x9c400000-0x9c400fff]: assigned
<6>[   10.017868] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[   10.017873] pci 0000:00:06.0:   bridge window [io  0x2000-0x2fff]
<6>[   10.017880] pci 0000:00:06.0:   bridge window [mem 0x9c200000-0x9c3fffff]
<6>[   10.017886] pci 0000:00:06.0:   bridge window [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[   10.017893] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[   10.017898] pci 0000:00:06.1:   bridge window [mem 0xaac00000-0xaacfffff]
<6>[   10.017906] pci 0000:20:00.0: bridge window [io  0x3000-0x5fff]: assigned
<6>[   10.017913] pci 0000:21:01.0: bridge window [io  0x3000-0x3fff]: assigned
<6>[   10.017915] pci 0000:21:02.0: bridge window [io  0x4000-0x4fff]: assigned
<6>[   10.017916] pci 0000:21:03.0: bridge window [io  0x5000-0x5fff]: assigned
<6>[   10.017930] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[   10.017951] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[   10.017955] pci 0000:21:01.0:   bridge window [io  0x3000-0x3fff]
<6>[   10.017962] pci 0000:21:01.0:   bridge window [mem 0xa6000000-0xa9ffffff]
<6>[   10.017968] pci 0000:21:01.0:   bridge window [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[   10.017977] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[   10.017981] pci 0000:21:02.0:   bridge window [io  0x4000-0x4fff]
<6>[   10.017988] pci 0000:21:02.0:   bridge window [mem 0xa2000000-0xa5ffffff]
<6>[   10.017994] pci 0000:21:02.0:   bridge window [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[   10.018003] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[   10.018006] pci 0000:21:03.0:   bridge window [io  0x5000-0x5fff]
<6>[   10.018014] pci 0000:21:03.0:   bridge window [mem 0x9e000000-0xa1ffffff]
<6>[   10.018019] pci 0000:21:03.0:   bridge window [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[   10.018029] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[   10.018049] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[   10.018052] pci 0000:20:00.0:   bridge window [io  0x3000-0x5fff]
<6>[   10.018059] pci 0000:20:00.0:   bridge window [mem 0x9e000000-0xa9ffffff]
<6>[   10.018065] pci 0000:20:00.0:   bridge window [mem 0x4010000000-0x402befffff 64bit pref]
<6>[   10.018074] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[   10.018076] pci 0000:00:07.0:   bridge window [io  0x3000-0x6fff]
<6>[   10.018080] pci 0000:00:07.0:   bridge window [mem 0x9e000000-0xaa1fffff]
<6>[   10.018084] pci 0000:00:07.0:   bridge window [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[   10.018089] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[   10.018091] pci 0000:00:07.2:   bridge window [io  0x7000-0x7fff]
<6>[   10.018096] pci 0000:00:07.2:   bridge window [mem 0x90000000-0x9c1fffff]
<6>[   10.018099] pci 0000:00:07.2:   bridge window [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[   10.018105] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<6>[   10.018109] pci 0000:00:1c.0:   bridge window [io  0x8000-0x8fff]
<6>[   10.018117] pci 0000:00:1c.0:   bridge window [mem 0xaa200000-0xaabfffff]
<6>[   10.018122] pci 0000:00:1c.0:   bridge window [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[   10.018131] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
<6>[   10.018133] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
<6>[   10.018135] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
<6>[   10.018136] pci_bus 0000:00: resource 7 [mem 0x90000000-0xbfffffff window]
<6>[   10.018138] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x3ffbfffffff window]
<6>[   10.018140] pci_bus 0000:1c: resource 0 [io  0x2000-0x2fff]
<6>[   10.018142] pci_bus 0000:1c: resource 1 [mem 0x9c200000-0x9c3fffff]
<6>[   10.018143] pci_bus 0000:1c: resource 2 [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[   10.018145] pci_bus 0000:04: resource 1 [mem 0xaac00000-0xaacfffff]
<6>[   10.018147] pci_bus 0000:20: resource 0 [io  0x3000-0x6fff]
<6>[   10.018149] pci_bus 0000:20: resource 1 [mem 0x9e000000-0xaa1fffff]
<6>[   10.018150] pci_bus 0000:20: resource 2 [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[   10.018152] pci_bus 0000:21: resource 0 [io  0x3000-0x5fff]
<6>[   10.018154] pci_bus 0000:21: resource 1 [mem 0x9e000000-0xa9ffffff]
<6>[   10.018155] pci_bus 0000:21: resource 2 [mem 0x4010000000-0x402befffff 64bit pref]
<6>[   10.018157] pci_bus 0000:23: resource 0 [io  0x3000-0x3fff]
<6>[   10.018159] pci_bus 0000:23: resource 1 [mem 0xa6000000-0xa9ffffff]
<6>[   10.018160] pci_bus 0000:23: resource 2 [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[   10.018162] pci_bus 0000:2f: resource 0 [io  0x4000-0x4fff]
<6>[   10.018164] pci_bus 0000:2f: resource 1 [mem 0xa2000000-0xa5ffffff]
<6>[   10.018165] pci_bus 0000:2f: resource 2 [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[   10.018167] pci_bus 0000:3b: resource 0 [io  0x5000-0x5fff]
<6>[   10.018169] pci_bus 0000:3b: resource 1 [mem 0x9e000000-0xa1ffffff]
<6>[   10.018170] pci_bus 0000:3b: resource 2 [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[   10.018172] pci_bus 0000:50: resource 0 [io  0x7000-0x7fff]
<6>[   10.018174] pci_bus 0000:50: resource 1 [mem 0x90000000-0x9c1fffff]
<6>[   10.018175] pci_bus 0000:50: resource 2 [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[   10.018177] pci_bus 0000:1d: resource 0 [io  0x8000-0x8fff]
<6>[   10.018179] pci_bus 0000:1d: resource 1 [mem 0xaa200000-0xaabfffff]
<6>[   10.018180] pci_bus 0000:1d: resource 2 [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[   10.018558] pci 0000:00:0d.0: enabling device (0000 -> 0002)
<6>[   10.020597] PCI: CLS 0 bytes, default 64
<6>[   10.020629] DMAR: No RMRR found
<6>[   10.020630] DMAR: No ATSR found
<6>[   10.020632] DMAR: IOMMU feature sc_support inconsistent
<6>[   10.020634] DMAR: dmar0: Using Queued invalidation
<6>[   10.020647] DMAR: dmar1: Using Queued invalidation
<6>[   10.021161] Unpacking initramfs...
<6>[   10.021360] pci 0000:00:02.0: Adding to iommu group 0
<6>[   10.021778] pci 0000:00:00.0: Adding to iommu group 1
<6>[   10.021805] pci 0000:00:04.0: Adding to iommu group 2
<6>[   10.021833] pci 0000:00:06.0: Adding to iommu group 3
<6>[   10.021859] pci 0000:00:06.1: Adding to iommu group 4
<6>[   10.021896] pci 0000:00:07.0: Adding to iommu group 5
<6>[   10.021921] pci 0000:00:07.2: Adding to iommu group 6
<6>[   10.021944] pci 0000:00:08.0: Adding to iommu group 7
<6>[   10.021967] pci 0000:00:0a.0: Adding to iommu group 8
<6>[   10.021990] pci 0000:00:0b.0: Adding to iommu group 9
<6>[   10.022030] pci 0000:00:0d.0: Adding to iommu group 10
<6>[   10.022048] pci 0000:00:0d.2: Adding to iommu group 10
<6>[   10.022069] pci 0000:00:0d.3: Adding to iommu group 10
<6>[   10.022102] pci 0000:00:14.0: Adding to iommu group 11
<6>[   10.022120] pci 0000:00:14.2: Adding to iommu group 11
<6>[   10.022148] pci 0000:00:15.0: Adding to iommu group 12
<6>[   10.022179] pci 0000:00:16.0: Adding to iommu group 13
<6>[   10.022206] pci 0000:00:1c.0: Adding to iommu group 14
<6>[   10.022248] pci 0000:00:1f.0: Adding to iommu group 15
<6>[   10.022267] pci 0000:00:1f.3: Adding to iommu group 15
<6>[   10.022286] pci 0000:00:1f.4: Adding to iommu group 15
<6>[   10.022307] pci 0000:00:1f.5: Adding to iommu group 15
<6>[   10.022332] pci 0000:04:00.0: Adding to iommu group 16
<6>[   10.022357] pci 0000:20:00.0: Adding to iommu group 17
<6>[   10.022383] pci 0000:21:00.0: Adding to iommu group 18
<6>[   10.022408] pci 0000:21:01.0: Adding to iommu group 19
<6>[   10.022434] pci 0000:21:02.0: Adding to iommu group 20
<6>[   10.022459] pci 0000:21:03.0: Adding to iommu group 21
<6>[   10.022496] pci 0000:21:04.0: Adding to iommu group 22
<6>[   10.026101] DMAR: Intel(R) Virtualization Technology for Directed I/O
<6>[   10.026103] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
<6>[   10.026105] software IO TLB: mapped [mem 0x0000000070400000-0x0000000074400000] (64MB)
<6>[   10.026127] ACPI: bus type thunderbolt registered
<6>[   10.204994] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
<6>[   10.204997] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
<6>[   10.204999] RAPL PMU: hw unit of domain package 2^-14 Joules
<6>[   10.205000] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
<6>[   10.205001] RAPL PMU: hw unit of domain psys 2^-14 Joules
<6>[   10.206337] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b2c8ec87c7, max_idle_ns: 440795278598 ns
<6>[   10.206543] clocksource: Switched to clocksource tsc
<6>[   10.206600] platform rtc_cmos: registered platform RTC device (no PNP device found)
<6>[   10.216859] workingset: timestamp_bits=62 max_order=23 bucket_order=0
<6>[   10.221056] squashfs: version 4.0 (2009/01/31) Phillip Lougher
<6>[   10.221092] 9p: Installing v9fs 9p2000 file system support
<6>[   10.230404] NET: Registered PF_ALG protocol family
<6>[   10.230463] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
<6>[   10.230466] io scheduler mq-deadline registered
<6>[   10.230468] io scheduler kyber registered
<6>[   10.232271] pcieport 0000:00:06.0: PME: Signaling with IRQ 154
<6>[   10.232353] pcieport 0000:00:06.0: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   10.233779] pcieport 0000:00:06.1: PME: Signaling with IRQ 155
<6>[   10.235029] pcieport 0000:00:07.0: PME: Signaling with IRQ 156
<6>[   10.235102] pcieport 0000:00:07.0: pciehp: Slot #12 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   10.235212] pcieport 0000:00:07.0: pciehp: Slot(12): Card not present
<6>[   10.235238] pci_bus 0000:22: busn_res: [bus 22] is released
<6>[   10.236618] pcieport 0000:00:07.2: PME: Signaling with IRQ 157
<6>[   10.236681] pcieport 0000:00:07.2: pciehp: Slot #14 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   10.238170] pcieport 0000:00:1c.0: PME: Signaling with IRQ 158
<6>[   10.238241] pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   10.239480] pci_bus 0000:23: busn_res: [bus 23-2e] is released
<3>[   10.239903] pcieport 0000:20:00.0: Unable to change power state from D3cold to D0, device inaccessible
<3>[   10.240075] pcieport 0000:21:02.0: Unable to change power state from D3cold to D0, device inaccessible
<6>[   10.240271] pcieport 0000:21:02.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
<3>[   10.240431] pcieport 0000:21:03.0: Unable to change power state from D3cold to D0, device inaccessible
<6>[   10.240633] pcieport 0000:21:03.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
<3>[   10.240783] pcieport 0000:21:04.0: Unable to change power state from D3cold to D0, device inaccessible
<6>[   10.241058] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
<6>[   10.243559] pci_bus 0000:2f: busn_res: [bus 2f-3a] is released
<6>[   10.244391] irq/18-pciehp (139) used greatest stack depth: 3799 bytes left
<3>[   10.244416] ==================================================================
<3>[   10.244423] BUG: KASAN: slab-use-after-free in pci_slot_release+0x36e/0x3e0
<3>[   10.244442] Read of size 8 at addr ffff88810744d248 by task irq/156-pciehp/136
<3>[   10.244451] 
<3>[   10.244456] CPU: 12 PID: 136 Comm: irq/156-pciehp Tainted: G                T   6.8.12-grsec+ #33
<3>[   10.244467] Hardware name: LENOVO 21LVS1CV00/21LVS1CV00, BIOS N45ET18W (1.08 ) 07/08/2024
<3>[   10.244473] Call Trace:
<3>[   10.244477]  <TASK>
<3>[   10.244484]  [<ffffffff84c4633c>] dump_stack_lvl+0x7c/0xe0 ffffc90000ddf5f8
<3>[   10.244505]  [<ffffffff81bf3275>] print_report+0xc5/0x5f0 ffffc90000ddf608
<3>[   10.244523]  [<ffffffff8243149e>] ? pci_slot_release+0x36e/0x3e0 ffffc90000ddf670
<3>[   10.244535]  [<ffffffff81bf3a5f>] kasan_report+0xaf/0xf0 ffffc90000ddf678
<3>[   10.244548]  [<ffffffff8243149e>] ? pci_slot_release+0x36e/0x3e0 ffffc90000ddf6a8
<3>[   10.244560]  [<ffffffff8243149e>] ? pci_slot_release+0x36e/0x3e0 ffffc90000ddf728
<3>[   10.244571]  [<ffffffff84c4d024>] ? kobject_put+0x194/0x4f0 ffffc90000ddf768
<3>[   10.244582]  [<ffffffff82431dda>] ? pci_destroy_slot+0x2a/0x120 ffffc90000ddf7a0
<3>[   10.244594]  [<ffffffff82448360>] ? pciehp_remove+0x50/0xa0 ffffc90000ddf7c0
<3>[   10.244606]  [<ffffffff824242ef>] ? pcie_port_remove_service+0x6f/0xb0 ffffc90000ddf7e8
<3>[   10.244619]  [<ffffffff82f5fe64>] ? __device_release_driver+0x1b4/0x330 ffffc90000ddf800
<3>[   10.244632]  [<ffffffff82f60017>] ? device_release_driver+0x27/0x40 ffffc90000ddf850
<3>[   10.244642]  [<ffffffff82f5d516>] ? bus_remove_device+0x1f6/0x410 ffffc90000ddf868
<3>[   10.244657]  [<ffffffff82f4d1e6>] ? device_del+0x3a6/0xa00 ffffc90000ddf8b0
<3>[   10.244667]  [<ffffffff82f4ce40>] ? __pfx_device_del+0x10/0x10 ffffc90000ddf900
<3>[   10.244677]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddf930
<3>[   10.244691]  [<ffffffff82f4d868>] ? device_unregister+0x18/0xb0 ffffc90000ddf980
<3>[   10.244700]  [<ffffffff82424529>] ? remove_iter+0x49/0x60 ffffc90000ddf990
<3>[   10.244711]  [<ffffffff824244e0>] ? __pfx_remove_iter+0x10/0x10 ffffc90000ddf998
<3>[   10.244723]  [<ffffffff82f4a64a>] ? device_for_each_child+0xfa/0x180 ffffc90000ddf9a0
<3>[   10.244736]  [<ffffffff82f4a550>] ? __pfx_device_for_each_child+0x10/0x10 ffffc90000ddf9c0
<3>[   10.244750]  [<ffffffff81dad758>] ? kernfs_name_hash+0x18/0xc0 ffffc90000ddf9e8
<3>[   10.244763]  [<ffffffff82424583>] ? pcie_portdrv_remove+0x33/0x80 ffffc90000ddfa40
<3>[   10.244776]  [<ffffffff82401492>] ? pci_device_remove+0xb2/0x1f0 ffffc90000ddfa58
<3>[   10.244789]  [<ffffffff82f5fe64>] ? __device_release_driver+0x1b4/0x330 ffffc90000ddfa88
<3>[   10.244800]  [<ffffffff82f60017>] ? device_release_driver+0x27/0x40 ffffc90000ddfad8
<3>[   10.244810]  [<ffffffff82f5d516>] ? bus_remove_device+0x1f6/0x410 ffffc90000ddfaf0
<3>[   10.244823]  [<ffffffff82f4d1e6>] ? device_del+0x3a6/0xa00 ffffc90000ddfb38
<3>[   10.244833]  [<ffffffff82f4ce40>] ? __pfx_device_del+0x10/0x10 ffffc90000ddfb88
<3>[   10.244844]  [<ffffffff823e5214>] ? pci_remove_bus_device+0x1b4/0x490 ffffc90000ddfc08
<3>[   10.244857]  [<ffffffff84c4d03a>] ? kobject_put+0x1aa/0x4f0 ffffc90000ddfc10
<3>[   10.244868]  [<ffffffff823e5119>] ? pci_remove_bus_device+0xb9/0x490 ffffc90000ddfc48
<3>[   10.244880]  [<ffffffff8244c54e>] ? pciehp_unconfigure_device+0x19e/0x380 ffffc90000ddfc88
<3>[   10.244892]  [<ffffffff8244c3b0>] ? __pfx_pciehp_unconfigure_device+0x10/0x10 ffffc90000ddfcb0
<3>[   10.244904]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddfcd8
<3>[   10.244915]  [<ffffffff8244962e>] ? pciehp_disable_slot+0xfe/0x380 ffffc90000ddfd30
<3>[   10.244926]  [<ffffffff82449530>] ? __pfx_pciehp_disable_slot+0x10/0x10 ffffc90000ddfd48
<3>[   10.244937]  [<ffffffff84cdfc00>] ? __pfx_mutex_unlock+0x10/0x10 ffffc90000ddfd58
<3>[   10.244950]  [<ffffffff8244a6b4>] ? pciehp_handle_presence_or_link_change+0x554/0x1070 ffffc90000ddfdb8
<3>[   10.244963]  [<ffffffff84ce4d4d>] ? down_read+0x14d/0x250 ffffc90000ddfdc8
<3>[   10.244974]  [<ffffffff81682070>] ? __pfx___synchronize_hardirq+0x10/0x10 ffffc90000ddfdd0
<3>[   10.244989]  [<ffffffff8244a160>] ? __pfx_pciehp_handle_presence_or_link_change+0x10/0x10 ffffc90000ddfde8
<3>[   10.245001]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddfe00
<3>[   10.245012]  [<ffffffff8244f590>] ? pciehp_ist+0x2e0/0x370 ffffc90000ddfe68
<3>[   10.245024]  [<ffffffff8167c510>] ? irq_thread_fn+0x90/0x180 ffffc90000ddfea8
<3>[   10.245037]  [<ffffffff81680af1>] ? irq_thread+0x1e1/0x3a0 ffffc90000ddfed8
<3>[   10.245048]  [<ffffffff8167c480>] ? __pfx_irq_thread_fn+0x10/0x10 ffffc90000ddfee0
<3>[   10.245059]  [<ffffffff84cef280>] ? __pfx__raw_spin_lock_irqsave+0x10/0x10 ffffc90000ddfee8
<3>[   10.245070]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000ddff10
<3>[   10.245082]  [<ffffffff81680cc0>] ? __pfx_irq_thread_dtor+0x10/0x10 ffffc90000ddff28
<3>[   10.245094]  [<ffffffff815b75bd>] ? __kthread_parkme+0x8d/0x160 ffffc90000ddff50
<3>[   10.245109]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000ddff78
<3>[   10.245121]  [<ffffffff815bbbd0>] ? kthread+0x2d0/0x3c0 ffffc90000ddff90
<3>[   10.245131]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000ddff98
<3>[   10.245141]  [<ffffffff8148f8ac>] ? ret_from_fork+0x3c/0x80 ffffc90000ddffc8
<3>[   10.245152]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000ddffd0
<3>[   10.245162]  [<ffffffff814031fb>] ? ret_from_fork_asm+0x2b/0x50 ffffc90000ddffe8
<3>[   10.245175]  </TASK>
<3>[   10.245179] 
<3>[   10.245182] Freed by task 136 on cpu 12 at 10.243731s:
<4>[   10.245191]  kasan_save_stack+0x35/0x60
<4>[   10.245201]  kasan_save_track+0x19/0x70
<4>[   10.245210]  kasan_save_free_info+0x4a/0x90
<4>[   10.245218]  poison_slab_object+0x101/0x1a0
<4>[   10.245227]  __kasan_slab_free+0x16/0x40
<4>[   10.245235]  kfree+0xd8/0x3b0
<4>[   10.245243]  device_release+0xa6/0x230
<4>[   10.245252]  kobject_put+0x194/0x4f0
<4>[   10.245259]  pci_remove_bus_device+0xc6/0x490
<4>[   10.245269]  pci_remove_bus_device+0xb9/0x490
<4>[   10.245278]  pciehp_unconfigure_device+0x19e/0x380
<4>[   10.245286]  pciehp_disable_slot+0xfe/0x380
<4>[   10.245293]  pciehp_handle_presence_or_link_change+0x554/0x1070
<4>[   10.245302]  pciehp_ist+0x2e0/0x370
<4>[   10.245310]  irq_thread_fn+0x90/0x180
<4>[   10.245318]  irq_thread+0x1e1/0x3a0
<4>[   10.245319]  kthread+0x2d0/0x3c0
<4>[   10.245319]  ret_from_fork+0x3c/0x80
<4>[   10.245319]  ret_from_fork_asm+0x2b/0x50
<3>[   10.245319] 
<3>[   10.245319] The buggy address belongs to the object at ffff88810744d220
<3>[   10.245319]  which belongs to the cache autoslab_const_M_probe_P_drivers_pci_probe_562_6_562_6_S_1040_A_16_n_31 of size 1040+0
<3>[   10.245319] The buggy address is located 40 bytes inside of
<3>[   10.245319]  freed 1040+0-byte region [ffff88810744d220, ffff88810744d630)
<3>[   10.245319] 
<3>[   10.245319] The buggy address belongs to the physical page:
<4>[   10.245319] page:ffffea00041d1200 refcount:1 mapcount:0 mapping:0000000000000000 index:0x0 pfn:0x107448
<4>[   10.245319] head:ffffea00041d1200 order:3 entire_mapcount:0 nr_pages_mapped:0 pincount:0
<4>[   10.245319] flags: 0x8000000000000840(slab|head|zone=2)
<4>[   10.245319] page_type: 0xffffffff()
<4>[   10.245319] raw: 8000000000000840 ffff888100520a20 ffffffffffffff04 0000000000000000
<4>[   10.245319] raw: 0000000000000000 0000003800000039 00000001ffffffff 0000000000000000
<4>[   10.245319] page dumped because: kasan: bad access detected
<3>[   10.245319] 
<3>[   10.245319] Memory state around the buggy address:
<3>[   10.245319]  ffff88810744d100: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
<3>[   10.245319]  ffff88810744d180: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
<3>[   10.245319] >ffff88810744d200: fc fc fc fc fa fb fb fb fb fb fb fb fb fb fb fb
<3>[   10.245319]                                               ^
<3>[   10.245319]  ffff88810744d280: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
<3>[   10.245319]  ffff88810744d300: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
<3>[   10.245319] ==================================================================
<4>[   10.245501] general protection fault, probably for non-canonical address 0xffdfdbdfdfdfdfe6: 0000 [#1] PREEMPT SMP KASAN NOPTI
<1>[   10.245529] KASAN: maybe wild-memory-access in range [0xfefefefefefeff30-0xfefefefefefeff37]
<4>[   10.245546] CPU: 12 PID: 136 Comm: irq/156-pciehp Tainted: G    B           T   6.8.12-grsec+ #33
<4>[   10.245565] Hardware name: LENOVO 21LVS1CV00/21LVS1CV00, BIOS N45ET18W (1.08 ) 07/08/2024
<4>[   10.245578] RIP: 0010:[<ffffffff8243121f>] pci_slot_release+0xef/0x3e0
<4>[   10.245597] Code: c1 e8 03 42 80 3c 30 00 0f 85 0c 02 00 00 49 8b 44 24 d8 48 8b 1b 48 83 c0 28 48 39 c3 74 5e 48 8d 7b 38 48 89 f8 48 c1 e8 03 <42> 0f b6 04 30 84 c0 74 08 3c 03 0f 8e 0b 02 00 00 8b 6b 38 41 0f
<4>[   10.245623] RSP: 0000:ffffc90000ddf730 EFLAGS: 00010203
<4>[   10.245641] RAX: 1fdfdfdfdfdfdfe6 RBX: fefefefefefefefe RCX: ffffffff81542b9c
<4>[   10.245655] RDX: ffff8881111e1218 RSI: 0000000000000008 RDI: fefefefefefeff36
<4>[   10.245668] RBP: ffff88810744d248 R08: 0000000000000001 R09: fffffbfff0d26128
<4>[   10.245680] R10: ffffffff86930947 R11: ffffffff86974f30 R12: ffff8881111e1220
<4>[   10.245692] R13: ffff8881111e11f8 R14: dffffc0000000000 R15: ffffed102223c243
<4>[   10.245718] RCX: add_taint+0x2c/0xa0
<4>[   10.245731] RDX: autoslab_const_M_slot_P_drivers_pci_slot_260_9_260_9_S_104_A_8_n_83+0x20/0x68 [slab object]
<4>[   10.245751] RBP: autoslab_const_M_probe_P_drivers_pci_probe_562_6_562_6_S_1040_A_16_n_31+0x28/0x410 [freed slab object]
<4>[   10.245773] RSP: vmalloc[kernel_clone]+0xdf/0x770
<4>[   10.245793] R09: kasan shadow of tainted_mask+0x0/0x40
<4>[   10.245807] R10: tainted_mask+0x7/0x40
<4>[   10.245821] R11: printk_rb_static+0x10/0x80
<4>[   10.245832] R12: autoslab_const_M_slot_P_drivers_pci_slot_260_9_260_9_S_104_A_8_n_83+0x28/0x68 [slab object]
<4>[   10.245849] R13: autoslab_const_M_slot_P_drivers_pci_slot_260_9_260_9_S_104_A_8_n_83+0x0/0x68 [slab object]
<4>[   10.245866] R14: kasan shadow of 0x0
<4>[   10.245878] R15: kasan shadow of autoslab_const_M_slot_P_drivers_pci_slot_260_9_260_9_S_104_A_8_n_83+0x20/0x68 [slab object]
<4>[   10.245894] FS:  0000000000000000(0000) GS:ffff88880e400000(0000) knlGS:0000000000000000
<4>[   10.245910] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[   10.245922] CR2: 0000000000000000 CR3: 000000000e454001 CR4: 0000000000f60ef0 shadow CR4: 0000000000f60ef0
<4>[   10.245940] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
<4>[   10.245952] DR3: 0000000000000000 DR6: 00000000ffff07f0 DR7: 0000000000000400
<4>[   10.245965] PKRU: 55555554
<4>[   10.245973] ASID: 0000
<4>[   10.245982] Stack:
<4>[   10.245989]  dffffc0000000000 ffff8881111e1220 ffff8881111e125c ffffffff851cc140
<4>[   10.246013]  dffffc0000000000 ffff888103f0c3c0 ffff888103f21c98 ffffffff84c4d024
<4>[   10.246036]  ffff8881111e11f8 ffff888113d0e6d0 ffff888114405098 ffff888113d0e7c0
<4>[   10.246059] Call Trace:
<4>[   10.246066]  <TASK>
<4>[   10.246076]  [<ffffffff84c4d024>] kobject_put+0x194/0x4f0 ffffc90000ddf768
<4>[   10.246098]  [<ffffffff82431dda>] pci_destroy_slot+0x2a/0x120 ffffc90000ddf7a0
<4>[   10.246119]  [<ffffffff82448360>] pciehp_remove+0x50/0xa0 ffffc90000ddf7c0
<4>[   10.246138]  [<ffffffff824242ef>] pcie_port_remove_service+0x6f/0xb0 ffffc90000ddf7e8
<4>[   10.246160]  [<ffffffff82f5fe64>] __device_release_driver+0x1b4/0x330 ffffc90000ddf800
<4>[   10.246182]  [<ffffffff82f60017>] device_release_driver+0x27/0x40 ffffc90000ddf850
<4>[   10.246201]  [<ffffffff82f5d516>] bus_remove_device+0x1f6/0x410 ffffc90000ddf868
<4>[   10.246224]  [<ffffffff82f4d1e6>] device_del+0x3a6/0xa00 ffffc90000ddf8b0
<4>[   10.246243]  [<ffffffff82f4ce40>] ? __pfx_device_del+0x10/0x10 ffffc90000ddf900
<4>[   10.246261]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddf930
<4>[   10.246283]  [<ffffffff82f4d868>] device_unregister+0x18/0xb0 ffffc90000ddf980
<4>[   10.246301]  [<ffffffff82424529>] remove_iter+0x49/0x60 ffffc90000ddf990
<4>[   10.246321]  [<ffffffff824244e0>] ? __pfx_remove_iter+0x10/0x10 ffffc90000ddf998
<4>[   10.246341]  [<ffffffff82f4a64a>] device_for_each_child+0xfa/0x180 ffffc90000ddf9a0
<4>[   10.246364]  [<ffffffff82f4a550>] ? __pfx_device_for_each_child+0x10/0x10 ffffc90000ddf9c0
<4>[   10.246388]  [<ffffffff81dad758>] ? kernfs_name_hash+0x18/0xc0 ffffc90000ddf9e8
<4>[   10.246409]  [<ffffffff82424583>] pcie_portdrv_remove+0x33/0x80 ffffc90000ddfa40
<4>[   10.246431]  [<ffffffff82401492>] pci_device_remove+0xb2/0x1f0 ffffc90000ddfa58
<4>[   10.246453]  [<ffffffff82f5fe64>] __device_release_driver+0x1b4/0x330 ffffc90000ddfa88
<4>[   10.246472]  [<ffffffff82f60017>] device_release_driver+0x27/0x40 ffffc90000ddfad8
<4>[   10.246472]  [<ffffffff82f5d516>] bus_remove_device+0x1f6/0x410 ffffc90000ddfaf0
<4>[   10.246472]  [<ffffffff82f4d1e6>] device_del+0x3a6/0xa00 ffffc90000ddfb38
<4>[   10.246472]  [<ffffffff82f4ce40>] ? __pfx_device_del+0x10/0x10 ffffc90000ddfb88
<4>[   10.246472]  [<ffffffff823e5214>] pci_remove_bus_device+0x1b4/0x490 ffffc90000ddfc08
<4>[   10.246472]  [<ffffffff84c4d03a>] ? kobject_put+0x1aa/0x4f0 ffffc90000ddfc10
<4>[   10.246472]  [<ffffffff823e5119>] pci_remove_bus_device+0xb9/0x490 ffffc90000ddfc48
<4>[   10.246472]  [<ffffffff8244c54e>] pciehp_unconfigure_device+0x19e/0x380 ffffc90000ddfc88
<4>[   10.246472]  [<ffffffff8244c3b0>] ? __pfx_pciehp_unconfigure_device+0x10/0x10 ffffc90000ddfcb0
<4>[   10.246472]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddfcd8
<4>[   10.246472]  [<ffffffff8244962e>] pciehp_disable_slot+0xfe/0x380 ffffc90000ddfd30
<4>[   10.246472]  [<ffffffff82449530>] ? __pfx_pciehp_disable_slot+0x10/0x10 ffffc90000ddfd48
<4>[   10.246472]  [<ffffffff84cdfc00>] ? __pfx_mutex_unlock+0x10/0x10 ffffc90000ddfd58
<4>[   10.246472]  [<ffffffff8244a6b4>] pciehp_handle_presence_or_link_change+0x554/0x1070 ffffc90000ddfdb8
<4>[   10.246472]  [<ffffffff84ce4d4d>] ? down_read+0x14d/0x250 ffffc90000ddfdc8
<4>[   10.246472]  [<ffffffff81682070>] ? __pfx___synchronize_hardirq+0x10/0x10 ffffc90000ddfdd0
<4>[   10.246472]  [<ffffffff8244a160>] ? __pfx_pciehp_handle_presence_or_link_change+0x10/0x10 ffffc90000ddfde8
<4>[   10.246472]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddfe00
<4>[   10.246472]  [<ffffffff8244f590>] pciehp_ist+0x2e0/0x370 ffffc90000ddfe68
<4>[   10.246472]  [<ffffffff8167c510>] irq_thread_fn+0x90/0x180 ffffc90000ddfea8
<4>[   10.246472]  [<ffffffff81680af1>] irq_thread+0x1e1/0x3a0 ffffc90000ddfed8
<4>[   10.246472]  [<ffffffff8167c480>] ? __pfx_irq_thread_fn+0x10/0x10 ffffc90000ddfee0
<4>[   10.246472]  [<ffffffff84cef280>] ? __pfx__raw_spin_lock_irqsave+0x10/0x10 ffffc90000ddfee8
<4>[   10.246472]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000ddff10
<4>[   10.246472]  [<ffffffff81680cc0>] ? __pfx_irq_thread_dtor+0x10/0x10 ffffc90000ddff28
<4>[   10.246472]  [<ffffffff815b75bd>] ? __kthread_parkme+0x8d/0x160 ffffc90000ddff50
<4>[   10.246472]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000ddff78
<4>[   10.246472]  [<ffffffff815bbbd0>] kthread+0x2d0/0x3c0 ffffc90000ddff90
<4>[   10.246472]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000ddff98
<4>[   10.246472]  [<ffffffff8148f8ac>] ret_from_fork+0x3c/0x80 ffffc90000ddffc8
<4>[   10.246472]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000ddffd0
<4>[   10.246472]  [<ffffffff814031fb>] ret_from_fork_asm+0x2b/0x50 ffffc90000ddffe8
<4>[   10.246472]  </TASK>
<4>[   10.246472] Modules linked in:
<4>[   10.248029] ---[ end trace 0000000000000000 ]---

ECC: No errors detected
Oops#1 Part1
<5>[    0.000000] Linux version 6.11.0-devel+ (wassenberg@ws-1) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #3 SMP PREEMPT_DYNAMIC Mon Sep 23 08:20:05 UTC 2024
<6>[    0.000000] Command line: BOOT_IMAGE=/isolinux/bzImage loglevel=1 sina_toram console=tty1 intel_iommu=on
<6>[    0.000000] KERNEL supported cpus:
<6>[    0.000000]   Intel GenuineIntel
<6>[    0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
<6>[    0.000000] BIOS-provided physical RAM map:
<6>[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
<6>[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003e9f3fff] usable
<6>[    0.000000] BIOS-e820: [mem 0x000000003e9f4000-0x000000003fa2efff] ACPI NVS
<6>[    0.000000] BIOS-e820: [mem 0x000000003fa2f000-0x000000003fafefff] ACPI data
<6>[    0.000000] BIOS-e820: [mem 0x000000003faff000-0x00000000422fefff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000422ff000-0x00000000424fefff] type 20
<6>[    0.000000] BIOS-e820: [mem 0x00000000424ff000-0x00000000744fefff] usable
<6>[    0.000000] BIOS-e820: [mem 0x00000000744ff000-0x0000000077ffefff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x0000000077fff000-0x0000000077ffffff] usable
<6>[    0.000000] BIOS-e820: [mem 0x0000000078000000-0x00000000887fffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000086fffffff] usable
<6>[    0.000000] SMT: disabled
<6>[    0.000000] printk: debug: ignoring loglevel setting.
<6>[    0.000000] NX (Execute Disable) protection: active
<6>[    0.000000] APIC: Static calls initialized
<6>[    0.000000] user-defined physical RAM map:
<6>[    0.000000] user: [mem 0x0000000000000000-0x000000000009ffff] usable
<6>[    0.000000] user: [mem 0x00000000000a0000-0x00000000000fffff] reserved
<6>[    0.000000] user: [mem 0x0000000000100000-0x000000003e9f3fff] usable
<6>[    0.000000] user: [mem 0x000000003e9f4000-0x000000003fa2efff] ACPI NVS
<6>[    0.000000] user: [mem 0x000000003fa2f000-0x000000003fafefff] ACPI data
<6>[    0.000000] user: [mem 0x000000003faff000-0x00000000422fefff] reserved
<6>[    0.000000] user: [mem 0x00000000422ff000-0x00000000424fefff] type 20
<6>[    0.000000] user: [mem 0x00000000424ff000-0x00000000744fefff] usable
<6>[    0.000000] user: [mem 0x00000000744ff000-0x0000000077ffefff] reserved
<6>[    0.000000] user: [mem 0x0000000077fff000-0x0000000077ffffff] usable
<6>[    0.000000] user: [mem 0x0000000078000000-0x00000000887fffff] reserved
<6>[    0.000000] user: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
<6>[    0.000000] user: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
<6>[    0.000000] user: [mem 0x0000000100000000-0x0000000187ffffff] usable
<6>[    0.000000] user: [mem 0x0000000188000000-0x0000000189ffffff] reserved
<6>[    0.000000] user: [mem 0x000000018a000000-0x000000086fffffff] usable
<6>[    0.000000] efi: EFI v2.7 by Lenovo
<6>[    0.000000] efi: ACPI=0x3fafe000 ACPI 2.0=0x3fafe014 SMBIOS=0x42208000 SMBIOS 3.0=0x421fb000 MEMATTR=0x6e25c018 ESRT=0x6dd66818 
<6>[    0.000000] SMBIOS 3.6.0 present.
<6>[    0.000000] DMI: LENOVO 21LVS1CV00/21LVS1CV00, BIOS N45ET18W (1.08 ) 07/08/2024
<6>[    0.000000] DMI: Memory slots populated: 8/8
<6>[    0.000000] tsc: Detected 3000.000 MHz processor
<6>[    0.000000] tsc: Detected 2995.200 MHz TSC
<7>[    0.000007] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
<7>[    0.000008] e820: remove [mem 0x000a0000-0x000fffff] usable
<6>[    0.000012] last_pfn = 0x870000 max_arch_pfn = 0x400000000
<6>[    0.000015] MTRR map: 8 entries (3 fixed + 5 variable; max 23), built from 10 variable MTRRs
<6>[    0.000016] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
<6>[    0.000394] x2apic: enabled by BIOS, switching to x2apic ops
<6>[    0.000395] last_pfn = 0x78000 max_arch_pfn = 0x400000000
<6>[    0.004535] Using GB pages for direct mapping
<6>[    0.004689] Secure boot disabled
<6>[    0.004689] RAMDISK: [mem 0x304d3000-0x33086fff]
<6>[    0.004692] ACPI: Early table checksum verification disabled
<6>[    0.004695] ACPI: RSDP 0x000000003FAFE014 000024 (v02 LENOVO)
<6>[    0.004697] ACPI: XSDT 0x000000003FAFD228 00016C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004701] ACPI: FACP 0x000000004213A000 000114 (v06 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004704] ACPI: DSDT 0x00000000420D5000 061056 (v02 LENOVO ICL      00000002      01000013)
<6>[    0.004706] ACPI: FACS 0x000000003FA08000 000040
<6>[    0.004708] ACPI: SSDT 0x000000004221B000 00038C (v02 LENOVO Pmax_Dev 00000001 INTL 20210930)
<6>[    0.004709] ACPI: SSDT 0x000000004221A000 000689 (v02 LENOVO Cpu0Ist  00003000 INTL 20210930)
<6>[    0.004711] ACPI: SSDT 0x0000000042219000 0005E7 (v02 LENOVO Cpu0Hwp  00003000 INTL 20210930)
<6>[    0.004712] ACPI: SSDT 0x0000000042218000 0001AB (v02 LENOVO Cpu0Psd  00003000 INTL 20210930)
<6>[    0.004713] ACPI: SSDT 0x0000000042217000 000394 (v02 LENOVO Cpu0Cst  00003001 INTL 20210930)
<6>[    0.004715] ACPI: SSDT 0x0000000042215000 001BAF (v02 LENOVO ApIst    00003000 INTL 20210930)
<6>[    0.004716] ACPI: SSDT 0x0000000042213000 001620 (v02 LENOVO ApHwp    00003000 INTL 20210930)
<6>[    0.004718] ACPI: SSDT 0x0000000042211000 001349 (v02 LENOVO ApPsd    00003000 INTL 20210930)
<6>[    0.004719] ACPI: SSDT 0x0000000042210000 000FBB (v02 LENOVO ApCst    00003000 INTL 20210930)
<6>[    0.004720] ACPI: SSDT 0x000000004220C000 003BC8 (v02 LENOVO CpuSsdt  00003000 INTL 20210930)
<6>[    0.004722] ACPI: SSDT 0x000000004220B000 00059B (v02 LENOVO CtdpB    00001000 INTL 20210930)
<6>[    0.004723] ACPI: DTPR 0x0000000042209000 000088 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004725] ACPI: SSDT 0x0000000042186000 0012A6 (v02 LENOVO PDatTabl 00001000 INTL 20210930)
<6>[    0.004726] ACPI: SSDT 0x0000000042146000 002679 (v02 LENOVO IgfxSsdt 00003000 INTL 20210930)
<6>[    0.004728] ACPI: SSDT 0x000000004213C000 009BEE (v02 LENOVO TcssSsdt 00001000 INTL 20210930)
<6>[    0.004729] ACPI: ECDT 0x000000004213B000 000053 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004730] ACPI: HPET 0x0000000042139000 000038 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004732] ACPI: APIC 0x0000000042138000 000358 (v05 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004733] ACPI: MCFG 0x0000000042137000 00003C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004735] ACPI: SSDT 0x00000000420CF000 005EDB (v02 LENOVO MtlP_Rvp 00001000 INTL 20210930)
<6>[    0.004736] ACPI: SSDT 0x00000000420CE000 00027B (v02 LENOVO PID1Ssdt 00000010 INTL 20210930)
<6>[    0.004738] ACPI: SSDT 0x00000000420CC000 00123A (v02 LENOVO ProjSsdt 00000010 INTL 20210930)
<6>[    0.004739] ACPI: SSDT 0x00000000420C7000 00429C (v02 LENOVO DptfTabl 00001000 INTL 20210930)
<6>[    0.004740] ACPI: LPIT 0x00000000420C6000 0000CC (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004742] ACPI: WSMT 0x00000000420C5000 000028 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004743] ACPI: SSDT 0x00000000420BF000 00587D (v02 LENOVO TbtTypeC 00000000 INTL 20210930)
<6>[    0.004745] ACPI: DBGP 0x00000000420BE000 000034 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004746] ACPI: DBG2 0x00000000420BD000 000054 (v00 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004748] ACPI: NHLT 0x00000000420BC000 00096C (v00 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004749] ACPI: MSDM 0x00000000420BB000 000055 (v03 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004750] ACPI: SSDT 0x00000000420A5000 001043 (v02 LENOVO UsbCTabl 00001000 INTL 20210930)
<6>[    0.004752] ACPI: BATB 0x00000000420A3000 00004A (v02 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004753] ACPI: DMAR 0x00000000402A1000 000098 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004755] ACPI: FPDT 0x00000000402A0000 000044 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004756] ACPI: SSDT 0x000000004029E000 0018C6 (v02 LENOVO SocGpe   00003000 INTL 20210930)
<6>[    0.004757] ACPI: SSDT 0x000000004029B000 0028D3 (v02 LENOVO SocCmn   00003000 INTL 20210930)
<6>[    0.004759] ACPI: SDEV 0x000000004029A000 0000BC (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004760] ACPI: PHAT 0x0000000040271000 00080C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004762] ACPI: BGRT 0x0000000040270000 000038 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004763] ACPI: UEFI 0x000000003E9F4000 000076 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.004764] ACPI: Reserving FACP table memory at [mem 0x4213a000-0x4213a113]
<6>[    0.004765] ACPI: Reserving DSDT table memory at [mem 0x420d5000-0x42136055]
<6>[    0.004765] ACPI: Reserving FACS table memory at [mem 0x3fa08000-0x3fa0803f]
<6>[    0.004766] ACPI: Reserving SSDT table memory at [mem 0x4221b000-0x4221b38b]
<6>[    0.004766] ACPI: Reserving SSDT table memory at [mem 0x4221a000-0x4221a688]
<6>[    0.004766] ACPI: Reserving SSDT table memory at [mem 0x42219000-0x422195e6]
<6>[    0.004767] ACPI: Reserving SSDT table memory at [mem 0x42218000-0x422181aa]
<6>[    0.004767] ACPI: Reserving SSDT table memory at [mem 0x42217000-0x42217393]
<6>[    0.004768] ACPI: Reserving SSDT table memory at [mem 0x42215000-0x42216bae]
<6>[    0.004768] ACPI: Reserving SSDT table memory at [mem 0x42213000-0x4221461f]
<6>[    0.004768] ACPI: Reserving SSDT table memory at [mem 0x42211000-0x42212348]
<6>[    0.004769] ACPI: Reserving SSDT table memory at [mem 0x42210000-0x42210fba]
<6>[    0.004769] ACPI: Reserving SSDT table memory at [mem 0x4220c000-0x4220fbc7]
<6>[    0.004769] ACPI: Reserving SSDT table memory at [mem 0x4220b000-0x4220b59a]
<6>[    0.004770] ACPI: Reserving DTPR table memory at [mem 0x42209000-0x42209087]
<6>[    0.004770] ACPI: Reserving SSDT table memory at [mem 0x42186000-0x421872a5]
<6>[    0.004770] ACPI: Reserving SSDT table memory at [mem 0x42146000-0x42148678]
<6>[    0.004771] ACPI: Reserving SSDT table memory at [mem 0x4213c000-0x42145bed]
<6>[    0.004771] ACPI: Reserving ECDT table memory at [mem 0x4213b000-0x4213b052]
<6>[    0.004772] ACPI: Reserving HPET table memory at [mem 0x42139000-0x42139037]
<6>[    0.004772] ACPI: Reserving APIC table memory at [mem 0x42138000-0x42138357]
<6>[    0.004772] ACPI: Reserving MCFG table memory at [mem 0x42137000-0x4213703b]
<6>[    0.004773] ACPI: Reserving SSDT table memory at [mem 0x420cf000-0x420d4eda]
<6>[    0.004773] ACPI: Reserving SSDT table memory at [mem 0x420ce000-0x420ce27a]
<6>[    0.004773] ACPI: Reserving SSDT table memory at [mem 0x420cc000-0x420cd239]
<6>[    0.004774] ACPI: Reserving SSDT table memory at [mem 0x420c7000-0x420cb29b]
<6>[    0.004774] ACPI: Reserving LPIT table memory at [mem 0x420c6000-0x420c60cb]
<6>[    0.004775] ACPI: Reserving WSMT table memory at [mem 0x420c5000-0x420c5027]
<6>[    0.004775] ACPI: Reserving SSDT table memory at [mem 0x420bf000-0x420c487c]
<6>[    0.004775] ACPI: Reserving DBGP table memory at [mem 0x420be000-0x420be033]
<6>[    0.004776] ACPI: Reserving DBG2 table memory at [mem 0x420bd000-0x420bd053]
<6>[    0.004776] ACPI: Reserving NHLT table memory at [mem 0x420bc000-0x420bc96b]
<6>[    0.004777] ACPI: Reserving MSDM table memory at [mem 0x420bb000-0x420bb054]
<6>[    0.004777] ACPI: Reserving SSDT table memory at [mem 0x420a5000-0x420a6042]
<6>[    0.004777] ACPI: Reserving BATB table memory at [mem 0x420a3000-0x420a3049]
<6>[    0.004778] ACPI: Reserving DMAR table memory at [mem 0x402a1000-0x402a1097]
<6>[    0.004778] ACPI: Reserving FPDT table memory at [mem 0x402a0000-0x402a0043]
<6>[    0.004778] ACPI: Reserving SSDT table memory at [mem 0x4029e000-0x4029f8c5]
<6>[    0.004779] ACPI: Reserving SSDT table memory at [mem 0x4029b000-0x4029d8d2]
<6>[    0.004779] ACPI: Reserving SDEV table memory at [mem 0x4029a000-0x4029a0bb]
<6>[    0.004780] ACPI: Reserving PHAT table memory at [mem 0x40271000-0x4027180b]
<6>[    0.004780] ACPI: Reserving BGRT table memory at [mem 0x40270000-0x40270037]
<6>[    0.004780] ACPI: Reserving UEFI table memory at [mem 0x3e9f4000-0x3e9f4075]
<6>[    0.004811] APIC: Switched APIC routing to: cluster x2apic
<6>[    0.004829] Zone ranges:
<6>[    0.004830]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
<6>[    0.004831]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
<6>[    0.004832]   Normal   [mem 0x0000000100000000-0x000000086fffffff]
<6>[    0.004833] Movable zone start for each node
<6>[    0.004833] Early memory node ranges
<6>[    0.004833]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
<6>[    0.004834]   node   0: [mem 0x0000000000100000-0x000000003e9f3fff]
<6>[    0.004835]   node   0: [mem 0x00000000424ff000-0x00000000744fefff]
<6>[    0.004835]   node   0: [mem 0x0000000077fff000-0x0000000077ffffff]
<6>[    0.004836]   node   0: [mem 0x0000000100000000-0x0000000187ffffff]
<6>[    0.004836]   node   0: [mem 0x000000018a000000-0x000000086fffffff]
<6>[    0.004837] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fffffff]
<6>[    0.004840] On node 0, zone DMA: 1 pages in unavailable ranges
<6>[    0.004860] On node 0, zone DMA: 96 pages in unavailable ranges
<6>[    0.007332] On node 0, zone DMA32: 15115 pages in unavailable ranges
<6>[    0.007407] On node 0, zone DMA32: 15104 pages in unavailable ranges
<6>[    0.048734] On node 0, zone Normal: 8192 pages in unavailable ranges
<6>[    0.049481] ACPI: PM-Timer IO Port: 0x1808
<6>[    0.049487] ACPI: X2APIC_NMI (uid[0xffffffff] high level lint[0x1])
<6>[    0.049520] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
<6>[    0.049522] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
<6>[    0.049523] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
<6>[    0.049526] ACPI: Using ACPI (MADT) for SMP configuration information
<6>[    0.049526] ACPI: HPET id: 0x8086a201 base: 0xfed00000
<6>[    0.049530] TSC deadline timer available
<6>[    0.049532] CPU topo: Max. logical packages:   1
<6>[    0.049533] CPU topo: Max. logical dies:       1
<6>[    0.049533] CPU topo: Max. dies per package:   1
<6>[    0.049535] CPU topo: Max. threads per core:   2
<6>[    0.049536] CPU topo: Num. cores per package:    14
<6>[    0.049536] CPU topo: Num. threads per package:  18
<6>[    0.049537] CPU topo: Allowing 18 present CPUs plus 0 hotplug CPUs
<6>[    0.049545] [mem 0x88800000-0xbfffffff] available for PCI devices
<6>[    0.049548] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
<6>[    0.054077] setup_percpu: NR_CPUS:32 nr_cpumask_bits:18 nr_cpu_ids:18 nr_node_ids:1
<6>[    0.054892] percpu: Embedded 58 pages/cpu s198360 r8192 d31016 u262144
<7>[    0.054895] pcpu-alloc: s198360 r8192 d31016 u262144 alloc=1*2097152
<7>[    0.054897] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
<7>[    0.054902] pcpu-alloc: [0] 16 17 -- -- -- -- -- -- 
<5>[    0.054910] Kernel command line: memmap=0x2000000$0x188000000 ramoops.mem_address=0x188000000 ramoops.mem_size=0x2000000 ramoops.ecc=1 ramoops.record_size=0x200000 ramoops.console_size=0 ramoops.ftrace_size=0 ramoops.pmsg_size=0 mitigations=auto nosmt dummy_hcd.is_super_speed=true g_mass_storage.idVendor=0x22e0 g_mass_storage.idProduct=0x0300 g_mass_storage.iManufacturer=Secunet g_mass_storage.iProduct="SINA Virtual USB Stick" g_mass_storage.removable=1 g_mass_storage.nofua=1 slab_debug dyndbg="file drivers/pci/* +p" thunderbolt.dyndbg=+p ignore_loglevel BOOT_IMAGE=/isolinux/bzImage loglevel=1 sina_toram console=tty1 intel_iommu=on
<6>[    0.055003] DMAR: IOMMU enabled
<5>[    0.055005] Unknown kernel command line parameters "sina_toram BOOT_IMAGE=/isolinux/bzImage", will be passed to user space.
<5>[    0.055017] random: crng init done
<6>[    0.057844] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
<6>[    0.059239] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
<6>[    0.059346] Built 1 zonelists, mobility grouping on.  Total pages: 8251796
<6>[    0.059349] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
<6>[    0.059349] stackdepot: allocating hash table via alloc_large_system_hash
<6>[    0.059351] stackdepot hash table entries: 1048576 (order: 12, 16777216 bytes, linear)
<6>[    0.060772] software IO TLB: area num 32.
<4>[    0.109915] **********************************************************
<4>[    0.109916] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **
<4>[    0.109916] **                                                      **
<4>[    0.109917] ** This system shows unhashed kernel memory addresses   **
<4>[    0.109917] ** via the console, logs, and other interfaces. This    **
<4>[    0.109917] ** might reduce the security of your system.            **
<4>[    0.109918] **                                                      **
<4>[    0.109918] ** If you see this message and you are not debugging    **
<4>[    0.109918] ** the kernel, report this immediately to your system   **
<4>[    0.109918] ** administrator!                                       **
<4>[    0.109918] **                                                      **
<4>[    0.109919] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **
<4>[    0.109919] **********************************************************
<6>[    0.110025] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=18, Nodes=1
<6>[    0.110069] ftrace: allocating 61272 entries in 240 pages
<6>[    0.118191] ftrace: allocated 240 pages with 4 groups
<6>[    0.119094] Dynamic Preempt: voluntary
<6>[    0.119327] rcu: Preemptible hierarchical RCU implementation.
<6>[    0.119328] rcu: 	RCU event tracing is enabled.
<6>[    0.119328] rcu: 	RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=18.
<6>[    0.119329] 	Trampoline variant of Tasks RCU enabled.
<6>[    0.119329] 	Rude variant of Tasks RCU enabled.
<6>[    0.119329] 	Tracing variant of Tasks RCU enabled.
<6>[    0.119330] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
<6>[    0.119330] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=18
<6>[    0.119363] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    0.119365] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    0.119366] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    0.126261] NR_IRQS: 4352, nr_irqs: 2200, preallocated irqs: 16
<6>[    0.126591] rcu: srcu_init: Setting srcu_struct sizes based on contention.
<6>[    0.126788] Console: colour dummy device 80x25
<6>[    0.126791] printk: legacy console [tty1] enabled
<6>[    0.126958] ACPI: Core revision 20240322
<6>[    0.127381] hpet: HPET dysfunctional in PC10. Force disabled.
<6>[    0.127383] APIC: Switch to symmetric I/O mode setup
<6>[    0.127385] DMAR: Host address width 42
<6>[    0.127386] DMAR: DRHD base: 0x000000fc800000 flags: 0x0
<6>[    0.127408] DMAR: dmar0: reg_base_addr fc800000 ver 7:0 cap c9de008cee690462 ecap 12ca9a00f0ef5e
<6>[    0.127411] DMAR: DRHD base: 0x000000fc801000 flags: 0x1
<6>[    0.127422] DMAR: dmar1: reg_base_addr fc801000 ver 7:0 cap c9de008cee690462 ecap 12ca9a00f0efde
<6>[    0.127424] DMAR: SATC flags: 0x1
<6>[    0.127430] DMAR-IR: IOAPIC id 2 under DRHD base  0xfc801000 IOMMU 1
<6>[    0.127432] DMAR-IR: HPET id 0 under DRHD base 0xfc801000
<6>[    0.127433] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
<6>[    0.129078] DMAR-IR: Enabled IRQ remapping in x2apic mode
<6>[    0.133157] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b2c8ec87c7, max_idle_ns: 440795278598 ns
<6>[    0.133163] Calibrating delay loop (skipped), value calculated using timer frequency.. 5990.40 BogoMIPS (lpj=2995200)
<6>[    0.133220] CPU0: Thermal monitoring enabled (TM1)
<6>[    0.133222] x86/cpu: User Mode Instruction Prevention (UMIP) activated
<6>[    0.133399] CET detected: Indirect Branch Tracking enabled
<6>[    0.133401] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
<6>[    0.133402] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
<6>[    0.133405] process: using mwait in idle threads
<6>[    0.133407] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
<6>[    0.133411] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
<6>[    0.133412] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
<6>[    0.133415] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
<6>[    0.133417] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
<6>[    0.133426] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
<6>[    0.133428] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
<6>[    0.133429] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
<6>[    0.133430] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
<6>[    0.133431] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
<6>[    0.133432] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
<6>[    0.133434] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
<6>[    0.133435] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
<6>[    0.133436] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
<6>[    0.134161] Freeing SMP alternatives memory: 48K
<6>[    0.134161] pid_max: default: 32768 minimum: 301
<6>[    0.134161] LSM: initializing lsm=capability
<6>[    0.134161] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
<6>[    0.134161] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
<6>[    0.134161] smpboot: CPU0: Intel(R) Core(TM) Ultra 5 125H (family: 0x6, model: 0xaa, stepping: 0x4)
<6>[    0.134161] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Meteorlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
<6>[    0.134161] core: cpu_core PMU driver: 
<6>[    0.134161] ... version:                5
<6>[    0.134161] ... bit width:              48
<6>[    0.134161] ... generic registers:      8
<6>[    0.134161] ... value mask:             0000ffffffffffff
<6>[    0.134161] ... max period:             00007fffffffffff
<6>[    0.134161] ... fixed-purpose events:   4
<6>[    0.134161] ... event mask:             0001000f000000ff
<6>[    0.134161] signal: max sigframe size: 3232
<6>[    0.134161] Estimated ratio of average max frequency by base frequency (times 1024): 1467
<6>[    0.134161] rcu: Hierarchical SRCU implementation.
<6>[    0.134161] rcu: 	Max phase no-delay instances is 400.
<6>[    0.134161] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
<6>[    0.135225] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
<6>[    0.135432] smp: Bringing up secondary CPUs ...
<6>[    0.135539] smpboot: x86: Booting SMP configuration:
<6>[    0.135541] .... node  #0, CPUs:        #1  #3  #6  #8  #9 #10 #11 #12 #13 #14 #15 #16 #17
<6>[    0.007442] core: cpu_atom PMU driver: PEBS-via-PT 
<6>[    0.007442] ... version:                5
<6>[    0.007442] ... bit width:              48
<6>[    0.007442] ... generic registers:      8
<6>[    0.007442] ... value mask:             0000ffffffffffff
<6>[    0.007442] ... max period:             00007fffffffffff
<6>[    0.007442] ... fixed-purpose events:   3
<6>[    0.007442] ... event mask:             00000007000000ff
<4>[    0.145339]   #2  #4  #5  #7
<6>[    0.156474] smp: Brought up 1 node, 14 CPUs
<6>[    0.156486] smpboot: Total of 14 processors activated (83865.60 BogoMIPS)
<6>[    0.157474] Memory: 32233452K/33007184K available (22528K kernel code, 9415K rwdata, 8936K rodata, 3632K init, 3104K bss, 755060K reserved, 0K cma-reserved)
<6>[    0.158395] devtmpfs: initialized
<6>[    0.159387] ACPI: PM: Registering ACPI NVS region [mem 0x3e9f4000-0x3fa2efff] (17018880 bytes)
<6>[    0.161136] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
<6>[    0.161141] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
<6>[    0.161245] pinctrl core: initialized pinctrl subsystem
<6>[    0.161457] PM: RTC time: 10:25:13, date: 2024-09-23
<6>[    0.161866] NET: Registered PF_NETLINK/PF_ROUTE protocol family
<6>[    0.162062] ramoops: using module parameters
<6>[    0.162171] ramoops: uncorrectable error in header
<6>[    0.162227] ramoops: uncorrectable error in header
<6>[    0.162278] ramoops: uncorrectable error in header
<6>[    0.162327] ramoops: uncorrectable error in header
<6>[    0.162377] ramoops: uncorrectable error in header
<6>[    0.162428] ramoops: uncorrectable error in header
<6>[    0.162476] ramoops: uncorrectable error in header
<6>[    0.162525] ramoops: uncorrectable error in header
<6>[    0.162574] ramoops: uncorrectable error in header
<6>[    0.162623] ramoops: uncorrectable error in header
<6>[    0.163460] pstore: Using crash dump compression: deflate
<6>[    0.163462] pstore: Registered ramoops as persistent store backend
<6>[    0.163463] ramoops: using 0x2000000@0x188000000, ecc: 16
<6>[    0.163635] thermal_sys: Registered thermal governor 'step_wise'
<6>[    0.163636] thermal_sys: Registered thermal governor 'user_space'
<6>[    0.163654] cpuidle: using governor menu
<6>[    0.163690] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
<6>[    0.163690] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
<6>[    0.163690] PCI: Using configuration type 1 for base access
<6>[    0.163690] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
<6>[    0.164683] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
<6>[    0.164683] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
<6>[    0.165834] ACPI: Added _OSI(Module Device)
<6>[    0.166170] ACPI: Added _OSI(Processor Device)
<6>[    0.166176] ACPI: Added _OSI(3.0 _SCP Extensions)
<6>[    0.166180] ACPI: Added _OSI(Processor Aggregator Device)
<6>[    0.474059] ACPI: 23 ACPI AML tables successfully acquired and loaded
<6>[    0.478899] ACPI: EC: EC started
<6>[    0.478901] ACPI: EC: interrupt blocked
<6>[    0.479379] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
<6>[    0.479381] ACPI: EC: Boot ECDT EC used to handle transactions
<5>[    0.481304] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
<6>[    0.908764] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
<6>[    0.908767] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
<6>[    0.921569] ACPI: Interpreter enabled
<6>[    0.921611] ACPI: PM: (supports S0 S5)
<6>[    0.921613] ACPI: Using IOAPIC for interrupt routing
<6>[    0.921691] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
<6>[    0.921693] PCI: Ignoring E820 reservations for host bridge windows
<6>[    0.924300] ACPI: Enabled 10 GPEs in block 00 to 7F
<6>[    0.924319] ACPI: Enabled 8 GPEs in block 80 to DF
<6>[    0.932299] ACPI: \_SB_.PC00.LPCB.EC__.PUBS: New power resource
<6>[    0.943390] ACPI: \_SB_.PC00.XHCI.RHUB.HS08.WWPR: New power resource
<6>[    0.969115] ACPI: \_SB_.PC00.RP01.PXP_: New power resource
<6>[    0.979615] ACPI: \_SB_.PC00.RP06.PXP_: New power resource
<6>[    0.983767] ACPI: \_SB_.PC00.RP07.PXP_: New power resource
<6>[    0.991738] ACPI: \_SB_.PC00.RP10.PXP_: New power resource
<6>[    1.000486] ACPI: \_SB_.PC00.TBT0: New power resource
<6>[    1.000719] ACPI: \_SB_.PC00.TBT1: New power resource
<6>[    1.000945] ACPI: \_SB_.PC00.D3C_: New power resource
<6>[    1.068512] ACPI: \PIN_: New power resource
<6>[    1.068593] ACPI: \PINP: New power resource
<6>[    1.070024] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
<6>[    1.070032] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
<6>[    1.073690] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
<6>[    1.077679] PCI host bridge to bus 0000:00
<6>[    1.077695] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
<6>[    1.077698] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
<6>[    1.077700] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
<6>[    1.077702] pci_bus 0000:00: root bus resource [mem 0x90000000-0xbfffffff window]
<6>[    1.077704] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x3ffbfffffff window]
<6>[    1.077706] pci_bus 0000:00: root bus resource [bus 00-fe]
<7>[    1.196677] pci_bus 0000:00: scanning bus
<6>[    1.196705] pci 0000:00:00.0: [8086:7d14] type 00 class 0x060000 conventional PCI endpoint
<6>[    1.196955] pci 0000:00:02.0: [8086:7d55] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
<6>[    1.196967] pci 0000:00:02.0: BAR 0 [mem 0x4058000000-0x4058ffffff 64bit pref]
<6>[    1.196976] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
<6>[    1.197010] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
<6>[    1.197014] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
<6>[    1.197050] pci 0000:00:02.0: PME# supported from D0 D3hot
<7>[    1.197053] pci 0000:00:02.0: PME# disabled
<6>[    1.197618] pci 0000:00:04.0: [8086:7d03] type 00 class 0x118000 conventional PCI endpoint
<6>[    1.197633] pci 0000:00:04.0: BAR 0 [mem 0x405a6c0000-0x405a6dffff 64bit]
<6>[    1.198740] pci 0000:00:06.0: [8086:7e4d] type 01 class 0x060400 PCIe Root Port
<6>[    1.198767] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[    1.198781] pci 0000:00:06.0:   bridge window [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[    1.198875] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
<7>[    1.198880] pci 0000:00:06.0: PME# disabled
<6>[    1.201404] pci 0000:00:06.1: [8086:7eca] type 01 class 0x060400 PCIe Root Port
<6>[    1.201430] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[    1.201436] pci 0000:00:06.1:   bridge window [mem 0xaac00000-0xaacfffff]
<6>[    1.201530] pci 0000:00:06.1: PME# supported from D0 D3hot D3cold
<7>[    1.201533] pci 0000:00:06.1: PME# disabled
<6>[    1.204285] pci 0000:00:07.0: [8086:7ec4] type 01 class 0x060400 PCIe Root Port
<6>[    1.204309] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[    1.204314] pci 0000:00:07.0:   bridge window [mem 0x9e000000-0xaa1fffff]
<6>[    1.204323] pci 0000:00:07.0:   bridge window [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[    1.204447] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
<7>[    1.204450] pci 0000:00:07.0: PME# disabled
<6>[    1.206866] pci 0000:00:07.2: [8086:7ec6] type 01 class 0x060400 PCIe Root Port
<6>[    1.206891] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[    1.206897] pci 0000:00:07.2:   bridge window [mem 0x90000000-0x9c1fffff]
<6>[    1.206906] pci 0000:00:07.2:   bridge window [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[    1.207025] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
<7>[    1.207028] pci 0000:00:07.2: PME# disabled
<6>[    1.209429] pci 0000:00:08.0: [8086:7e4c] type 00 class 0x088000 conventional PCI endpoint
<6>[    1.209445] pci 0000:00:08.0: BAR 0 [mem 0x405a70f000-0x405a70ffff 64bit]
<6>[    1.209664] pci 0000:00:0a.0: [8086:7d0d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
<6>[    1.209672] pci 0000:00:0a.0: BAR 0 [mem 0x405a680000-0x405a6bffff 64bit]
<6>[    1.209688] pci 0000:00:0a.0: enabling Extended Tags
<6>[    1.209785] pci 0000:00:0b.0: [8086:7d1d] type 00 class 0x120000 PCIe Root Complex Integrated Endpoint
<6>[    1.209795] pci 0000:00:0b.0: BAR 0 [mem 0x4050000000-0x4057ffffff 64bit]
<6>[    1.209807] pci 0000:00:0b.0: BAR 4 [mem 0x405a70e000-0x405a70efff 64bit]
<6>[    1.210006] pci 0000:00:0d.0: [8086:7ec0] type 00 class 0x0c0330 conventional PCI endpoint
<6>[    1.210019] pci 0000:00:0d.0: BAR 0 [mem 0x405a6f0000-0x405a6fffff 64bit]
<6>[    1.210074] pci 0000:00:0d.0: PME# supported from D3hot D3cold
<7>[    1.210077] pci 0000:00:0d.0: PME# disabled
<6>[    1.211736] pci 0000:00:0d.2: [8086:7ec2] type 00 class 0x0c0340 conventional PCI endpoint
<6>[    1.211751] pci 0000:00:0d.2: BAR 0 [mem 0x405a640000-0x405a67ffff 64bit]
<6>[    1.211760] pci 0000:00:0d.2: BAR 2 [mem 0x405a70d000-0x405a70dfff 64bit]
<6>[    1.211807] pci 0000:00:0d.2: supports D1 D2
<6>[    1.211808] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
<7>[    1.211811] pci 0000:00:0d.2: PME# disabled
<6>[    1.212396] pci 0000:00:0d.3: [8086:7ec3] type 00 class 0x0c0340 conventional PCI endpoint
<6>[    1.212410] pci 0000:00:0d.3: BAR 0 [mem 0x405a600000-0x405a63ffff 64bit]
<6>[    1.212420] pci 0000:00:0d.3: BAR 2 [mem 0x405a70c000-0x405a70cfff 64bit]
<6>[    1.212466] pci 0000:00:0d.3: supports D1 D2
<6>[    1.212467] pci 0000:00:0d.3: PME# supported from D0 D1 D2 D3hot D3cold
<7>[    1.212470] pci 0000:00:0d.3: PME# disabled
<6>[    1.213102] pci 0000:00:14.0: [8086:7e7d] type 00 class 0x0c0330 conventional PCI endpoint
<6>[    1.213117] pci 0000:00:14.0: BAR 0 [mem 0x405a6e0000-0x405a6effff 64bit]
<6>[    1.213178] pci 0000:00:14.0: PME# supported from D3hot D3cold
<7>[    1.213181] pci 0000:00:14.0: PME# disabled
<6>[    1.214877] pci 0000:00:14.2: [8086:7e7f] type 00 class 0x050000 conventional PCI endpoint
<6>[    1.214894] pci 0000:00:14.2: BAR 0 [mem 0x405a704000-0x405a707fff 64bit]
<6>[    1.214905] pci 0000:00:14.2: BAR 2 [mem 0x405a70b000-0x405a70bfff 64bit]
<6>[    1.215096] pci 0000:00:15.0: [8086:7e78] type 00 class 0x0c8000 conventional PCI endpoint
<6>[    1.215117] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
<6>[    1.216210] pci 0000:00:16.0: [8086:7e70] type 00 class 0x078000 conventional PCI endpoint
<6>[    1.216227] pci 0000:00:16.0: BAR 0 [mem 0x405a709000-0x405a709fff 64bit]
<6>[    1.216313] pci 0000:00:16.0: PME# supported from D3hot
<7>[    1.216316] pci 0000:00:16.0: PME# disabled
<6>[    1.218006] pci 0000:00:1c.0: [8086:7e38] type 01 class 0x060400 PCIe Root Port
<6>[    1.218032] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<6>[    1.218040] pci 0000:00:1c.0:   bridge window [mem 0xaa200000-0xaabfffff]
<6>[    1.218050] pci 0000:00:1c.0:   bridge window [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[    1.218618] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
<7>[    1.218623] pci 0000:00:1c.0: PME# disabled
<6>[    1.221342] pci 0000:00:1f.0: [8086:7e02] type 00 class 0x060100 conventional PCI endpoint
<6>[    1.222534] pci 0000:00:1f.3: [8086:7e28] type 00 class 0x040380 conventional PCI endpoint
<6>[    1.222556] pci 0000:00:1f.3: BAR 0 [mem 0x405a700000-0x405a703fff 64bit]
<6>[    1.222589] pci 0000:00:1f.3: BAR 4 [mem 0x4059000000-0x40591fffff 64bit]
<6>[    1.222648] pci 0000:00:1f.3: PME# supported from D3hot D3cold
<7>[    1.222651] pci 0000:00:1f.3: PME# disabled
<6>[    1.222814] pci 0000:00:1f.4: [8086:7e22] type 00 class 0x0c0500 conventional PCI endpoint
<6>[    1.222834] pci 0000:00:1f.4: BAR 0 [mem 0x405a708000-0x405a7080ff 64bit]
<6>[    1.222858] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
<6>[    1.223873] pci 0000:00:1f.5: [8086:7e23] type 00 class 0x0c8000 conventional PCI endpoint
<6>[    1.223912] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
<7>[    1.224101] pci_bus 0000:00: fixups for bus
<7>[    1.224105] pci 0000:00:06.0: scanning [bus 1c-1c] behind bridge, pass 0
<7>[    1.224185] pci_bus 0000:1c: scanning bus
<7>[    1.224190] pci_bus 0000:1c: fixups for bus
<6>[    1.224191] pci 0000:00:06.0: PCI bridge to [bus 1c]
<7>[    1.224201] pci_bus 0000:1c: bus scan returning with max=1c
<7>[    1.224207] pci 0000:00:06.1: scanning [bus 04-04] behind bridge, pass 0
<7>[    1.224287] pci_bus 0000:04: scanning bus
<6>[    1.224305] pci 0000:04:00.0: [1cc4:660c] type 00 class 0x010802 PCIe Endpoint
<6>[    1.224322] pci 0000:04:00.0: BAR 0 [mem 0xaac00000-0xaac03fff 64bit]
<7>[    1.224758] pci_bus 0000:04: fixups for bus
<6>[    1.224759] pci 0000:00:06.1: PCI bridge to [bus 04]
<7>[    1.224767] pci_bus 0000:04: bus scan returning with max=04
<7>[    1.224771] pci 0000:00:07.0: scanning [bus 20-49] behind bridge, pass 0
<7>[    1.224834] pci_bus 0000:20: scanning bus
<6>[    1.224874] pci 0000:20:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Upstream Port
<6>[    1.224926] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[    1.224940] pci 0000:20:00.0:   bridge window [mem 0x9e000000-0xa9ffffff]
<6>[    1.224958] pci 0000:20:00.0:   bridge window [mem 0x4010000000-0x402befffff 64bit pref]
<6>[    1.224978] pci 0000:20:00.0: enabling Extended Tags
<6>[    1.225160] pci 0000:20:00.0: supports D1 D2
<6>[    1.225161] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<7>[    1.225166] pci 0000:20:00.0: PME# disabled
<6>[    1.225270] pci 0000:20:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:00:07.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
<7>[    1.228183] pci_bus 0000:20: fixups for bus
<6>[    1.228185] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<7>[    1.228198] pci 0000:20:00.0: scanning [bus 21-49] behind bridge, pass 0
<7>[    1.228279] pci_bus 0000:21: scanning bus
<6>[    1.228325] pci 0000:21:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    1.228378] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[    1.228430] pci 0000:21:00.0: enabling Extended Tags
<6>[    1.228623] pci 0000:21:00.0: supports D1 D2
<6>[    1.228624] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<7>[    1.228629] pci 0000:21:00.0: PME# disabled
<6>[    1.228946] pci 0000:21:01.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    1.228999] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[    1.229013] pci 0000:21:01.0:   bridge window [mem 0xa6000000-0xa9ffffff]
<6>[    1.229031] pci 0000:21:01.0:   bridge window [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[    1.229054] pci 0000:21:01.0: enabling Extended Tags
<6>[    1.229249] pci 0000:21:01.0: supports D1 D2
<6>[    1.229250] pci 0000:21:01.0: PME# supported from D0 D1 D2 D3hot D3cold
<7>[    1.229255] pci 0000:21:01.0: PME# disabled
<6>[    1.229564] pci 0000:21:02.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    1.229617] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[    1.229630] pci 0000:21:02.0:   bridge window [mem 0xa2000000-0xa5ffffff]
<6>[    1.229648] pci 0000:21:02.0:   bridge window [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[    1.229671] pci 0000:21:02.0: enabling Extended Tags
<6>[    1.229866] pci 0000:21:02.0: supports D1 D2
<6>[    1.229867] pci 0000:21:02.0: PME# supported from D0 D1 D2 D3hot D3cold
<7>[    1.229872] pci 0000:21:02.0: PME# disabled
<6>[    1.230183] pci 0000:21:03.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    1.230236] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[    1.230250] pci 0000:21:03.0:   bridge window [mem 0x9e000000-0xa1ffffff]
<6>[    1.230268] pci 0000:21:03.0:   bridge window [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[    1.230291] pci 0000:21:03.0: enabling Extended Tags
<6>[    1.230486] pci 0000:21:03.0: supports D1 D2
<6>[    1.230487] pci 0000:21:03.0: PME# supported from D0 D1 D2 D3hot D3cold
<7>[    1.230492] pci 0000:21:03.0: PME# disabled
<6>[    1.230799] pci 0000:21:04.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    1.230852] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[    1.230904] pci 0000:21:04.0: enabling Extended Tags
<6>[    1.231098] pci 0000:21:04.0: supports D1 D2
<6>[    1.231098] pci 0000:21:04.0: PME# supported from D0 D1 D2 D3hot D3cold
<7>[    1.231103] pci 0000:21:04.0: PME# disabled
<7>[    1.231426] pci_bus 0000:21: fixups for bus
<6>[    1.231427] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<7>[    1.231448] pci 0000:21:00.0: scanning [bus 22-22] behind bridge, pass 0
<7>[    1.231522] pci_bus 0000:22: scanning bus
<7>[    1.231527] pci_bus 0000:22: fixups for bus
<6>[    1.231528] pci 0000:21:00.0: PCI bridge to [bus 22]
<7>[    1.231548] pci_bus 0000:22: bus scan returning with max=22
<7>[    1.231554] pci 0000:21:01.0: scanning [bus 23-2e] behind bridge, pass 0
<7>[    1.231624] pci_bus 0000:23: scanning bus
<7>[    1.231629] pci_bus 0000:23: fixups for bus
<6>[    1.231630] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<7>[    1.231649] pci_bus 0000:23: [bus 23-2e] extended by 0xb
<7>[    1.231650] pci_bus 0000:23: bus scan returning with max=2e
<7>[    1.231657] pci 0000:21:02.0: scanning [bus 2f-3a] behind bridge, pass 0
<7>[    1.231726] pci_bus 0000:2f: scanning bus
<7>[    1.231732] pci_bus 0000:2f: fixups for bus
<6>[    1.231732] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<7>[    1.231752] pci_bus 0000:2f: [bus 2f-3a] extended by 0xb
<7>[    1.231753] pci_bus 0000:2f: bus scan returning with max=3a
<7>[    1.231759] pci 0000:21:03.0: scanning [bus 3b-48] behind bridge, pass 0
<7>[    1.231827] pci_bus 0000:3b: scanning bus
<7>[    1.231835] pci_bus 0000:3b: fixups for bus
<6>[    1.231835] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<7>[    1.231855] pci_bus 0000:3b: [bus 3b-48] extended by 0xd
<7>[    1.231856] pci_bus 0000:3b: bus scan returning with max=48
<7>[    1.231862] pci 0000:21:04.0: scanning [bus 49-49] behind bridge, pass 0
<7>[    1.231932] pci_bus 0000:49: scanning bus
<7>[    1.231937] pci_bus 0000:49: fixups for bus
<6>[    1.231938] pci 0000:21:04.0: PCI bridge to [bus 49]
<7>[    1.231957] pci_bus 0000:49: bus scan returning with max=49
<7>[    1.231964] pci 0000:21:00.0: scanning [bus 22-22] behind bridge, pass 1
<7>[    1.231974] pci 0000:21:01.0: scanning [bus 23-2e] behind bridge, pass 1
<7>[    1.231985] pci 0000:21:02.0: scanning [bus 2f-3a] behind bridge, pass 1
<7>[    1.231995] pci 0000:21:03.0: scanning [bus 3b-48] behind bridge, pass 1
<7>[    1.232006] pci 0000:21:04.0: scanning [bus 49-49] behind bridge, pass 1
<7>[    1.232014] pci_bus 0000:21: bus scan returning with max=49
<7>[    1.232021] pci 0000:20:00.0: scanning [bus 21-49] behind bridge, pass 1
<7>[    1.232029] pci_bus 0000:20: bus scan returning with max=49
<7>[    1.232033] pci 0000:00:07.2: scanning [bus 50-79] behind bridge, pass 0
<7>[    1.232094] pci_bus 0000:50: scanning bus
<7>[    1.232096] pci_bus 0000:50: fixups for bus
<6>[    1.232097] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<7>[    1.232104] pci_bus 0000:50: [bus 50-79] extended by 0x29
<7>[    1.232106] pci_bus 0000:50: bus scan returning with max=79
<7>[    1.232112] pci 0000:00:1c.0: scanning [bus 1d-1d] behind bridge, pass 0
<7>[    1.232173] pci_bus 0000:1d: scanning bus
<7>[    1.232178] pci_bus 0000:1d: fixups for bus
<6>[    1.232179] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<7>[    1.232189] pci_bus 0000:1d: bus scan returning with max=1d
<7>[    1.232197] pci 0000:00:06.0: scanning [bus 1c-1c] behind bridge, pass 1
<7>[    1.232203] pci 0000:00:06.1: scanning [bus 04-04] behind bridge, pass 1
<7>[    1.232209] pci 0000:00:07.0: scanning [bus 20-49] behind bridge, pass 1
<7>[    1.232215] pci 0000:00:07.2: scanning [bus 50-79] behind bridge, pass 1
<7>[    1.232224] pci 0000:00:1c.0: scanning [bus 1d-1d] behind bridge, pass 1
<7>[    1.232229] pci_bus 0000:00: bus scan returning with max=79
<7>[    1.232230] pci_bus 0000:00: on NUMA node 0
<6>[    1.246270] ACPI: \_SB_.PEPD: Duplicate LPS0 _DSM functions (mask: 0x1)
<6>[    2.613222] Low-power S0 idle used by default for system suspend
<6>[    2.615187] ACPI: EC: interrupt unblocked
<6>[    2.615189] ACPI: EC: event unblocked
<6>[    2.615209] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
<6>[    2.615210] ACPI: EC: GPE=0x6e
<6>[    2.615212] ACPI: \_SB_.PC00.LPCB.EC__: Boot ECDT EC initialization complete
<6>[    2.615216] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
<6>[    2.615346] iommu: Default domain type: Translated
<6>[    2.615348] iommu: DMA domain TLB invalidation policy: lazy mode
<5>[    2.615540] SCSI subsystem initialized
<7>[    2.615558] libata version 3.00 loaded.
<6>[    2.615558] ACPI: bus type USB registered
<6>[    2.615558] usbcore: registered new interface driver usbfs
<6>[    2.615558] usbcore: registered new interface driver hub
<6>[    2.615558] usbcore: registered new device driver usb
<6>[    2.615558] pps_core: LinuxPPS API ver. 1 registered
<6>[    2.615558] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
<6>[    2.615558] PTP clock support registered
<6>[    2.615558] Advanced Linux Sound Architecture Driver Initialized.
<6>[    2.616427] PCI: Using ACPI for IRQ routing
<7>[    2.628188] PCI: pci_cache_line_size set to 64 bytes
<6>[    2.628300] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
<7>[    2.628406] e820: reserve RAM buffer [mem 0x3e9f4000-0x3fffffff]
<7>[    2.628410] e820: reserve RAM buffer [mem 0x744ff000-0x77ffffff]
<6>[    2.628432] pci 0000:00:02.0: vgaarb: setting as boot VGA device
<6>[    2.628432] pci 0000:00:02.0: vgaarb: bridge control possible
<6>[    2.628432] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
<6>[    2.628432] vgaarb: loaded
<6>[    2.631705] clocksource: Switched to clocksource tsc-early
<6>[    2.632071] pnp: PnP ACPI init
<6>[    2.632906] system 00:00: [io  0x0680-0x069f] has been reserved
<6>[    2.632910] system 00:00: [io  0x164e-0x164f] has been reserved
<6>[    2.633187] system 00:01: [io  0x1854-0x1857] has been reserved
<6>[    2.633478] system 00:04: [io  0x1800-0x189f] could not be reserved
<6>[    2.633481] system 00:04: [io  0x0800-0x087f] has been reserved
<6>[    2.633484] system 00:04: [io  0x0880-0x08ff] has been reserved
<6>[    2.633486] system 00:04: [io  0x0900-0x097f] has been reserved
<6>[    2.633488] system 00:04: [io  0x0980-0x09ff] has been reserved
<6>[    2.633490] system 00:04: [io  0x0a00-0x0a7f] has been reserved
<6>[    2.633492] system 00:04: [io  0x0a80-0x0aff] has been reserved
<6>[    2.633494] system 00:04: [io  0x0b00-0x0b7f] has been reserved
<6>[    2.633497] system 00:04: [io  0x0b80-0x0bff] has been reserved
<6>[    2.633499] system 00:04: [io  0x15e0-0x15ef] has been reserved
<6>[    2.633502] system 00:04: [io  0x1600-0x167f] could not be reserved
<6>[    2.633506] system 00:04: [io  0x1640-0x165f] could not be reserved
<6>[    2.633509] system 00:04: [mem 0xc0000000-0xcfffffff] has been reserved
<6>[    2.633512] system 00:04: [mem 0xfed10000-0xfed13fff] has been reserved
<6>[    2.633515] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
<6>[    2.633517] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
<6>[    2.633519] system 00:04: [mem 0xfeb00000-0xfebfffff] has been reserved
<6>[    2.633521] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
<6>[    2.633524] system 00:04: [mem 0xfed90000-0xfed93fff] has been reserved
<6>[    2.636884] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
<6>[    2.636890] system 00:05: [mem 0x00000000-0x00000fff] could not be reserved
<6>[    2.636894] system 00:05: [mem 0x00000000-0x00000fff] could not be reserved
<6>[    2.636896] system 00:05: [mem 0xc0000000-0xcfffffff] has been reserved
<6>[    2.636900] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
<6>[    2.636903] system 00:05: [mem 0xfc800000-0xfc81ffff] could not be reserved
<6>[    2.636907] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
<6>[    2.636909] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
<6>[    2.638863] system 00:06: [io  0xff00-0xfffe] has been reserved
<4>[    2.640587] pnp 00:08: disabling [mem 0x000c0000-0x000c3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[    2.640590] pnp 00:08: disabling [mem 0x000c8000-0x000cbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[    2.640592] pnp 00:08: disabling [mem 0x000d0000-0x000d3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[    2.640594] pnp 00:08: disabling [mem 0x000d8000-0x000dbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<6>[    2.640642] system 00:08: [mem 0x00000000-0x0009ffff] could not be reserved
<6>[    2.640645] system 00:08: [mem 0x000e0000-0x000e3fff] could not be reserved
<6>[    2.640649] system 00:08: [mem 0x000e8000-0x000ebfff] could not be reserved
<6>[    2.640652] system 00:08: [mem 0x000f0000-0x000fffff] could not be reserved
<6>[    2.640655] system 00:08: [mem 0x00100000-0x8fffffff] could not be reserved
<6>[    2.640659] system 00:08: [mem 0xfec00000-0xfed3ffff] could not be reserved
<6>[    2.640663] system 00:08: [mem 0xfed4c000-0xffffffff] could not be reserved
<6>[    2.641092] pnp: PnP ACPI: found 9 devices
<6>[    2.649469] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
<6>[    2.649590] NET: Registered PF_INET protocol family
<6>[    2.649803] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
<6>[    2.651529] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
<6>[    2.651554] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
<6>[    2.651562] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
<6>[    2.651745] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
<6>[    2.651908] TCP: Hash tables configured (established 262144 bind 65536)
<6>[    2.651975] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
<6>[    2.652026] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
<6>[    2.652134] NET: Registered PF_UNIX/PF_LOCAL protocol family
<6>[    2.652473] pci 0000:00:06.0: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
<6>[    2.652478] pci 0000:00:06.0: bridge window [mem 0x00100000-0x000fffff] to [bus 1c] add_size 200000 add_align 100000
<6>[    2.652482] pci 0000:21:01.0: bridge window [io  0x1000-0x0fff] to [bus 23-2e] add_size 1000
<6>[    2.652485] pci 0000:21:02.0: bridge window [io  0x1000-0x0fff] to [bus 2f-3a] add_size 1000
<6>[    2.652487] pci 0000:21:03.0: bridge window [io  0x1000-0x0fff] to [bus 3b-48] add_size 1000
<6>[    2.652490] pci 0000:20:00.0: bridge window [io  0x1000-0x0fff] to [bus 21-49] add_size 3000
<6>[    2.652493] pci 0000:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 20-49] add_size 4000
<6>[    2.652495] pci 0000:00:07.2: bridge window [io  0x1000-0x0fff] to [bus 50-79] add_size 1000
<6>[    2.652497] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
<6>[    2.652512] pci 0000:00:06.0: bridge window [mem 0x9c200000-0x9c3fffff]: assigned
<6>[    2.652515] pci 0000:00:06.0: bridge window [io  0x2000-0x2fff]: assigned
<6>[    2.652517] pci 0000:00:07.0: bridge window [io  0x3000-0x6fff]: assigned
<6>[    2.652518] pci 0000:00:07.2: bridge window [io  0x7000-0x7fff]: assigned
<6>[    2.652520] pci 0000:00:15.0: BAR 0 [mem 0x402c000000-0x402c000fff 64bit]: assigned
<6>[    2.652561] pci 0000:00:1c.0: bridge window [io  0x8000-0x8fff]: assigned
<6>[    2.652562] pci 0000:00:1f.5: BAR 0 [mem 0x9c400000-0x9c400fff]: assigned
<6>[    2.652584] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[    2.652588] pci 0000:00:06.0:   bridge window [io  0x2000-0x2fff]
<6>[    2.652592] pci 0000:00:06.0:   bridge window [mem 0x9c200000-0x9c3fffff]
<6>[    2.652597] pci 0000:00:06.0:   bridge window [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[    2.652604] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[    2.652608] pci 0000:00:06.1:   bridge window [mem 0xaac00000-0xaacfffff]
<6>[    2.652616] pci 0000:20:00.0: bridge window [io  0x3000-0x5fff]: assigned
<6>[    2.652624] pci 0000:21:01.0: bridge window [io  0x3000-0x3fff]: assigned
<6>[    2.652625] pci 0000:21:02.0: bridge window [io  0x4000-0x4fff]: assigned
<6>[    2.652626] pci 0000:21:03.0: bridge window [io  0x5000-0x5fff]: assigned
<6>[    2.652633] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[    2.652653] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[    2.652656] pci 0000:21:01.0:   bridge window [io  0x3000-0x3fff]
<6>[    2.652663] pci 0000:21:01.0:   bridge window [mem 0xa6000000-0xa9ffffff]
<6>[    2.652668] pci 0000:21:01.0:   bridge window [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[    2.652677] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[    2.652680] pci 0000:21:02.0:   bridge window [io  0x4000-0x4fff]
<6>[    2.652687] pci 0000:21:02.0:   bridge window [mem 0xa2000000-0xa5ffffff]
<6>[    2.652692] pci 0000:21:02.0:   bridge window [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[    2.652700] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[    2.652703] pci 0000:21:03.0:   bridge window [io  0x5000-0x5fff]
<6>[    2.652710] pci 0000:21:03.0:   bridge window [mem 0x9e000000-0xa1ffffff]
<6>[    2.652715] pci 0000:21:03.0:   bridge window [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[    2.652724] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[    2.652742] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[    2.652745] pci 0000:20:00.0:   bridge window [io  0x3000-0x5fff]
<6>[    2.652752] pci 0000:20:00.0:   bridge window [mem 0x9e000000-0xa9ffffff]
<6>[    2.652757] pci 0000:20:00.0:   bridge window [mem 0x4010000000-0x402befffff 64bit pref]
<6>[    2.652765] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[    2.652767] pci 0000:00:07.0:   bridge window [io  0x3000-0x6fff]
<6>[    2.652771] pci 0000:00:07.0:   bridge window [mem 0x9e000000-0xaa1fffff]
<6>[    2.652773] pci 0000:00:07.0:   bridge window [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[    2.652778] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[    2.652780] pci 0000:00:07.2:   bridge window [io  0x7000-0x7fff]
<6>[    2.652784] pci 0000:00:07.2:   bridge window [mem 0x90000000-0x9c1fffff]
<6>[    2.652787] pci 0000:00:07.2:   bridge window [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[    2.652792] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<6>[    2.652796] pci 0000:00:1c.0:   bridge window [io  0x8000-0x8fff]
<6>[    2.652799] pci 0000:00:1c.0:   bridge window [mem 0xaa200000-0xaabfffff]
<6>[    2.652805] pci 0000:00:1c.0:   bridge window [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[    2.652812] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
<6>[    2.652814] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
<6>[    2.652815] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
<6>[    2.652816] pci_bus 0000:00: resource 7 [mem 0x90000000-0xbfffffff window]
<6>[    2.652818] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x3ffbfffffff window]
<6>[    2.652819] pci_bus 0000:1c: resource 0 [io  0x2000-0x2fff]
<6>[    2.652820] pci_bus 0000:1c: resource 1 [mem 0x9c200000-0x9c3fffff]
<6>[    2.652822] pci_bus 0000:1c: resource 2 [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[    2.652823] pci_bus 0000:04: resource 1 [mem 0xaac00000-0xaacfffff]
<6>[    2.652825] pci_bus 0000:20: resource 0 [io  0x3000-0x6fff]
<6>[    2.652826] pci_bus 0000:20: resource 1 [mem 0x9e000000-0xaa1fffff]
<6>[    2.652827] pci_bus 0000:20: resource 2 [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[    2.652828] pci_bus 0000:21: resource 0 [io  0x3000-0x5fff]
<6>[    2.652830] pci_bus 0000:21: resource 1 [mem 0x9e000000-0xa9ffffff]
<6>[    2.652831] pci_bus 0000:21: resource 2 [mem 0x4010000000-0x402befffff 64bit pref]
<6>[    2.652832] pci_bus 0000:23: resource 0 [io  0x3000-0x3fff]
<6>[    2.652834] pci_bus 0000:23: resource 1 [mem 0xa6000000-0xa9ffffff]
<6>[    2.652835] pci_bus 0000:23: resource 2 [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[    2.652836] pci_bus 0000:2f: resource 0 [io  0x4000-0x4fff]
<6>[    2.652837] pci_bus 0000:2f: resource 1 [mem 0xa2000000-0xa5ffffff]
<6>[    2.652838] pci_bus 0000:2f: resource 2 [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[    2.652840] pci_bus 0000:3b: resource 0 [io  0x5000-0x5fff]
<6>[    2.652841] pci_bus 0000:3b: resource 1 [mem 0x9e000000-0xa1ffffff]
<6>[    2.652842] pci_bus 0000:3b: resource 2 [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[    2.652844] pci_bus 0000:50: resource 0 [io  0x7000-0x7fff]
<6>[    2.652845] pci_bus 0000:50: resource 1 [mem 0x90000000-0x9c1fffff]
<6>[    2.652846] pci_bus 0000:50: resource 2 [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[    2.652848] pci_bus 0000:1d: resource 0 [io  0x8000-0x8fff]
<6>[    2.652849] pci_bus 0000:1d: resource 1 [mem 0xaa200000-0xaabfffff]
<6>[    2.652850] pci_bus 0000:1d: resource 2 [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[    2.653129] pci 0000:00:0d.0: enabling device (0000 -> 0002)
<6>[    2.654008] PCI: CLS 0 bytes, default 64
<6>[    2.654045] DMAR: No RMRR found
<6>[    2.654046] DMAR: No ATSR found
<6>[    2.654048] DMAR: IOMMU feature sc_support inconsistent
<6>[    2.654049] DMAR: dmar0: Using Queued invalidation
<6>[    2.654054] DMAR: dmar1: Using Queued invalidation
<6>[    2.654357] Unpacking initramfs...
<6>[    2.654748] pci 0000:00:02.0: Adding to iommu group 0
<6>[    2.655239] pci 0000:00:00.0: Adding to iommu group 1
<6>[    2.655259] pci 0000:00:04.0: Adding to iommu group 2
<6>[    2.655283] pci 0000:00:06.0: Adding to iommu group 3
<6>[    2.655303] pci 0000:00:06.1: Adding to iommu group 4
<6>[    2.655325] pci 0000:00:07.0: Adding to iommu group 5
<6>[    2.655348] pci 0000:00:07.2: Adding to iommu group 6
<6>[    2.655367] pci 0000:00:08.0: Adding to iommu group 7
<6>[    2.655387] pci 0000:00:0a.0: Adding to iommu group 8
<6>[    2.655406] pci 0000:00:0b.0: Adding to iommu group 9
<6>[    2.655432] pci 0000:00:0d.0: Adding to iommu group 10
<6>[    2.655449] pci 0000:00:0d.2: Adding to iommu group 10
<6>[    2.655464] pci 0000:00:0d.3: Adding to iommu group 10
<6>[    2.655489] pci 0000:00:14.0: Adding to iommu group 11
<6>[    2.655504] pci 0000:00:14.2: Adding to iommu group 11
<6>[    2.655526] pci 0000:00:15.0: Adding to iommu group 12
<6>[    2.655549] pci 0000:00:16.0: Adding to iommu group 13
<6>[    2.655572] pci 0000:00:1c.0: Adding to iommu group 14
<6>[    2.655599] pci 0000:00:1f.0: Adding to iommu group 15
<6>[    2.655614] pci 0000:00:1f.3: Adding to iommu group 15
<6>[    2.655629] pci 0000:00:1f.4: Adding to iommu group 15
<6>[    2.655643] pci 0000:00:1f.5: Adding to iommu group 15
<6>[    2.655669] pci 0000:04:00.0: Adding to iommu group 16
<6>[    2.655692] pci 0000:20:00.0: Adding to iommu group 17
<6>[    2.655714] pci 0000:21:00.0: Adding to iommu group 18
<6>[    2.655734] pci 0000:21:01.0: Adding to iommu group 19
<6>[    2.655756] pci 0000:21:02.0: Adding to iommu group 20
<6>[    2.655776] pci 0000:21:03.0: Adding to iommu group 21
<6>[    2.655796] pci 0000:21:04.0: Adding to iommu group 22
<6>[    2.663204] DMAR: Intel(R) Virtualization Technology for Directed I/O
<6>[    2.663207] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
<6>[    2.663208] software IO TLB: mapped [mem 0x00000000704ff000-0x00000000744ff000] (64MB)
<6>[    2.663219] ACPI: bus type thunderbolt registered
<7>[    2.663263] thunderbolt 0000:00:0d.2: vgaarb: pci_notify
<7>[    2.663269] thunderbolt 0000:00:0d.2: runtime IRQ mapping not provided by arch
<7>[    2.663692] thunderbolt 0000:00:0d.2: total paths: 12
<7>[    2.663697] thunderbolt 0000:00:0d.2: IOMMU DMA protection is enabled
<7>[    2.664118] thunderbolt 0000:00:0d.2: allocating TX ring 0 of size 10
<7>[    2.664157] thunderbolt 0000:00:0d.2: allocating RX ring 0 of size 10
<7>[    2.664198] thunderbolt 0000:00:0d.2: control channel created
<7>[    2.664201] thunderbolt 0000:00:0d.2: using software connection manager
<7>[    2.664310] thunderbolt 0000:00:0d.2: created link from 0000:00:0d.0
<7>[    2.664312] thunderbolt 0000:00:0d.2: created link from 0000:00:0d.0
<7>[    2.664346] thunderbolt 0000:00:0d.2: created link from 0000:00:07.0
<7>[    2.664411] thunderbolt 0000:00:0d.2: NHI initialized, starting thunderbolt
<7>[    2.664412] thunderbolt 0000:00:0d.2: control channel starting...
<7>[    2.664413] thunderbolt 0000:00:0d.2: starting TX ring 0
<7>[    2.664418] thunderbolt 0000:00:0d.2: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
<7>[    2.664420] thunderbolt 0000:00:0d.2: starting RX ring 0
<7>[    2.664424] thunderbolt 0000:00:0d.2: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
<7>[    2.664428] thunderbolt 0000:00:0d.2: security level set to user
<7>[    2.664803] thunderbolt 0000:00:0d.2: current switch config:
<7>[    2.664806] thunderbolt 0000:00:0d.2:  USB4 Switch: 8087:7ec2 (Revision: 2, TB Version: 32)
<7>[    2.664811] thunderbolt 0000:00:0d.2:   Max Port Number: 13
<7>[    2.664814] thunderbolt 0000:00:0d.2:   Config:
<7>[    2.664816] thunderbolt 0000:00:0d.2:    Upstream Port Number: 7 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 254ms
<7>[    2.664820] thunderbolt 0000:00:0d.2:    unknown1: 0x0 unknown4: 0x0
<7>[    2.669140] thunderbolt 0000:00:0d.2: initializing Switch at 0x0 (depth: 0, up port: 7)
<7>[    2.670656] thunderbolt 0000:00:0d.2: 0: credit allocation parameters:
<7>[    2.670658] thunderbolt 0000:00:0d.2: 0:  USB3: 32
<7>[    2.670659] thunderbolt 0000:00:0d.2: 0:  DP AUX: 1
<7>[    2.670660] thunderbolt 0000:00:0d.2: 0:  DP main: 0
<7>[    2.670661] thunderbolt 0000:00:0d.2: 0:  PCIe: 64
<7>[    2.670662] thunderbolt 0000:00:0d.2: 0:  DMA: 14
<7>[    2.673083] thunderbolt 0000:00:0d.2: 0: DROM version: 3
<7>[    2.673404] thunderbolt 0000:00:0d.2: 0: uid: 0x2b1a053080878b2a
<7>[    2.675074] thunderbolt 0000:00:0d.2:  Port 1: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
<7>[    2.675079] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 19/19
<7>[    2.675081] thunderbolt 0000:00:0d.2:   Max counters: 16
<7>[    2.675083] thunderbolt 0000:00:0d.2:   NFC Credits: 0x47800000
<7>[    2.675086] thunderbolt 0000:00:0d.2:   Credits (total/control): 120/2
<7>[    2.676908] thunderbolt 0000:00:0d.2:  Port 2: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
<7>[    2.676910] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 19/19
<7>[    2.676911] thunderbolt 0000:00:0d.2:   Max counters: 16
<7>[    2.676912] thunderbolt 0000:00:0d.2:   NFC Credits: 0x80000000
<7>[    2.676913] thunderbolt 0000:00:0d.2:   Credits (total/control): 0/2
<7>[    2.678579] thunderbolt 0000:00:0d.2:  Port 3: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
<7>[    2.678581] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 19/19
<7>[    2.678582] thunderbolt 0000:00:0d.2:   Max counters: 16
<7>[    2.678583] thunderbolt 0000:00:0d.2:   NFC Credits: 0x83c00000
<7>[    2.678584] thunderbolt 0000:00:0d.2:   Credits (total/control): 60/2
<7>[    2.680415] thunderbolt 0000:00:0d.2:  Port 4: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
<7>[    2.680416] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 19/19
<7>[    2.680417] thunderbolt 0000:00:0d.2:   Max counters: 16
<7>[    2.680418] thunderbolt 0000:00:0d.2:   NFC Credits: 0x83c00000
<7>[    2.680419] thunderbolt 0000:00:0d.2:   Credits (total/control): 60/2
<7>[    2.680750] thunderbolt 0000:00:0d.2:  Port 5: 8087:15ea (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
<7>[    2.680754] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 9/9
<7>[    2.680756] thunderbolt 0000:00:0d.2:   Max counters: 2
<7>[    2.680758] thunderbolt 0000:00:0d.2:   NFC Credits: 0x100000d
<7>[    2.680760] thunderbolt 0000:00:0d.2:   Credits (total/control): 16/0
<7>[    2.681083] thunderbolt 0000:00:0d.2:  Port 6: 8087:15ea (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
<7>[    2.681086] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 9/9
<7>[    2.681089] thunderbolt 0000:00:0d.2:   Max counters: 2
<7>[    2.681090] thunderbolt 0000:00:0d.2:   NFC Credits: 0x100000d
<7>[    2.681092] thunderbolt 0000:00:0d.2:   Credits (total/control): 16/0
<7>[    2.682084] thunderbolt 0000:00:0d.2:  Port 7: 8086:15ea (Revision: 0, TB Version: 1, Type: NHI (0x2))
<7>[    2.682086] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 11/11
<7>[    2.682087] thunderbolt 0000:00:0d.2:   Max counters: 16
<7>[    2.682088] thunderbolt 0000:00:0d.2:   NFC Credits: 0x1c00000
<7>[    2.682089] thunderbolt 0000:00:0d.2:   Credits (total/control): 28/0
<7>[    2.682420] thunderbolt 0000:00:0d.2:  Port 8: 8087:15ea (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
<7>[    2.682424] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 8/8
<7>[    2.682426] thunderbolt 0000:00:0d.2:   Max counters: 2
<7>[    2.682428] thunderbolt 0000:00:0d.2:   NFC Credits: 0x800000
<7>[    2.682430] thunderbolt 0000:00:0d.2:   Credits (total/control): 8/0
<7>[    2.682753] thunderbolt 0000:00:0d.2:  Port 9: 8087:15ea (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
<7>[    2.682755] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 8/8
<7>[    2.682756] thunderbolt 0000:00:0d.2:   Max counters: 2
<7>[    2.682757] thunderbolt 0000:00:0d.2:   NFC Credits: 0x800000
<7>[    2.682758] thunderbolt 0000:00:0d.2:   Credits (total/control): 8/0
<7>[    2.682922] thunderbolt 0000:00:0d.2:  Port 10: not implemented
<7>[    2.683087] thunderbolt 0000:00:0d.2:  Port 11: not implemented
<7>[    2.683421] thunderbolt 0000:00:0d.2:  Port 12: 8087:0 (Revision: 0, TB Version: 1, Type: USB (0x200101))
<7>[    2.683423] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 8/8
<7>[    2.683424] thunderbolt 0000:00:0d.2:   Max counters: 2
<7>[    2.683424] thunderbolt 0000:00:0d.2:   NFC Credits: 0x800000
<7>[    2.683425] thunderbolt 0000:00:0d.2:   Credits (total/control): 8/0
<7>[    2.683756] thunderbolt 0000:00:0d.2:  Port 13: 8087:0 (Revision: 0, TB Version: 1, Type: USB (0x200101))
<7>[    2.683760] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 8/8
<7>[    2.683762] thunderbolt 0000:00:0d.2:   Max counters: 2
<7>[    2.683764] thunderbolt 0000:00:0d.2:   NFC Credits: 0x800000
<7>[    2.683766] thunderbolt 0000:00:0d.2:   Credits (total/control): 8/0
<7>[    2.683769] thunderbolt 0000:00:0d.2: 0: running quirk_usb3_maximum_bandwidth
<7>[    2.683777] thunderbolt 0000:00:0d.2: 0:12: USB3 maximum bandwidth limited to 16376 Mb/s
<7>[    2.683781] thunderbolt 0000:00:0d.2: 0:13: USB3 maximum bandwidth limited to 16376 Mb/s
<7>[    2.683784] thunderbolt 0000:00:0d.2: 0: linked ports 1 <-> 2
<7>[    2.683787] thunderbolt 0000:00:0d.2: 0: linked ports 3 <-> 4
<7>[    2.690937] thunderbolt 0000:00:0d.2: 0: TMU: supports uni-directional mode
<7>[    2.691103] thunderbolt 0000:00:0d.2: 0: TMU: current mode: off
<7>[    2.694012] thunderbolt 0000:00:0d.2: 0: TMU: mode change off -> uni-directional, LowRes requested
<7>[    2.695084] thunderbolt 0000:00:0d.2: 0: TMU: mode set to: uni-directional, LowRes
<7>[    2.695610] thunderbolt 0000:00:0d.2: 0: resetting
<7>[    2.697591] thunderbolt 0000:00:0d.2: acking hot unplug event on 0:1
<7>[    2.750376] thunderbolt 0000:00:0d.2: 0:5: DP IN resource available
<7>[    2.751210] thunderbolt 0000:00:0d.2: 0:6: DP IN resource available
<7>[    2.751217] thunderbolt 0000:00:0d.2: 0:1: got unplug event for disconnected port, ignoring
<7>[    2.751282] thunderbolt 0000:00:0d.2: vgaarb: pci_notify
<7>[    2.751299] thunderbolt 0000:00:0d.3: vgaarb: pci_notify
<7>[    2.751304] thunderbolt 0000:00:0d.3: runtime IRQ mapping not provided by arch
<7>[    2.751656] thunderbolt 0000:00:0d.3: total paths: 12
<7>[    2.751660] thunderbolt 0000:00:0d.3: IOMMU DMA protection is enabled
<7>[    2.752074] thunderbolt 0000:00:0d.3: allocating TX ring 0 of size 10
<7>[    2.752106] thunderbolt 0000:00:0d.3: allocating RX ring 0 of size 10
<7>[    2.752144] thunderbolt 0000:00:0d.3: control channel created
<7>[    2.752146] thunderbolt 0000:00:0d.3: using software connection manager
<7>[    2.752242] thunderbolt 0000:00:0d.3: created link from 0000:00:0d.0
<7>[    2.752243] thunderbolt 0000:00:0d.3: created link from 0000:00:0d.0
<7>[    2.752272] thunderbolt 0000:00:0d.3: created link from 0000:00:07.2
<7>[    2.752327] thunderbolt 0000:00:0d.3: NHI initialized, starting thunderbolt
<7>[    2.752328] thunderbolt 0000:00:0d.3: control channel starting...
<7>[    2.752329] thunderbolt 0000:00:0d.3: starting TX ring 0
<7>[    2.752333] thunderbolt 0000:00:0d.3: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
<7>[    2.752335] thunderbolt 0000:00:0d.3: starting RX ring 0
<7>[    2.752339] thunderbolt 0000:00:0d.3: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
<7>[    2.752343] thunderbolt 0000:00:0d.3: security level set to user
<7>[    2.752668] thunderbolt 0000:00:0d.3: current switch config:
<7>[    2.752669] thunderbolt 0000:00:0d.3:  USB4 Switch: 8087:7ec3 (Revision: 2, TB Version: 32)
<7>[    2.752671] thunderbolt 0000:00:0d.3:   Max Port Number: 13
<7>[    2.752672] thunderbolt 0000:00:0d.3:   Config:
<7>[    2.752673] thunderbolt 0000:00:0d.3:    Upstream Port Number: 7 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 254ms
<7>[    2.752675] thunderbolt 0000:00:0d.3:    unknown1: 0x0 unknown4: 0x0
<7>[    2.757007] thunderbolt 0000:00:0d.3: initializing Switch at 0x0 (depth: 0, up port: 7)
<7>[    2.758522] thunderbolt 0000:00:0d.3: 0: credit allocation parameters:
<7>[    2.758523] thunderbolt 0000:00:0d.3: 0:  USB3: 32
<7>[    2.758524] thunderbolt 0000:00:0d.3: 0:  DP AUX: 1
<7>[    2.758526] thunderbolt 0000:00:0d.3: 0:  DP main: 0
<7>[    2.758527] thunderbolt 0000:00:0d.3: 0:  PCIe: 64
<7>[    2.758528] thunderbolt 0000:00:0d.3: 0:  DMA: 14
<7>[    2.760948] thunderbolt 0000:00:0d.3: 0: DROM version: 3
<7>[    2.761270] thunderbolt 0000:00:0d.3: 0: uid: 0xbb1b6b118087aeda
<7>[    2.762942] thunderbolt 0000:00:0d.3:  Port 1: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
<7>[    2.762944] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 19/19
<7>[    2.762945] thunderbolt 0000:00:0d.3:   Max counters: 16
<7>[    2.762946] thunderbolt 0000:00:0d.3:   NFC Credits: 0x83c00000
<7>[    2.762947] thunderbolt 0000:00:0d.3:   Credits (total/control): 60/2
<7>[    2.764776] thunderbolt 0000:00:0d.3:  Port 2: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
<7>[    2.764778] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 19/19
<7>[    2.764779] thunderbolt 0000:00:0d.3:   Max counters: 16
<7>[    2.764780] thunderbolt 0000:00:0d.3:   NFC Credits: 0x83c00000
<7>[    2.764781] thunderbolt 0000:00:0d.3:   Credits (total/control): 60/2
<7>[    2.766454] thunderbolt 0000:00:0d.3:  Port 3: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
<7>[    2.766458] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 19/19
<7>[    2.766460] thunderbolt 0000:00:0d.3:   Max counters: 16
<7>[    2.766462] thunderbolt 0000:00:0d.3:   NFC Credits: 0x83c00000
<7>[    2.766464] thunderbolt 0000:00:0d.3:   Credits (total/control): 60/2
<7>[    2.768283] thunderbolt 0000:00:0d.3:  Port 4: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
<7>[    2.768285] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 19/19
<7>[    2.768286] thunderbolt 0000:00:0d.3:   Max counters: 16
<7>[    2.768287] thunderbolt 0000:00:0d.3:   NFC Credits: 0x83c00000
<7>[    2.768288] thunderbolt 0000:00:0d.3:   Credits (total/control): 60/2
<7>[    2.768617] thunderbolt 0000:00:0d.3:  Port 5: 8087:15ea (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
<7>[    2.768619] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 9/9
<7>[    2.768620] thunderbolt 0000:00:0d.3:   Max counters: 2
<7>[    2.768620] thunderbolt 0000:00:0d.3:   NFC Credits: 0x100000d
<7>[    2.768621] thunderbolt 0000:00:0d.3:   Credits (total/control): 16/0
<7>[    2.768952] thunderbolt 0000:00:0d.3:  Port 6: 8087:15ea (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
<7>[    2.768955] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 9/9
<7>[    2.768957] thunderbolt 0000:00:0d.3:   Max counters: 2
<7>[    2.768959] thunderbolt 0000:00:0d.3:   NFC Credits: 0x100000d
<7>[    2.768961] thunderbolt 0000:00:0d.3:   Credits (total/control): 16/0
<7>[    2.769954] thunderbolt 0000:00:0d.3:  Port 7: 8086:15ea (Revision: 0, TB Version: 1, Type: NHI (0x2))
<7>[    2.769957] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 11/11
<7>[    2.769960] thunderbolt 0000:00:0d.3:   Max counters: 16
<7>[    2.769962] thunderbolt 0000:00:0d.3:   NFC Credits: 0x1c00000
<7>[    2.769964] thunderbolt 0000:00:0d.3:   Credits (total/control): 28/0
<7>[    2.770286] thunderbolt 0000:00:0d.3:  Port 8: 8087:15ea (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
<7>[    2.770288] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 8/8
<7>[    2.770289] thunderbolt 0000:00:0d.3:   Max counters: 2
<7>[    2.770290] thunderbolt 0000:00:0d.3:   NFC Credits: 0x800000
<7>[    2.770291] thunderbolt 0000:00:0d.3:   Credits (total/control): 8/0
<7>[    2.770622] thunderbolt 0000:00:0d.3:  Port 9: 8087:15ea (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
<7>[    2.770625] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 8/8
<7>[    2.770627] thunderbolt 0000:00:0d.3:   Max counters: 2
<7>[    2.770629] thunderbolt 0000:00:0d.3:   NFC Credits: 0x800000
<7>[    2.770631] thunderbolt 0000:00:0d.3:   Credits (total/control): 8/0
<7>[    2.770788] thunderbolt 0000:00:0d.3:  Port 10: not implemented
<7>[    2.770955] thunderbolt 0000:00:0d.3:  Port 11: not implemented
<7>[    2.771290] thunderbolt 0000:00:0d.3:  Port 12: 8087:0 (Revision: 0, TB Version: 1, Type: USB (0x200101))
<7>[    2.771294] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 8/8
<7>[    2.771296] thunderbolt 0000:00:0d.3:   Max counters: 2
<7>[    2.771298] thunderbolt 0000:00:0d.3:   NFC Credits: 0x800000
<7>[    2.771300] thunderbolt 0000:00:0d.3:   Credits (total/control): 8/0
<7>[    2.771624] thunderbolt 0000:00:0d.3:  Port 13: 8087:0 (Revision: 0, TB Version: 1, Type: USB (0x200101))
<7>[    2.771627] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 8/8
<7>[    2.771629] thunderbolt 0000:00:0d.3:   Max counters: 2
<7>[    2.771631] thunderbolt 0000:00:0d.3:   NFC Credits: 0x800000
<7>[    2.771633] thunderbolt 0000:00:0d.3:   Credits (total/control): 8/0
<7>[    2.771636] thunderbolt 0000:00:0d.3: 0: running quirk_usb3_maximum_bandwidth
<7>[    2.771642] thunderbolt 0000:00:0d.3: 0:12: USB3 maximum bandwidth limited to 16376 Mb/s
<7>[    2.771645] thunderbolt 0000:00:0d.3: 0:13: USB3 maximum bandwidth limited to 16376 Mb/s
<7>[    2.771648] thunderbolt 0000:00:0d.3: 0: linked ports 1 <-> 2
<7>[    2.771650] thunderbolt 0000:00:0d.3: 0: linked ports 3 <-> 4
<7>[    2.778804] thunderbolt 0000:00:0d.3: 0: TMU: supports uni-directional mode
<7>[    2.778969] thunderbolt 0000:00:0d.3: 0: TMU: current mode: off
<7>[    2.781877] thunderbolt 0000:00:0d.3: 0: TMU: mode change off -> uni-directional, LowRes requested
<7>[    2.782883] thunderbolt 0000:00:0d.3: 0: TMU: mode set to: uni-directional, LowRes
<7>[    2.783397] thunderbolt 0000:00:0d.3: 0: resetting
<7>[    2.836160] thunderbolt 0000:00:0d.3: 0:5: DP IN resource available
<7>[    2.836996] thunderbolt 0000:00:0d.3: 0:6: DP IN resource available
<7>[    2.837069] thunderbolt 0000:00:0d.3: vgaarb: pci_notify
<6>[    2.837301] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
<6>[    2.837303] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
<6>[    2.837304] RAPL PMU: hw unit of domain package 2^-14 Joules
<6>[    2.837305] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
<6>[    2.837306] RAPL PMU: hw unit of domain psys 2^-14 Joules
<6>[    2.839921] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b2c8ec87c7, max_idle_ns: 440795278598 ns
<6>[    2.840096] clocksource: Switched to clocksource tsc
<6>[    2.840131] platform rtc_cmos: registered platform RTC device (no PNP device found)
<6>[    2.845805] workingset: timestamp_bits=62 max_order=23 bucket_order=0
<6>[    2.846604] squashfs: version 4.0 (2009/01/31) Phillip Lougher
<6>[    2.846622] 9p: Installing v9fs 9p2000 file system support
<6>[    2.851751] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
<6>[    2.851754] io scheduler mq-deadline registered
<6>[    2.851755] io scheduler kyber registered
<7>[    2.851908] pciehp: pcie_port_service_register = 0
<7>[    2.851921] pcieport 0000:00:06.0: vgaarb: pci_notify
<7>[    2.851926] pcieport 0000:00:06.0: runtime IRQ mapping not provided by arch
<7>[    2.852289] pcieport 0000:00:06.0: enabling bus mastering
<6>[    2.852421] pcieport 0000:00:06.0: PME: Signaling with IRQ 154
<7>[    2.852469] pcieport 0000:00:06.0: pciehp: Slot Capabilities      : 0x0044fd60
<7>[    2.852474] pcieport 0000:00:06.0: pciehp: Slot Status            : 0x0000
<7>[    2.852476] pcieport 0000:00:06.0: pciehp: Slot Control           : 0x0008
<6>[    2.852481] pcieport 0000:00:06.0: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<7>[    2.852494] pci_bus 0000:1c: dev 00, created physical slot 8
<7>[    2.852561] pcieport 0000:00:06.0: pciehp: pcie_enable_notification: SLOTCTRL 58 write cmd 1028
<7>[    2.852574] pcieport 0000:00:06.0: pciehp: pciehp_check_link_active: lnk_status = 1001
<7>[    2.852602] pcieport 0000:00:06.0: save config 0x00: 0x7e4d8086
<7>[    2.852608] pcieport 0000:00:06.0: save config 0x04: 0x00100507
<7>[    2.852610] pcieport 0000:00:06.0: save config 0x08: 0x06040020
<7>[    2.852614] pcieport 0000:00:06.0: save config 0x0c: 0x00810000
<7>[    2.852616] pcieport 0000:00:06.0: save config 0x10: 0x00000000
<7>[    2.852620] pcieport 0000:00:06.0: save config 0x14: 0x00000000
<7>[    2.852622] pcieport 0000:00:06.0: save config 0x18: 0x001c1c00
<7>[    2.852626] pcieport 0000:00:06.0: save config 0x1c: 0x00002020
<7>[    2.852628] pcieport 0000:00:06.0: save config 0x20: 0x9c309c20
<7>[    2.852632] pcieport 0000:00:06.0: save config 0x24: 0x59b15921
<7>[    2.852634] pcieport 0000:00:06.0: save config 0x28: 0x00000040
<7>[    2.852639] pcieport 0000:00:06.0: save config 0x2c: 0x00000040
<7>[    2.852640] pcieport 0000:00:06.0: save config 0x30: 0x00000000
<7>[    2.852645] pcieport 0000:00:06.0: save config 0x34: 0x00000040
<7>[    2.852646] pcieport 0000:00:06.0: save config 0x38: 0x00000000
<7>[    2.852651] pcieport 0000:00:06.0: save config 0x3c: 0x000201ff
<7>[    2.852705] pcieport 0000:00:06.0: vgaarb: pci_notify
<7>[    2.852718] pcieport 0000:00:06.1: vgaarb: pci_notify
<7>[    2.852722] pcieport 0000:00:06.1: runtime IRQ mapping not provided by arch
<6>[    2.853134] pcieport 0000:00:06.1: PME: Signaling with IRQ 155
<7>[    2.853162] pcieport 0000:00:06.1: save config 0x00: 0x7eca8086
<7>[    2.853164] pcieport 0000:00:06.1: save config 0x04: 0x00100507
<7>[    2.853166] pcieport 0000:00:06.1: save config 0x08: 0x06040010
<7>[    2.853168] pcieport 0000:00:06.1: save config 0x0c: 0x00810000
<7>[    2.853170] pcieport 0000:00:06.1: save config 0x10: 0x00000000
<7>[    2.853172] pcieport 0000:00:06.1: save config 0x14: 0x00000000
<7>[    2.853174] pcieport 0000:00:06.1: save config 0x18: 0x00040400
<7>[    2.853176] pcieport 0000:00:06.1: save config 0x1c: 0x000000f0
<7>[    2.853178] pcieport 0000:00:06.1: save config 0x20: 0xaac0aac0
<7>[    2.853180] pcieport 0000:00:06.1: save config 0x24: 0x0001fff1
<7>[    2.853182] pcieport 0000:00:06.1: save config 0x28: 0x00000000
<7>[    2.853184] pcieport 0000:00:06.1: save config 0x2c: 0x00000000
<7>[    2.853186] pcieport 0000:00:06.1: save config 0x30: 0x00000000
<7>[    2.853188] pcieport 0000:00:06.1: save config 0x34: 0x00000040
<7>[    2.853189] pcieport 0000:00:06.1: save config 0x38: 0x00000000
<7>[    2.853191] pcieport 0000:00:06.1: save config 0x3c: 0x000202ff
<7>[    2.853234] pcieport 0000:00:06.1: vgaarb: pci_notify
<7>[    2.853244] pcieport 0000:00:07.0: vgaarb: pci_notify
<7>[    2.853247] pcieport 0000:00:07.0: runtime IRQ mapping not provided by arch
<7>[    2.853556] pcieport 0000:00:07.0: enabling bus mastering
<6>[    2.853648] pcieport 0000:00:07.0: PME: Signaling with IRQ 156
<7>[    2.853685] pcieport 0000:00:07.0: pciehp: Slot Capabilities      : 0x00640060
<7>[    2.853687] pcieport 0000:00:07.0: pciehp: Slot Status            : 0x0108
<7>[    2.853689] pcieport 0000:00:07.0: pciehp: Slot Control           : 0x0000
<6>[    2.853691] pcieport 0000:00:07.0: pciehp: Slot #12 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<7>[    2.854038] pci_bus 0000:20: dev 00, created physical slot 12
<7>[    2.854099] pcieport 0000:00:07.0: pciehp: pcie_enable_notification: SLOTCTRL 58 write cmd 1028
<7>[    2.854109] pcieport 0000:00:07.0: pciehp: pciehp_check_link_active: lnk_status = 5041
<6>[    2.854120] pcieport 0000:00:07.0: pciehp: Slot(12): Card not present
<7>[    2.854136] pcieport 0000:00:07.0: save config 0x00: 0x7ec48086
<7>[    2.854135] pcieport 0000:00:07.0: pciehp: pciehp_unconfigure_device: domain:bus:dev = 0000:20:00
<7>[    2.854139] pcieport 0000:00:07.0: save config 0x04: 0x00100407
<7>[    2.854141] pcieport 0000:00:07.0: save config 0x08: 0x06040002
<7>[    2.854148] pcieport 0000:00:07.0: save config 0x0c: 0x00810000
<7>[    2.854148] pci 0000:21:04.0: PME# disabled
<7>[    2.854150] pcieport 0000:00:07.0: save config 0x10: 0x00000000
<7>[    2.854152] pcieport 0000:00:07.0: save config 0x14: 0x00000000
<7>[    2.854155] pci 0000:21:03.0: PME# disabled
<7>[    2.854157] pcieport 0000:00:07.0: save config 0x18: 0x00492000
<7>[    2.854158] pcieport 0000:00:07.0: save config 0x1c: 0x20006030
<7>[    2.854161] pci 0000:21:02.0: PME# disabled
<7>[    2.854164] pcieport 0000:00:07.0: save config 0x20: 0xaa109e00
<7>[    2.854164] pci 0000:21:01.0: PME# disabled
<7>[    2.854166] pcieport 0000:00:07.0: save config 0x24: 0x2bf11001
<7>[    2.854169] pci 0000:21:00.0: PME# disabled
<7>[    2.854171] pcieport 0000:00:07.0: save config 0x28: 0x00000040
<7>[    2.854174] pci 0000:20:00.0: PME# disabled
<7>[    2.854176] pcieport 0000:00:07.0: save config 0x2c: 0x00000040
<7>[    2.854181] pcieport 0000:00:07.0: save config 0x30: 0x00000000
<6>[    2.854180] pci_bus 0000:22: busn_res: [bus 22] is released
<7>[    2.854183] pcieport 0000:00:07.0: save config 0x34: 0x00000040
<7>[    2.854184] pcieport 0000:00:07.0: save config 0x38: 0x00000000
<7>[    2.854186] pcieport 0000:00:07.0: save config 0x3c: 0x000201ff
<7>[    2.854276] pci 0000:21:00.0: vgaarb: pci_notify
<7>[    2.854290] pcieport 0000:00:07.0: vgaarb: pci_notify
<7>[    2.854303] pcieport 0000:00:07.2: vgaarb: pci_notify
<7>[    2.854309] pcieport 0000:00:07.2: runtime IRQ mapping not provided by arch
<7>[    2.854647] pcieport 0000:00:07.2: enabling bus mastering
<6>[    2.854735] pcieport 0000:00:07.2: PME: Signaling with IRQ 157
<7>[    2.854771] pcieport 0000:00:07.2: pciehp: Slot Capabilities      : 0x00740060
<7>[    2.854773] pcieport 0000:00:07.2: pciehp: Slot Status            : 0x0000
<7>[    2.854775] pcieport 0000:00:07.2: pciehp: Slot Control           : 0x0000
<6>[    2.854777] pcieport 0000:00:07.2: pciehp: Slot #14 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<7>[    2.854788] pci_bus 0000:50: dev 00, created physical slot 14
<7>[    2.854863] pcieport 0000:00:07.2: pciehp: pcie_enable_notification: SLOTCTRL 58 write cmd 1028
<7>[    2.854872] pcieport 0000:00:07.2: pciehp: pciehp_check_link_active: lnk_status = 1001
<7>[    2.854900] pcieport 0000:00:07.2: save config 0x00: 0x7ec68086
<7>[    2.854902] pcieport 0000:00:07.2: save config 0x04: 0x00100407
<7>[    2.854904] pcieport 0000:00:07.2: save config 0x08: 0x06040002
<7>[    2.854906] pcieport 0000:00:07.2: save config 0x0c: 0x00810000
<7>[    2.854908] pcieport 0000:00:07.2: save config 0x10: 0x00000000
<7>[    2.854910] pcieport 0000:00:07.2: save config 0x14: 0x00000000
<7>[    2.854912] pcieport 0000:00:07.2: save config 0x18: 0x00795000
<7>[    2.854914] pcieport 0000:00:07.2: save config 0x1c: 0x00007070
<7>[    2.854915] pcieport 0000:00:07.2: save config 0x20: 0x9c109000
<7>[    2.854917] pcieport 0000:00:07.2: save config 0x24: 0x4bf13001
<7>[    2.854919] pcieport 0000:00:07.2: save config 0x28: 0x00000040
<7>[    2.854921] pcieport 0000:00:07.2: save config 0x2c: 0x00000040
<7>[    2.854923] pcieport 0000:00:07.2: save config 0x30: 0x00000000
<7>[    2.854924] pcieport 0000:00:07.2: save config 0x34: 0x00000040
<7>[    2.854926] pcieport 0000:00:07.2: save config 0x38: 0x00000000
<7>[    2.854928] pcieport 0000:00:07.2: save config 0x3c: 0x000203ff
<7>[    2.855009] pcieport 0000:00:07.2: vgaarb: pci_notify
<7>[    2.855022] pcieport 0000:00:1c.0: vgaarb: pci_notify
<7>[    2.855026] pcieport 0000:00:1c.0: runtime IRQ mapping not provided by arch
<7>[    2.855331] pcieport 0000:00:1c.0: enabling bus mastering
<6>[    2.855433] pcieport 0000:00:1c.0: PME: Signaling with IRQ 158
<7>[    2.855475] pcieport 0000:00:1c.0: pciehp: Slot Capabilities      : 0x0004fd60
<7>[    2.855480] pcieport 0000:00:1c.0: pciehp: Slot Status            : 0x0000
<7>[    2.855482] pcieport 0000:00:1c.0: pciehp: Slot Control           : 0x0008
<6>[    2.855487] pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<7>[    2.855496] pci_bus 0000:1d: dev 00, created physical slot 0
<7>[    2.855558] pcieport 0000:00:1c.0: pciehp: pcie_enable_notification: SLOTCTRL 58 write cmd 1028
<7>[    2.855569] pcieport 0000:00:1c.0: pciehp: pciehp_check_link_active: lnk_status = 1001
<7>[    2.855597] pcieport 0000:00:1c.0: save config 0x00: 0x7e388086
<7>[    2.855599] pcieport 0000:00:1c.0: save config 0x04: 0x00100507
<7>[    2.855603] pcieport 0000:00:1c.0: save config 0x08: 0x06040020
<7>[    2.855605] pcieport 0000:00:1c.0: save config 0x0c: 0x00810000
<7>[    2.855609] pcieport 0000:00:1c.0: save config 0x10: 0x00000000
<7>[    2.855611] pcieport 0000:00:1c.0: save config 0x14: 0x00000000
<7>[    2.855616] pcieport 0000:00:1c.0: save config 0x18: 0x001d1d00
<7>[    2.855618] pcieport 0000:00:1c.0: save config 0x1c: 0x00008080
<7>[    2.855622] pcieport 0000:00:1c.0: save config 0x20: 0xaab0aa20
<7>[    2.855624] pcieport 0000:00:1c.0: save config 0x24: 0x5a5159c1
<7>[    2.855628] pcieport 0000:00:1c.0: save config 0x28: 0x00000040
<7>[    2.855630] pcieport 0000:00:1c.0: save config 0x2c: 0x00000040
<7>[    2.855634] pcieport 0000:00:1c.0: save config 0x30: 0x00000000
<7>[    2.855636] pcieport 0000:00:1c.0: save config 0x34: 0x00000040
<7>[    2.855641] pcieport 0000:00:1c.0: save config 0x38: 0x00000000
<7>[    2.855642] pcieport 0000:00:1c.0: save config 0x3c: 0x000201ff
<7>[    2.855935] pci 0000:21:00.0: vgaarb: pci_notify
<7>[    2.855986] pci 0000:21:00.0: device released
<6>[    2.856010] pci_bus 0000:23: busn_res: [bus 23-2e] is released
<7>[    2.856083] pci 0000:21:01.0: vgaarb: pci_notify
<7>[    2.856167] pcieport 0000:00:1c.0: vgaarb: pci_notify
<7>[    2.856182] pcieport 0000:20:00.0: vgaarb: pci_notify
<7>[    2.856186] pcieport 0000:20:00.0: runtime IRQ mapping not provided by arch
<3>[    2.856191] pcieport 0000:20:00.0: Unable to change power state from D3cold to D0, device inaccessible
<7>[    2.856240] pcieport 0000:20:00.0: save config 0x00: 0xffffffff
<7>[    2.856241] pcieport 0000:20:00.0: save config 0x04: 0xffffffff
<7>[    2.856242] pcieport 0000:20:00.0: save config 0x08: 0xffffffff
<7>[    2.856243] pcieport 0000:20:00.0: save config 0x0c: 0xffffffff
<7>[    2.856244] pcieport 0000:20:00.0: save config 0x10: 0xffffffff
<7>[    2.856245] pcieport 0000:20:00.0: save config 0x14: 0xffffffff
<7>[    2.856246] pcieport 0000:20:00.0: save config 0x18: 0xffffffff
<7>[    2.856247] pcieport 0000:20:00.0: save config 0x1c: 0xffffffff
<7>[    2.856248] pcieport 0000:20:00.0: save config 0x20: 0xffffffff
<7>[    2.856249] pcieport 0000:20:00.0: save config 0x24: 0xffffffff
<7>[    2.856250] pcieport 0000:20:00.0: save config 0x28: 0xffffffff
<7>[    2.856251] pcieport 0000:20:00.0: save config 0x2c: 0xffffffff
<7>[    2.856252] pcieport 0000:20:00.0: save config 0x30: 0xffffffff
<7>[    2.856253] pcieport 0000:20:00.0: save config 0x34: 0xffffffff
<7>[    2.856254] pcieport 0000:20:00.0: save config 0x38: 0xffffffff
<7>[    2.856255] pcieport 0000:20:00.0: save config 0x3c: 0xffffffff
<7>[    2.856260] pcieport 0000:20:00.0: vgaarb: pci_notify
<7>[    2.856270] pcieport 0000:21:02.0: vgaarb: pci_notify
<7>[    2.856274] pcieport 0000:21:02.0: runtime IRQ mapping not provided by arch
<3>[    2.856275] pcieport 0000:21:02.0: Unable to change power state from D3cold to D0, device inaccessible
<7>[    2.856359] pcieport 0000:21:02.0: pciehp: Slot Capabilities      : 0x00040000
<7>[    2.856360] pcieport 0000:21:02.0: pciehp: Slot Status            : 0x0000
<7>[    2.856361] pcieport 0000:21:02.0: pciehp: Slot Control           : 0x0000
<6>[    2.856362] pcieport 0000:21:02.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
<7>[    2.856374] pci_bus 0000:2f: dev 00, created physical slot 0-1
<7>[    2.856449] pcieport 0000:21:02.0: pciehp: pcie_enable_notification: SLOTCTRL d8 write cmd 1028
<7>[    2.856462] pcieport 0000:21:02.0: save config 0x00: 0xffffffff
<7>[    2.856463] pcieport 0000:21:02.0: save config 0x04: 0xffffffff
<7>[    2.856464] pcieport 0000:21:02.0: save config 0x08: 0xffffffff
<7>[    2.856465] pcieport 0000:21:02.0: save config 0x0c: 0xffffffff
<7>[    2.856466] pcieport 0000:21:02.0: save config 0x10: 0xffffffff
<7>[    2.856467] pcieport 0000:21:02.0: save config 0x14: 0xffffffff
<7>[    2.856468] pcieport 0000:21:02.0: save config 0x18: 0xffffffff
<7>[    2.856469] pcieport 0000:21:02.0: save config 0x1c: 0xffffffff
<7>[    2.856470] pcieport 0000:21:02.0: save config 0x20: 0xffffffff
<7>[    2.856471] pcieport 0000:21:02.0: save config 0x24: 0xffffffff
<7>[    2.856472] pcieport 0000:21:02.0: save config 0x28: 0xffffffff
<7>[    2.856473] pcieport 0000:21:02.0: save config 0x2c: 0xffffffff
<7>[    2.856474] pcieport 0000:21:02.0: save config 0x30: 0xffffffff
<7>[    2.856475] pcieport 0000:21:02.0: save config 0x34: 0xffffffff
<7>[    2.856476] pcieport 0000:21:02.0: save config 0x38: 0xffffffff
<7>[    2.856477] pcieport 0000:21:02.0: save config 0x3c: 0xffffffff
<7>[    2.856482] pcieport 0000:21:02.0: vgaarb: pci_notify
<7>[    2.856491] pcieport 0000:21:03.0: vgaarb: pci_notify
<7>[    2.856496] pcieport 0000:21:03.0: runtime IRQ mapping not provided by arch
<3>[    2.856497] pcieport 0000:21:03.0: Unable to change power state from D3cold to D0, device inaccessible
<7>[    2.856588] pcieport 0000:21:03.0: pciehp: Slot Capabilities      : 0x00040000
<7>[    2.856590] pcieport 0000:21:03.0: pciehp: Slot Status            : 0x0000
<7>[    2.856591] pcieport 0000:21:03.0: pciehp: Slot Control           : 0x0000
<6>[    2.856592] pcieport 0000:21:03.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
<7>[    2.856601] pci_bus 0000:3b: dev 00, created physical slot 0-2
<7>[    2.856670] pcieport 0000:21:03.0: pciehp: pcie_enable_notification: SLOTCTRL d8 write cmd 1028
<7>[    2.856682] pcieport 0000:21:03.0: save config 0x00: 0xffffffff
<7>[    2.856683] pcieport 0000:21:03.0: save config 0x04: 0xffffffff
<7>[    2.856684] pcieport 0000:21:03.0: save config 0x08: 0xffffffff
<7>[    2.856685] pcieport 0000:21:03.0: save config 0x0c: 0xffffffff
<7>[    2.856686] pcieport 0000:21:03.0: save config 0x10: 0xffffffff
<7>[    2.856687] pcieport 0000:21:03.0: save config 0x14: 0xffffffff
<7>[    2.856688] pcieport 0000:21:03.0: save config 0x18: 0xffffffff
<7>[    2.856689] pcieport 0000:21:03.0: save config 0x1c: 0xffffffff
<7>[    2.856690] pcieport 0000:21:03.0: save config 0x20: 0xffffffff
<7>[    2.856691] pcieport 0000:21:03.0: save config 0x24: 0xffffffff
<7>[    2.856692] pcieport 0000:21:03.0: save config 0x28: 0xffffffff
<7>[    2.856693] pcieport 0000:21:03.0: save config 0x2c: 0xffffffff
<7>[    2.856694] pcieport 0000:21:03.0: save config 0x30: 0xffffffff
<7>[    2.856695] pcieport 0000:21:03.0: save config 0x34: 0xffffffff
<7>[    2.856696] pcieport 0000:21:03.0: save config 0x38: 0xffffffff
<7>[    2.856697] pcieport 0000:21:03.0: save config 0x3c: 0xffffffff
<7>[    2.856701] pcieport 0000:21:03.0: vgaarb: pci_notify
<7>[    2.856711] pcieport 0000:21:04.0: vgaarb: pci_notify
<7>[    2.856715] pcieport 0000:21:04.0: runtime IRQ mapping not provided by arch
<3>[    2.856716] pcieport 0000:21:04.0: Unable to change power state from D3cold to D0, device inaccessible
<7>[    2.856763] pcieport 0000:21:04.0: save config 0x00: 0xffffffff
<7>[    2.856764] pcieport 0000:21:04.0: save config 0x04: 0xffffffff
<7>[    2.856765] pcieport 0000:21:04.0: save config 0x08: 0xffffffff
<7>[    2.856766] pcieport 0000:21:04.0: save config 0x0c: 0xffffffff
<7>[    2.856767] pcieport 0000:21:04.0: save config 0x10: 0xffffffff
<7>[    2.856768] pcieport 0000:21:04.0: save config 0x14: 0xffffffff
<7>[    2.856769] pcieport 0000:21:04.0: save config 0x18: 0xffffffff
<7>[    2.856770] pcieport 0000:21:04.0: save config 0x1c: 0xffffffff
<7>[    2.856771] pcieport 0000:21:04.0: save config 0x20: 0xffffffff
<7>[    2.856772] pcieport 0000:21:04.0: save config 0x24: 0xffffffff
<7>[    2.856773] pcieport 0000:21:04.0: save config 0x28: 0xffffffff
<7>[    2.856774] pcieport 0000:21:04.0: save config 0x2c: 0xffffffff
<7>[    2.856775] pcieport 0000:21:04.0: save config 0x30: 0xffffffff
<7>[    2.856776] pcieport 0000:21:04.0: save config 0x34: 0xffffffff
<7>[    2.856777] pcieport 0000:21:04.0: save config 0x38: 0xffffffff
<7>[    2.856778] pcieport 0000:21:04.0: save config 0x3c: 0xffffffff
<7>[    2.856784] pcieport 0000:21:04.0: vgaarb: pci_notify
<6>[    2.856840] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
<7>[    2.856842] acpiphp_ibm: ibm_acpiphp_init
<7>[    2.857769] pci 0000:21:01.0: vgaarb: pci_notify
<7>[    2.857814] pci 0000:21:01.0: device released
<6>[    2.857835] pci_bus 0000:2f: busn_res: [bus 2f-3a] is released
<7>[    2.857902] pcieport 0000:21:02.0: vgaarb: pci_notify
<7>[    2.857956] pcieport 0000:21:02.0: vgaarb: pci_notify
<7>[    2.857979] pcieport 0000:21:02.0: pciehp: pcie_disable_notification: SLOTCTRL d8 write cmd 0
<6>[    2.858062] irq/18-pciehp (140) used greatest stack depth: 15192 bytes left
<4>[    2.858063] Oops: general protection fault, probably for non-canonical address 0x6b6b6b6b6b6b6b6b: 0000 [#1] PREEMPT SMP NOPTI
<4>[    2.858071] CPU: 13 UID: 0 PID: 137 Comm: irq/156-pciehp Not tainted 6.11.0-devel+ #3
<4>[    2.858090] Hardware name: LENOVO 21LVS1CV00/21LVS1CV00, BIOS N45ET18W (1.08 ) 07/08/2024
<4>[    2.858097] RIP: 0010:dev_driver_string+0x12/0x40
<4>[    2.858111] Code: 5c c3 cc cc cc cc 66 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 48 8b 47 68 48 85 c0 74 08 <48> 8b 00 c3 cc cc cc cc 48 8b 47 60 48 85 c0 75 ef 48 8b 97 a8 02
<4>[    2.858123] RSP: 0000:ffff9493009cfa00 EFLAGS: 00010202
<4>[    2.858132] RAX: 6b6b6b6b6b6b6b6b RBX: ffff8e53029cb918 RCX: 0000000000000000
<4>[    2.858139] RDX: ffffffffa586b18a RSI: ffff8e53029cb918 RDI: ffff8e53029cb918
<4>[    2.858144] RBP: ffff9493009cfb10 R08: 0000000000000000 R09: ffff8e5304f61000
<4>[    2.858150] R10: ffff9493009cfb20 R11: 0000000000005627 R12: ffffffffa64db188
<4>[    2.858156] R13: 6b6b6b6b6b6b6b6b R14: 0000000000000080 R15: ffff8e5302b1c0c0
<4>[    2.858161] FS:  0000000000000000(0000) GS:ffff8e5a50140000(0000) knlGS:0000000000000000
<4>[    2.858169] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[    2.858175] CR2: 0000000000000000 CR3: 000000030162e001 CR4: 0000000000f70ef0
<4>[    2.858182] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
<4>[    2.858187] DR3: 0000000000000000 DR6: 00000000ffff07f0 DR7: 0000000000000400
<4>[    2.858193] PKRU: 55555554
<4>[    2.858196] Call Trace:
<4>[    2.858201]  <TASK>
<4>[    2.858205]  ? die_addr+0x36/0x90
<4>[    2.858216]  ? exc_general_protection+0x1c1/0x3e0
<4>[    2.858227]  ? pci_remove_bus_device+0x91/0x140
<4>[    2.858239]  ? asm_exc_general_protection+0x26/0x30
<4>[    2.858250]  ? dev_driver_string+0x12/0x40
<4>[    2.858258]  __dynamic_dev_dbg+0x170/0x210
<4>[    2.858268]  ? trace_hardirqs_on+0x21/0x80
<4>[    2.858277]  ? _raw_spin_unlock_irqrestore+0x19/0x40
<4>[    2.858287]  pci_destroy_slot+0x59/0x60
<4>[    2.858296]  pciehp_remove+0x2e/0x50
<4>[    2.858304]  pcie_port_remove_service+0x30/0x50
<4>[    2.858311]  device_release_driver_internal+0x19f/0x200
<4>[    2.858322]  bus_remove_device+0xc6/0x130
<4>[    2.858329]  ? __pfx_remove_iter+0x10/0x10
<4>[    2.858335]  device_del+0x165/0x3f0
<4>[    2.858342]  ? __pfx_remove_iter+0x10/0x10
<4>[    2.858348]  device_unregister+0x17/0x60
<4>[    2.858355]  remove_iter+0x1f/0x30
<4>[    2.858361]  device_for_each_child+0x6a/0xb0
<4>[    2.858368]  pcie_portdrv_remove+0x2f/0x60
<4>[    2.858374]  pci_device_remove+0x3f/0xa0
<4>[    2.858383]  device_release_driver_internal+0x19f/0x200
<4>[    2.858392]  bus_remove_device+0xc6/0x130
<4>[    2.858398]  device_del+0x165/0x3f0
<4>[    2.858405]  ? trace_hardirqs_on+0x21/0x80
<4>[    2.858413]  pci_remove_bus_device+0x91/0x140
<4>[    2.858422]  pci_remove_bus_device+0x3e/0x140
<4>[    2.858430]  pciehp_unconfigure_device+0x98/0x160
<4>[    2.858439]  pciehp_disable_slot+0x69/0x130
<4>[    2.858447]  pciehp_handle_presence_or_link_change+0x281/0x4c0
<4>[    2.858456]  pciehp_ist+0x14a/0x150
<4>[    2.858463]  irq_thread_fn+0x20/0x60
<4>[    2.858474]  irq_thread+0x133/0x210
<4>[    2.858483]  ? __pfx_irq_thread_fn+0x10/0x10
<4>[    2.858492]  ? __pfx_irq_thread_dtor+0x10/0x10
<4>[    2.858502]  ? __pfx_irq_thread+0x10/0x10
<4>[    2.858511]  kthread+0xcd/0x100
<4>[    2.858519]  ? __pfx_kthread+0x10/0x10
<4>[    2.858526]  ret_from_fork+0x31/0x50
<4>[    2.858536]  ? __pfx_kthread+0x10/0x10
<4>[    2.858543]  ret_from_fork_asm+0x1a/0x30
<4>[    2.858553]  </TASK>
<4>[    2.858556] Modules linked in:
<4>[    2.858569] ---[ end trace 0000000000000000 ]---

ECC: No errors detected

[Index of Archives]     [DMA Engine]     [Linux Coverity]     [Linux USB]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Greybus]

  Powered by Linux