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

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

 



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.

After this the thread leaves the lock with pci_unlock_rescan_remove in pciehp_unconfigure_device. Now the second
thread/ISR will enter the lock. If the second thread belongs to a child bridge of the bridge which was already removed,
it will run into an UAF. This is because the parent bridge destroys all child bridges as well, but the second thread
gets the subordinate pointer before accessing the lock. This means it could be possible  hat the second thread uses the
already destroyed subordinate pointer which makes the subordinate invalid. Accessing the pci_bus structure via this
subordinate will definitely run into an UAF.

In addition we looked closer at pci_stop_and_remove_bus_device_locked() and noticed that while pci_stop_bus_device() is
also walking the ->devices list in reverse order, pci_remove_bus_device() isn't. Maybe it should, to ensure a consistent
order of destruction?

We addressed both with the following patch: v2-0001-PCI-pcihp-fix-subordinate-access-in-pciehp_unconf.patch

Whats your thoughts about this?


After applying this patch on top of 6.8.12 the initial UAF is gone (the one shown in dmesg-ramoops-kasan), but a
different UAF comes up (dmesg-ramoops-kasan-v2). This new one is more similar to the one which I reported initially on
Kernel 6.11. I think even though the UAF in dmesg-ramoops-kasan is not easy to reproduce on vanilla 6.11, because an
other one will happen, it is a valid fix which should be applied anyway because the code in 6.11 and 6.8.18 doesn't
differ in this area.
I attached a KASAN log as well where both patches are integrated: (v2-0001-PCI-pcihp-fix-subordinate-access-in-
pciehp_unconf.patch + PCI: Don't access freed bus in pci_slot_release() from Ilpo (dmesg-ramoops-kasan-v2+patch_ilpo).


In addition I am currently trying to reproduce this on vanilla 6.11 with activated KASAN but I was not lucky enough to
catch this until yet (without KASAN it is easy to reproduce for me).

Thank you & best regards,
Dennis



On Thu, 2024-09-19 at 10:06 +0200, Dennis Wassenberg wrote:
> Hi together,
> 
> we are facing into issues which seems to be PCI related and asking for your estimations.
> 
> Background:
> We want to boot up an Intel MeteorLake based system (e.g. Lenovo ThinkPad X13 Gen5) with the Lenovo Thunderbolt 4
> universal dock attached during boot. On some devices it is nearly 100% reproducible that the boot will fail. Other
> systems will never show this issue (e.g. older devices based on RaptorLake or AlderLake platform).
> 
> We did some debugging on this and came to the conclusion that there is a use-after-free in pci_slot_release.
> The Thunderbolt 4 Dock will expose a PCI hierarchy at first and shortly after that, due to the device is inaccessible,
> it will release the additional buses/ports. This seems to end up in a race where pci_slot_release accesses &slot->bus
> which as already freed:
> 
> 0000:00 [root bus]
>       -> 0000:00:07.0 [bridge to 20-49]
>                      -> 0000:20:00.0 [bridge to 21-49]
>                                     -> 0000:21:00.0 [bridge to 22]
>                                        0000:21:01.0 [bridge to 23-2e]
>                                        0000:21:02.0 [bridge to 2f-3a]
>                                        0000:21:03.0 [bridge to 3b-48]
>                                        0000:21:04.0 [bridge to 49]
>          0000:00:07.2 [bridge to 50-79]
> 
> 
> We are currently running on kernel 6.8.12. Because this kernel is out of support I tried it on 6.11. This kernel shows
> exactly the same issue. I attached two log files:
> dmesg-ramoops-0: Based on kernel 6.11 with added kernel command line option "slab_debug" in order to force a kernel
> Oops
> while accessing freed memory.
> dmesg-ramoops-0-pci_dbg: This it like dmesg-ramoops-0 with additional kernel command line option '"dyndbg=file
> drivers/pci/* +p" ignore_loglevel' in order to give you more insight whats happening on the pci bus.
> 
> I would appreciate any kind of help on this.
> 
> Thank you & best regards,
> Dennis
> 
> 

From 568132693bcf9d23ceb3a802be5cdaca6af4c6c7 Mon Sep 17 00:00:00 2001
From: Dennis Wassenberg <dennis.wassenberg@xxxxxxxxxxx>
Date: Wed, 18 Sep 2024 17:02:53 +0200
Subject: [PATCH v2] PCI: pcihp: fix subordinate access in
 pciehp_unconfigure_device()

The read of the ->subordinate member in pciehp_unconfigure_device()
happens outside of the rescan/remove lock, allowing a concurrent control
flow to invalidate it while the function is waiting for the lock. Case
in point is a thunderbolt dock which gets its hotplug bridges handled by
pciehp and acpiphp. While the former waits for the lock, the latter will
destroy the bus making the accesses in pciehp_unconfigure_device() and
below a use-after-free.

Fix this by reading the member only after taking the lock and bail out
if it's no longer valid.

Fix a similar pattern in pciehp_configure_device() too, even if this
would require even more events from happening concurrently.

v2:
- grab a reference to the subordinate to prevent it from going away
  early (how?!)
- walk the list of devices in reverse order in pci_remove_bus_device()
  too

Detected-by: PaX's MEMORY_SANITIZE feature
Reported-and-debugged-by: Dennis Wassenberg <dennis.wassenberg@xxxxxxxxxxx>
Fixes: c4ec84c7db0e ("PCI: hotplug: Use global PCI rescan-remove locking")
Signed-off-by: Mathias Krause <minipli@xxxxxxxxxxxxxx> # provide changelog
Signed-off-by: Mathias Krause <minipli@xxxxxxxxxxxxxx>
Signed-off-by: Dennis Wassenberg <dennis.wassenberg@xxxxxxxxxxx>
---
 drivers/pci/hotplug/pciehp_pci.c | 21 +++++++++++++++++----
 drivers/pci/remove.c             |  4 ++--
 2 files changed, 19 insertions(+), 6 deletions(-)

diff --git a/drivers/pci/hotplug/pciehp_pci.c b/drivers/pci/hotplug/pciehp_pci.c
index ad12515a4a12..6f86290aa40b 100644
--- a/drivers/pci/hotplug/pciehp_pci.c
+++ b/drivers/pci/hotplug/pciehp_pci.c
@@ -33,11 +33,18 @@ int pciehp_configure_device(struct controller *ctrl)
 {
 	struct pci_dev *dev;
 	struct pci_dev *bridge = ctrl->pcie->port;
-	struct pci_bus *parent = bridge->subordinate;
+	struct pci_bus *parent;
 	int num, ret = 0;
 
 	pci_lock_rescan_remove();
 
+	parent = bridge->subordinate;
+	if (!parent) {
+		ctrl_info(ctrl, "Subordinate vanished?!\n");
+		ret = -ENODEV;
+		goto out;
+	}
+
 	dev = pci_get_slot(parent, PCI_DEVFN(0, 0));
 	if (dev) {
 		/*
@@ -91,17 +98,21 @@ int pciehp_configure_device(struct controller *ctrl)
 void pciehp_unconfigure_device(struct controller *ctrl, bool presence)
 {
 	struct pci_dev *dev, *temp;
-	struct pci_bus *parent = ctrl->pcie->port->subordinate;
+	struct pci_bus *parent;
 	u16 command;
 
+	pci_lock_rescan_remove();
+
+	parent = pci_bus_get(ctrl->pcie->port->subordinate);
+	if (!parent)
+		goto out;
+
 	ctrl_dbg(ctrl, "%s: domain:bus:dev = %04x:%02x:00\n",
 		 __func__, pci_domain_nr(parent), parent->number);
 
 	if (!presence)
 		pci_walk_bus(parent, pci_dev_set_disconnected, NULL);
 
-	pci_lock_rescan_remove();
-
 	/*
 	 * Stopping an SR-IOV PF device removes all the associated VFs,
 	 * which will update the bus->devices list and confuse the
@@ -133,5 +144,7 @@ void pciehp_unconfigure_device(struct controller *ctrl, bool presence)
 		pci_dev_put(dev);
 	}
 
+	pci_bus_put(parent);
+out:
 	pci_unlock_rescan_remove();
 }
diff --git a/drivers/pci/remove.c b/drivers/pci/remove.c
index d749ea8250d6..d646ec38a632 100644
--- a/drivers/pci/remove.c
+++ b/drivers/pci/remove.c
@@ -90,7 +90,7 @@ static void pci_remove_bus_device(struct pci_dev *dev)
 	struct pci_dev *child, *tmp;
 
 	if (bus) {
-		list_for_each_entry_safe(child, tmp,
+		list_for_each_entry_safe_reverse(child, tmp,
 					 &bus->devices, bus_list)
 			pci_remove_bus_device(child);
 
@@ -155,7 +155,7 @@ void pci_remove_root_bus(struct pci_bus *bus)
 		return;
 
 	host_bridge = to_pci_host_bridge(bus->bridge);
-	list_for_each_entry_safe(child, tmp,
+	list_for_each_entry_safe_reverse(child, tmp,
 				 &bus->devices, bus_list)
 		pci_remove_bus_device(child);
 
-- 
2.30.2

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) #8 SMP PREEMPT_DYNAMIC Thu Sep 19 13:37:22 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=0x6e25f118 ESRT=0x6dd69818 
<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.000011] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
<7>[    0.000015] e820: remove [mem 0x000a0000-0x000fffff] usable
<6>[    0.000019] last_pfn = 0x870000 max_arch_pfn = 0x400000000
<6>[    0.000024] MTRR map: 8 entries (3 fixed + 5 variable; max 23), built from 10 variable MTRRs
<6>[    0.000026] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
<6>[    0.000634] x2apic: enabled by BIOS, switching to x2apic ops
<6>[    0.000635] last_pfn = 0x78000 max_arch_pfn = 0x400000000
<6>[    0.025537] Using GB pages for direct mapping
<4>[    0.025539] PAX: PCID detected
<4>[    0.025539] PAX: INVPCID detected
<6>[    0.028958] Secure boot disabled
<6>[    0.028959] RAMDISK: [mem 0x31ff6000-0x34c76fff]
<6>[    0.028960] Allocated new RAMDISK: [mem 0x86d000000-0x86fc80f5b]
<6>[    0.041993] Move RAMDISK from [mem 0x31ff6000-0x34c76f5b] to [mem 0x86d000000-0x86fc80f5b]
<6>[    0.042003] ACPI: Early table checksum verification disabled
<6>[    0.042008] ACPI: RSDP 0x000000003FAFE014 000024 (v02 LENOVO)
<6>[    0.042015] ACPI: XSDT 0x000000003FAFD228 00016C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042023] ACPI: FACP 0x000000004213A000 000114 (v06 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042032] ACPI: DSDT 0x00000000420D5000 061056 (v02 LENOVO ICL      00000002      01000013)
<6>[    0.042038] ACPI: FACS 0x000000003FA08000 000040
<6>[    0.042042] ACPI: SSDT 0x000000004221B000 00038C (v02 LENOVO Pmax_Dev 00000001 INTL 20210930)
<6>[    0.042045] ACPI: SSDT 0x000000004221A000 000689 (v02 LENOVO Cpu0Ist  00003000 INTL 20210930)
<6>[    0.042049] ACPI: SSDT 0x0000000042219000 0005E7 (v02 LENOVO Cpu0Hwp  00003000 INTL 20210930)
<6>[    0.042053] ACPI: SSDT 0x0000000042218000 0001AB (v02 LENOVO Cpu0Psd  00003000 INTL 20210930)
<6>[    0.042057] ACPI: SSDT 0x0000000042217000 000394 (v02 LENOVO Cpu0Cst  00003001 INTL 20210930)
<6>[    0.042060] ACPI: SSDT 0x0000000042215000 001BAF (v02 LENOVO ApIst    00003000 INTL 20210930)
<6>[    0.042064] ACPI: SSDT 0x0000000042213000 001620 (v02 LENOVO ApHwp    00003000 INTL 20210930)
<6>[    0.042068] ACPI: SSDT 0x0000000042211000 001349 (v02 LENOVO ApPsd    00003000 INTL 20210930)
<6>[    0.042072] ACPI: SSDT 0x0000000042210000 000FBB (v02 LENOVO ApCst    00003000 INTL 20210930)
<6>[    0.042075] ACPI: SSDT 0x000000004220C000 003BC8 (v02 LENOVO CpuSsdt  00003000 INTL 20210930)
<6>[    0.042079] ACPI: SSDT 0x000000004220B000 00059B (v02 LENOVO CtdpB    00001000 INTL 20210930)
<6>[    0.042083] ACPI: DTPR 0x0000000042209000 000088 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042087] ACPI: SSDT 0x0000000042186000 0012A6 (v02 LENOVO PDatTabl 00001000 INTL 20210930)
<6>[    0.042091] ACPI: SSDT 0x0000000042146000 002679 (v02 LENOVO IgfxSsdt 00003000 INTL 20210930)
<6>[    0.042095] ACPI: SSDT 0x000000004213C000 009BEE (v02 LENOVO TcssSsdt 00001000 INTL 20210930)
<6>[    0.042099] ACPI: ECDT 0x000000004213B000 000053 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042104] ACPI: HPET 0x0000000042139000 000038 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042108] ACPI: APIC 0x0000000042138000 000358 (v05 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042112] ACPI: MCFG 0x0000000042137000 00003C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042116] ACPI: SSDT 0x00000000420CF000 005EDB (v02 LENOVO MtlP_Rvp 00001000 INTL 20210930)
<6>[    0.042121] ACPI: SSDT 0x00000000420CE000 00027B (v02 LENOVO PID1Ssdt 00000010 INTL 20210930)
<6>[    0.042124] ACPI: SSDT 0x00000000420CC000 00123A (v02 LENOVO ProjSsdt 00000010 INTL 20210930)
<6>[    0.042129] ACPI: SSDT 0x00000000420C7000 00429C (v02 LENOVO DptfTabl 00001000 INTL 20210930)
<6>[    0.042132] ACPI: LPIT 0x00000000420C6000 0000CC (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042136] ACPI: WSMT 0x00000000420C5000 000028 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042140] ACPI: SSDT 0x00000000420BF000 00587D (v02 LENOVO TbtTypeC 00000000 INTL 20210930)
<6>[    0.042144] ACPI: DBGP 0x00000000420BE000 000034 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042148] ACPI: DBG2 0x00000000420BD000 000054 (v00 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042152] ACPI: NHLT 0x00000000420BC000 00096C (v00 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042156] ACPI: MSDM 0x00000000420BB000 000055 (v03 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042160] ACPI: SSDT 0x00000000420A5000 001043 (v02 LENOVO UsbCTabl 00001000 INTL 20210930)
<6>[    0.042164] ACPI: BATB 0x00000000420A3000 00004A (v02 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042168] ACPI: DMAR 0x00000000402A1000 000098 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042172] ACPI: FPDT 0x00000000402A0000 000044 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042176] ACPI: SSDT 0x000000004029E000 0018C6 (v02 LENOVO SocGpe   00003000 INTL 20210930)
<6>[    0.042180] ACPI: SSDT 0x000000004029B000 0028D3 (v02 LENOVO SocCmn   00003000 INTL 20210930)
<6>[    0.042184] ACPI: SDEV 0x000000004029A000 0000BC (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042188] ACPI: PHAT 0x0000000040271000 00080C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042191] ACPI: BGRT 0x0000000040270000 000038 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042195] ACPI: UEFI 0x000000003E9F4000 000076 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042197] ACPI: Reserving FACP table memory at [mem 0x4213a000-0x4213a113]
<6>[    0.042199] ACPI: Reserving DSDT table memory at [mem 0x420d5000-0x42136055]
<6>[    0.042200] ACPI: Reserving FACS table memory at [mem 0x3fa08000-0x3fa0803f]
<6>[    0.042201] ACPI: Reserving SSDT table memory at [mem 0x4221b000-0x4221b38b]
<6>[    0.042202] ACPI: Reserving SSDT table memory at [mem 0x4221a000-0x4221a688]
<6>[    0.042203] ACPI: Reserving SSDT table memory at [mem 0x42219000-0x422195e6]
<6>[    0.042204] ACPI: Reserving SSDT table memory at [mem 0x42218000-0x422181aa]
<6>[    0.042204] ACPI: Reserving SSDT table memory at [mem 0x42217000-0x42217393]
<6>[    0.042205] ACPI: Reserving SSDT table memory at [mem 0x42215000-0x42216bae]
<6>[    0.042206] ACPI: Reserving SSDT table memory at [mem 0x42213000-0x4221461f]
<6>[    0.042207] ACPI: Reserving SSDT table memory at [mem 0x42211000-0x42212348]
<6>[    0.042208] ACPI: Reserving SSDT table memory at [mem 0x42210000-0x42210fba]
<6>[    0.042208] ACPI: Reserving SSDT table memory at [mem 0x4220c000-0x4220fbc7]
<6>[    0.042209] ACPI: Reserving SSDT table memory at [mem 0x4220b000-0x4220b59a]
<6>[    0.042210] ACPI: Reserving DTPR table memory at [mem 0x42209000-0x42209087]
<6>[    0.042211] ACPI: Reserving SSDT table memory at [mem 0x42186000-0x421872a5]
<6>[    0.042211] ACPI: Reserving SSDT table memory at [mem 0x42146000-0x42148678]
<6>[    0.042212] ACPI: Reserving SSDT table memory at [mem 0x4213c000-0x42145bed]
<6>[    0.042213] ACPI: Reserving ECDT table memory at [mem 0x4213b000-0x4213b052]
<6>[    0.042214] ACPI: Reserving HPET table memory at [mem 0x42139000-0x42139037]
<6>[    0.042215] ACPI: Reserving APIC table memory at [mem 0x42138000-0x42138357]
<6>[    0.042216] ACPI: Reserving MCFG table memory at [mem 0x42137000-0x4213703b]
<6>[    0.042217] ACPI: Reserving SSDT table memory at [mem 0x420cf000-0x420d4eda]
<6>[    0.042217] ACPI: Reserving SSDT table memory at [mem 0x420ce000-0x420ce27a]
<6>[    0.042218] ACPI: Reserving SSDT table memory at [mem 0x420cc000-0x420cd239]
<6>[    0.042219] ACPI: Reserving SSDT table memory at [mem 0x420c7000-0x420cb29b]
<6>[    0.042220] ACPI: Reserving LPIT table memory at [mem 0x420c6000-0x420c60cb]
<6>[    0.042221] ACPI: Reserving WSMT table memory at [mem 0x420c5000-0x420c5027]
<6>[    0.042222] ACPI: Reserving SSDT table memory at [mem 0x420bf000-0x420c487c]
<6>[    0.042223] ACPI: Reserving DBGP table memory at [mem 0x420be000-0x420be033]
<6>[    0.042223] ACPI: Reserving DBG2 table memory at [mem 0x420bd000-0x420bd053]
<6>[    0.042224] ACPI: Reserving NHLT table memory at [mem 0x420bc000-0x420bc96b]
<6>[    0.042225] ACPI: Reserving MSDM table memory at [mem 0x420bb000-0x420bb054]
<6>[    0.042226] ACPI: Reserving SSDT table memory at [mem 0x420a5000-0x420a6042]
<6>[    0.042226] ACPI: Reserving BATB table memory at [mem 0x420a3000-0x420a3049]
<6>[    0.042227] ACPI: Reserving DMAR table memory at [mem 0x402a1000-0x402a1097]
<6>[    0.042228] ACPI: Reserving FPDT table memory at [mem 0x402a0000-0x402a0043]
<6>[    0.042228] ACPI: Reserving SSDT table memory at [mem 0x4029e000-0x4029f8c5]
<6>[    0.042229] ACPI: Reserving SSDT table memory at [mem 0x4029b000-0x4029d8d2]
<6>[    0.042230] ACPI: Reserving SDEV table memory at [mem 0x4029a000-0x4029a0bb]
<6>[    0.042231] ACPI: Reserving PHAT table memory at [mem 0x40271000-0x4027180b]
<6>[    0.042231] ACPI: Reserving BGRT table memory at [mem 0x40270000-0x40270037]
<6>[    0.042232] ACPI: Reserving UEFI table memory at [mem 0x3e9f4000-0x3e9f4075]
<6>[    0.042385] APIC: Switched APIC routing to: cluster x2apic
<6>[    0.042494] Zone ranges:
<6>[    0.042497]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
<6>[    0.042499]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
<6>[    0.042500]   Normal   [mem 0x0000000100000000-0x000000086fffffff]
<6>[    0.042502] Movable zone start for each node
<6>[    0.042502] Early memory node ranges
<6>[    0.042503]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
<6>[    0.042504]   node   0: [mem 0x0000000000100000-0x000000003e9f3fff]
<6>[    0.042505]   node   0: [mem 0x00000000424ff000-0x00000000744fefff]
<6>[    0.042506]   node   0: [mem 0x0000000077fff000-0x0000000077ffffff]
<6>[    0.042506]   node   0: [mem 0x0000000100000000-0x0000000187ffffff]
<6>[    0.042507]   node   0: [mem 0x000000018a000000-0x000000086fffffff]
<6>[    0.042509] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fffffff]
<6>[    0.042514] On node 0, zone DMA: 1 pages in unavailable ranges
<6>[    0.042559] On node 0, zone DMA: 96 pages in unavailable ranges
<6>[    0.047664] On node 0, zone DMA32: 15115 pages in unavailable ranges
<6>[    0.047878] On node 0, zone DMA32: 15104 pages in unavailable ranges
<6>[    0.132564] On node 0, zone Normal: 8192 pages in unavailable ranges
<6>[    0.515854] kasan: KernelAddressSanitizer initialized
<6>[    0.516604] ACPI: PM-Timer IO Port: 0x1808
<6>[    0.516621] ACPI: X2APIC_NMI (uid[0xffffffff] high level lint[0x1])
<6>[    0.516660] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
<6>[    0.516663] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
<6>[    0.516666] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
<6>[    0.516671] ACPI: Using ACPI (MADT) for SMP configuration information
<6>[    0.516673] ACPI: HPET id: 0x8086a201 base: 0xfed00000
<6>[    0.516678] TSC deadline timer available
<6>[    0.516680] smpboot: Allowing 18 CPUs, 0 hotplug CPUs
<6>[    0.516693] [mem 0x88800000-0xbfffffff] available for PCI devices
<6>[    0.516699] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
<6>[    0.528321] setup_percpu: NR_CPUS:32 nr_cpumask_bits:18 nr_cpu_ids:18 nr_node_ids:1
<6>[    0.538268] percpu: Embedded 1287 pages/cpu s222504 r8192 d5040856 u6291456
<7>[    0.538283] pcpu-alloc: s222504 r8192 d5040856 u6291456 alloc=3*2097152
<7>[    0.538289] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 
<7>[    0.538305] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 
<7>[    0.538321] pcpu-alloc: [0] 16 [0] 17 
<5>[    0.538406] 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.538604] DMAR: IOMMU enabled
<5>[    0.538606] Unknown kernel command line parameters "sina_toram BOOT_IMAGE=/isolinux/bzImage", will be passed to user space.
<5>[    0.538620] random: crng init done
<6>[    0.541483] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
<6>[    0.542914] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
<6>[    0.544492] Built 1 zonelists, mobility grouping on.  Total pages: 8122573
<6>[    0.544496] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
<6>[    0.544497] stackdepot: allocating hash table via alloc_large_system_hash
<6>[    0.544499] stackdepot hash table entries: 1048576 (order: 12, 16777216 bytes, linear)
<6>[    0.545908] software IO TLB: area num 32.
<6>[    3.424523] Memory: 27931004K/33007184K available (62418K kernel code, 20865K rwdata, 25524K rodata, 12288K init, 4052K bss, 5076180K reserved, 0K cma-reserved)
<6>[    3.424792] PAX: initializing 52201 (978) autoslabs for vmlinux
<6>[    3.658239] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=18, Nodes=1
<6>[    3.658291] ftrace: allocating 60872 entries in 238 pages
<6>[    3.755462] ftrace: allocated 238 pages with 6 groups
<6>[    3.758117] Dynamic Preempt: voluntary
<6>[    3.758493] rcu: Preemptible hierarchical RCU implementation.
<6>[    3.758494] rcu: 	RCU event tracing is enabled.
<6>[    3.758495] rcu: 	RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=18.
<6>[    3.758496] 	Trampoline variant of Tasks RCU enabled.
<6>[    3.758497] 	Rude variant of Tasks RCU enabled.
<6>[    3.758498] 	Tracing variant of Tasks RCU enabled.
<6>[    3.758500] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
<6>[    3.758500] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=18
<6>[    3.768558] NR_IRQS: 4352, nr_irqs: 2200, preallocated irqs: 16
<6>[    3.769019] rcu: srcu_init: Setting srcu_struct sizes based on contention.
<6>[    3.769285] Console: colour dummy device 80x25
<6>[    3.769289] printk: legacy console [tty1] enabled
<6>[    3.769324] ACPI: Core revision 20230628
<6>[    3.769975] hpet: HPET dysfunctional in PC10. Force disabled.
<6>[    3.769977] APIC: Switch to symmetric I/O mode setup
<6>[    3.769980] DMAR: Host address width 42
<6>[    3.769981] DMAR: DRHD base: 0x000000fc800000 flags: 0x0
<6>[    3.770011] DMAR: dmar0: reg_base_addr fc800000 ver 7:0 cap c9de008cee690462 ecap 12ca9a00f0ef5e
<6>[    3.770014] DMAR: DRHD base: 0x000000fc801000 flags: 0x1
<6>[    3.770020] DMAR: dmar1: reg_base_addr fc801000 ver 7:0 cap c9de008cee690462 ecap 12ca9a00f0efde
<6>[    3.770022] DMAR: SATC flags: 0x1
<6>[    3.770035] DMAR-IR: IOAPIC id 2 under DRHD base  0xfc801000 IOMMU 1
<6>[    3.770036] DMAR-IR: HPET id 0 under DRHD base 0xfc801000
<6>[    3.770037] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
<6>[    3.771602] DMAR-IR: Enabled IRQ remapping in x2apic mode
<6>[    3.775730] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b2c8ec87c7, max_idle_ns: 440795278598 ns
<6>[    3.775742] Calibrating delay loop (skipped), value calculated using timer frequency.. 5990.40 BogoMIPS (lpj=2995200)
<6>[    3.775806] CPU0: Thermal monitoring enabled (TM1)
<6>[    3.775809] x86/cpu: User Mode Instruction Prevention (UMIP) activated
<6>[    3.775821] CET detected: Indirect Branch Tracking enabled
<6>[    3.776007] process: using mwait in idle threads
<6>[    3.776012] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
<6>[    3.776013] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
<6>[    3.776017] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization (complete, automated)
<6>[    3.776023] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
<6>[    3.776024] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
<6>[    3.776030] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
<6>[    3.776033] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
<6>[    3.776046] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
<6>[    3.776047] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
<6>[    3.776048] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
<6>[    3.776049] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
<6>[    3.776050] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
<6>[    3.776052] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
<6>[    3.776053] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
<6>[    3.776054] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
<6>[    3.776055] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
<6>[    3.776736] Freeing SMP alternatives memory: 44K
<6>[    3.776736] pid_max: default: 32768 minimum: 501
<6>[    3.776736] LSM: initializing lsm=capability,sina
<6>[    3.776736] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
<6>[    3.776736] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
<6>[    3.776736] smpboot: CPU0: Intel(R) Core(TM) Ultra 5 125H (family: 0x6, model: 0xaa, stepping: 0x4)
<6>[    3.776736] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.776736] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.776736] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.776736] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Meteorlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
<6>[    3.776736] core: cpu_core PMU driver: 
<6>[    3.776736] ... version:                5
<6>[    3.776736] ... bit width:              48
<6>[    3.776736] ... generic registers:      8
<6>[    3.776736] ... value mask:             0000ffffffffffff
<6>[    3.776736] ... max period:             00007fffffffffff
<6>[    3.776736] ... fixed-purpose events:   4
<6>[    3.776736] ... event mask:             0001000f000000ff
<6>[    3.776736] signal: max sigframe size: 3232
<6>[    3.776736] Estimated ratio of average max frequency by base frequency (times 1024): 1467
<6>[    3.776736] rcu: Hierarchical SRCU implementation.
<6>[    3.776736] rcu: 	Max phase no-delay instances is 400.
<6>[    3.778594] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
<6>[    3.778923] smp: Bringing up secondary CPUs ...
<6>[    3.779056] smpboot: x86: Booting SMP configuration:
<6>[    3.779057] .... node  #0, CPUs:        #1  #3  #6  #8  #9 #10 #11 #12 #13 #14 #15 #16 #17
<6>[    0.007577] core: cpu_atom PMU driver: PEBS-via-PT 
<6>[    0.007577] ... version:                5
<6>[    0.007577] ... bit width:              48
<6>[    0.007577] ... generic registers:      8
<6>[    0.007577] ... value mask:             0000ffffffffffff
<6>[    0.007577] ... max period:             00007fffffffffff
<6>[    0.007577] ... fixed-purpose events:   3
<6>[    0.007577] ... event mask:             00000007000000ff
<4>[    3.790926]   #2  #4  #5  #7
<6>[    3.815309] smp: Brought up 1 node, 14 CPUs
<6>[    3.815320] smpboot: Max logical packages: 2
<6>[    3.815322] smpboot: Total of 14 processors activated (83865.60 BogoMIPS)
<6>[    3.817929] devtmpfs: initialized
<6>[    3.821145] ACPI: PM: Registering ACPI NVS region [mem 0x3e9f4000-0x3fa2efff] (17018880 bytes)
<6>[    3.821209] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
<6>[    3.821221] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
<6>[    3.821793] pinctrl core: initialized pinctrl subsystem
<6>[    3.822037] PM: RTC time: 15:49:18, date: 2024-09-19
<6>[    3.822200] NET: Registered PF_NETLINK/PF_ROUTE protocol family
<6>[    3.822557] ramoops: using module parameters
<6>[    3.822776] ramoops: uncorrectable error in header
<6>[    3.822866] ramoops: uncorrectable error in header
<6>[    3.822952] ramoops: uncorrectable error in header
<6>[    3.823037] ramoops: uncorrectable error in header
<6>[    3.823154] ramoops: uncorrectable error in header
<6>[    3.823243] ramoops: uncorrectable error in header
<6>[    3.823333] ramoops: uncorrectable error in header
<6>[    3.823419] ramoops: uncorrectable error in header
<6>[    3.823508] ramoops: uncorrectable error in header
<6>[    3.823596] ramoops: uncorrectable error in header
<6>[    3.824779] pstore: Using crash dump compression: deflate
<6>[    3.824782] pstore: Registered ramoops as persistent store backend
<6>[    3.824783] ramoops: using 0x2000000@0x188000000, ecc: 16
<6>[    3.825019] thermal_sys: Registered thermal governor 'step_wise'
<6>[    3.825021] thermal_sys: Registered thermal governor 'user_space'
<6>[    3.825079] cpuidle: using governor menu
<6>[    3.825079] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
<6>[    3.825087] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
<6>[    3.825087] PCI: ECAM [mem 0xc0000000-0xcfffffff] reserved as E820 entry
<6>[    3.831736] PCI: Using configuration type 1 for base access
<6>[    3.832782] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
<6>[    3.832830] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
<6>[    3.832830] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
<6>[    3.832950] ACPI: Added _OSI(Module Device)
<6>[    3.832950] ACPI: Added _OSI(Processor Device)
<6>[    3.832950] ACPI: Added _OSI(3.0 _SCP Extensions)
<6>[    3.832951] ACPI: Added _OSI(Processor Aggregator Device)
<6>[    4.288807] ACPI: 23 ACPI AML tables successfully acquired and loaded
<6>[    4.297334] ACPI: EC: EC started
<6>[    4.297335] ACPI: EC: interrupt blocked
<6>[    4.298245] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
<6>[    4.298247] ACPI: EC: Boot ECDT EC used to handle transactions
<5>[    4.301148] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
<6>[    5.203338] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
<6>[    5.203347] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
<6>[    5.231118] ACPI: _OSC evaluated successfully for all CPUs
<6>[    5.231121] ACPI: Interpreter enabled
<6>[    5.231209] ACPI: PM: (supports S0 S5)
<6>[    5.231212] ACPI: Using IOAPIC for interrupt routing
<6>[    5.231361] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
<6>[    5.231363] PCI: Ignoring E820 reservations for host bridge windows
<6>[    5.235544] ACPI: Enabled 10 GPEs in block 00 to 7F
<6>[    5.235566] ACPI: Enabled 8 GPEs in block 80 to DF
<6>[    5.251919] ACPI: \_SB_.PC00.LPCB.EC__.PUBS: New power resource
<6>[    5.271519] ACPI: \_SB_.PC00.XHCI.RHUB.HS08.WWPR: New power resource
<6>[    5.336728] ACPI: \_SB_.PC00.RP01.PXP_: New power resource
<6>[    5.361947] ACPI: \_SB_.PC00.RP06.PXP_: New power resource
<6>[    5.372451] ACPI: \_SB_.PC00.RP07.PXP_: New power resource
<6>[    5.392383] ACPI: \_SB_.PC00.RP10.PXP_: New power resource
<6>[    5.414130] ACPI: \_SB_.PC00.TBT0: New power resource
<6>[    5.414666] ACPI: \_SB_.PC00.TBT1: New power resource
<6>[    5.415204] ACPI: \_SB_.PC00.D3C_: New power resource
<6>[    5.553322] ACPI: \PIN_: New power resource
<6>[    5.553459] ACPI: \PINP: New power resource
<6>[    5.557534] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
<6>[    5.557546] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
<6>[    5.567943] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
<6>[    5.579573] PCI host bridge to bus 0000:00
<6>[    5.579586] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
<6>[    5.579589] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
<6>[    5.579592] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
<6>[    5.579594] pci_bus 0000:00: root bus resource [mem 0x90000000-0xbfffffff window]
<6>[    5.579596] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x3ffbfffffff window]
<6>[    5.579601] pci_bus 0000:00: root bus resource [bus 00-fe]
<6>[    5.722946] pci 0000:00:00.0: [8086:7d14] type 00 class 0x060000 conventional PCI endpoint
<6>[    5.723460] pci 0000:00:02.0: [8086:7d55] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
<6>[    5.723476] pci 0000:00:02.0: BAR 0 [mem 0x4058000000-0x4058ffffff 64bit pref]
<6>[    5.723487] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
<6>[    5.723531] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
<6>[    5.723536] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
<6>[    5.723588] pci 0000:00:02.0: PME# supported from D0 D3hot
<6>[    5.725322] pci 0000:00:04.0: [8086:7d03] type 00 class 0x118000 conventional PCI endpoint
<6>[    5.725339] pci 0000:00:04.0: BAR 0 [mem 0x405a6c0000-0x405a6dffff 64bit]
<6>[    5.729059] pci 0000:00:06.0: [8086:7e4d] type 01 class 0x060400 PCIe Root Port
<6>[    5.729089] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[    5.729105] pci 0000:00:06.0:   bridge window [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[    5.729215] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
<6>[    5.738544] pci 0000:00:06.1: [8086:7eca] type 01 class 0x060400 PCIe Root Port
<6>[    5.738574] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[    5.738581] pci 0000:00:06.1:   bridge window [mem 0xaac00000-0xaacfffff]
<6>[    5.738685] pci 0000:00:06.1: PME# supported from D0 D3hot D3cold
<6>[    5.748800] pci 0000:00:07.0: [8086:7ec4] type 01 class 0x060400 PCIe Root Port
<6>[    5.748829] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[    5.748835] pci 0000:00:07.0:   bridge window [mem 0x9e000000-0xaa1fffff]
<6>[    5.748845] pci 0000:00:07.0:   bridge window [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[    5.749075] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
<6>[    5.758011] pci 0000:00:07.2: [8086:7ec6] type 01 class 0x060400 PCIe Root Port
<6>[    5.758040] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[    5.758047] pci 0000:00:07.2:   bridge window [mem 0x90000000-0x9c1fffff]
<6>[    5.758058] pci 0000:00:07.2:   bridge window [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[    5.758280] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
<6>[    5.767215] pci 0000:00:08.0: [8086:7e4c] type 00 class 0x088000 conventional PCI endpoint
<6>[    5.767233] pci 0000:00:08.0: BAR 0 [mem 0x405a70f000-0x405a70ffff 64bit]
<6>[    5.767699] pci 0000:00:0a.0: [8086:7d0d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
<6>[    5.767709] pci 0000:00:0a.0: BAR 0 [mem 0x405a680000-0x405a6bffff 64bit]
<6>[    5.767728] pci 0000:00:0a.0: enabling Extended Tags
<6>[    5.767913] pci 0000:00:0b.0: [8086:7d1d] type 00 class 0x120000 PCIe Root Complex Integrated Endpoint
<6>[    5.767924] pci 0000:00:0b.0: BAR 0 [mem 0x4050000000-0x4057ffffff 64bit]
<6>[    5.767938] pci 0000:00:0b.0: BAR 4 [mem 0x405a70e000-0x405a70efff 64bit]
<6>[    5.768372] pci 0000:00:0d.0: [8086:7ec0] type 00 class 0x0c0330 conventional PCI endpoint
<6>[    5.768387] pci 0000:00:0d.0: BAR 0 [mem 0x405a6f0000-0x405a6fffff 64bit]
<6>[    5.768454] pci 0000:00:0d.0: PME# supported from D3hot D3cold
<6>[    5.774366] pci 0000:00:0d.2: [8086:7ec2] type 00 class 0x0c0340 conventional PCI endpoint
<6>[    5.774383] pci 0000:00:0d.2: BAR 0 [mem 0x405a640000-0x405a67ffff 64bit]
<6>[    5.774394] pci 0000:00:0d.2: BAR 2 [mem 0x405a70d000-0x405a70dfff 64bit]
<6>[    5.774453] pci 0000:00:0d.2: supports D1 D2
<6>[    5.774455] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.776571] pci 0000:00:0d.3: [8086:7ec3] type 00 class 0x0c0340 conventional PCI endpoint
<6>[    5.776588] pci 0000:00:0d.3: BAR 0 [mem 0x405a600000-0x405a63ffff 64bit]
<6>[    5.776599] pci 0000:00:0d.3: BAR 2 [mem 0x405a70c000-0x405a70cfff 64bit]
<6>[    5.776658] pci 0000:00:0d.3: supports D1 D2
<6>[    5.776659] pci 0000:00:0d.3: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.778813] pci 0000:00:14.0: [8086:7e7d] type 00 class 0x0c0330 conventional PCI endpoint
<6>[    5.778830] pci 0000:00:14.0: BAR 0 [mem 0x405a6e0000-0x405a6effff 64bit]
<6>[    5.778903] pci 0000:00:14.0: PME# supported from D3hot D3cold
<6>[    5.784933] pci 0000:00:14.2: [8086:7e7f] type 00 class 0x050000 conventional PCI endpoint
<6>[    5.784951] pci 0000:00:14.2: BAR 0 [mem 0x405a704000-0x405a707fff 64bit]
<6>[    5.784964] pci 0000:00:14.2: BAR 2 [mem 0x405a70b000-0x405a70bfff 64bit]
<6>[    5.785232] pci 0000:00:15.0: [8086:7e78] type 00 class 0x0c8000 conventional PCI endpoint
<6>[    5.785283] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
<6>[    5.789047] pci 0000:00:16.0: [8086:7e70] type 00 class 0x078000 conventional PCI endpoint
<6>[    5.789067] pci 0000:00:16.0: BAR 0 [mem 0x405a709000-0x405a709fff 64bit]
<6>[    5.789161] pci 0000:00:16.0: PME# supported from D3hot
<6>[    5.795028] pci 0000:00:1c.0: [8086:7e38] type 01 class 0x060400 PCIe Root Port
<6>[    5.795056] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<6>[    5.795065] pci 0000:00:1c.0:   bridge window [mem 0xaa200000-0xaabfffff]
<6>[    5.795077] pci 0000:00:1c.0:   bridge window [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[    5.796936] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
<6>[    5.807063] pci 0000:00:1f.0: [8086:7e02] type 00 class 0x060100 conventional PCI endpoint
<6>[    5.810868] pci 0000:00:1f.3: [8086:7e28] type 00 class 0x040380 conventional PCI endpoint
<6>[    5.810920] pci 0000:00:1f.3: BAR 0 [mem 0x405a700000-0x405a703fff 64bit]
<6>[    5.810996] pci 0000:00:1f.3: BAR 4 [mem 0x4059000000-0x40591fffff 64bit]
<6>[    5.811123] pci 0000:00:1f.3: PME# supported from D3hot D3cold
<6>[    5.811529] pci 0000:00:1f.4: [8086:7e22] type 00 class 0x0c0500 conventional PCI endpoint
<6>[    5.811551] pci 0000:00:1f.4: BAR 0 [mem 0x405a708000-0x405a7080ff 64bit]
<6>[    5.811577] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
<6>[    5.815200] pci 0000:00:1f.5: [8086:7e23] type 00 class 0x0c8000 conventional PCI endpoint
<6>[    5.815236] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
<6>[    5.815632] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[    5.815787] pci 0000:04:00.0: [1cc4:660c] type 00 class 0x010802 PCIe Endpoint
<6>[    5.815807] pci 0000:04:00.0: BAR 0 [mem 0xaac00000-0xaac03fff 64bit]
<6>[    5.816544] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[    5.816704] pci 0000:20:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Upstream Port
<6>[    5.816760] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[    5.816775] pci 0000:20:00.0:   bridge window [mem 0x9e000000-0xa9ffffff]
<6>[    5.816794] pci 0000:20:00.0:   bridge window [mem 0x4010000000-0x402befffff 64bit pref]
<6>[    5.816816] pci 0000:20:00.0: enabling Extended Tags
<6>[    5.817014] pci 0000:20:00.0: supports D1 D2
<6>[    5.817016] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.817129] 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.819770] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[    5.819939] pci 0000:21:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.819995] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[    5.820051] pci 0000:21:00.0: enabling Extended Tags
<6>[    5.820267] pci 0000:21:00.0: supports D1 D2
<6>[    5.820268] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.820689] pci 0000:21:01.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.820745] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[    5.820760] pci 0000:21:01.0:   bridge window [mem 0xa6000000-0xa9ffffff]
<6>[    5.820779] pci 0000:21:01.0:   bridge window [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[    5.820804] pci 0000:21:01.0: enabling Extended Tags
<6>[    5.821025] pci 0000:21:01.0: supports D1 D2
<6>[    5.821026] pci 0000:21:01.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.821422] pci 0000:21:02.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.821478] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[    5.821493] pci 0000:21:02.0:   bridge window [mem 0xa2000000-0xa5ffffff]
<6>[    5.821512] pci 0000:21:02.0:   bridge window [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[    5.821537] pci 0000:21:02.0: enabling Extended Tags
<6>[    5.821755] pci 0000:21:02.0: supports D1 D2
<6>[    5.821757] pci 0000:21:02.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.822159] pci 0000:21:03.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.822216] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[    5.822231] pci 0000:21:03.0:   bridge window [mem 0x9e000000-0xa1ffffff]
<6>[    5.822250] pci 0000:21:03.0:   bridge window [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[    5.822275] pci 0000:21:03.0: enabling Extended Tags
<6>[    5.822504] pci 0000:21:03.0: supports D1 D2
<6>[    5.822506] pci 0000:21:03.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.822917] pci 0000:21:04.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.822973] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[    5.823029] pci 0000:21:04.0: enabling Extended Tags
<6>[    5.823250] pci 0000:21:04.0: supports D1 D2
<6>[    5.823252] pci 0000:21:04.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.823661] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[    5.823796] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[    5.823931] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[    5.824066] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[    5.824203] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[    5.824349] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[    5.824543] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[    5.824666] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<7>[    5.824714] pci_bus 0000:00: on NUMA node 0
<6>[    5.868817] ACPI: \_SB_.PEPD: Duplicate LPS0 _DSM functions (mask: 0x1)
<6>[   12.487666] Low-power S0 idle used by default for system suspend
<6>[   12.493952] ACPI: EC: interrupt unblocked
<6>[   12.493955] ACPI: EC: event unblocked
<6>[   12.493976] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
<6>[   12.493979] ACPI: EC: GPE=0x6e
<6>[   12.493981] ACPI: \_SB_.PC00.LPCB.EC__: Boot ECDT EC initialization complete
<6>[   12.493988] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
<6>[   12.494298] iommu: Default domain type: Translated
<6>[   12.494301] iommu: DMA domain TLB invalidation policy: lazy mode
<5>[   12.494547] SCSI subsystem initialized
<7>[   12.494756] libata version 3.00 loaded.
<6>[   12.494846] ACPI: bus type USB registered
<6>[   12.494904] usbcore: registered new interface driver usbfs
<6>[   12.494912] usbcore: registered new interface driver hub
<6>[   12.494912] usbcore: registered new device driver usb
<6>[   12.495070] pps_core: LinuxPPS API ver. 1 registered
<6>[   12.495072] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
<6>[   12.495087] PTP clock support registered
<6>[   12.495231] Advanced Linux Sound Architecture Driver Initialized.
<6>[   12.496329] NetLabel: Initializing
<6>[   12.496331] NetLabel:  domain hash size = 128
<6>[   12.496332] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
<6>[   12.496444] NetLabel:  unlabeled traffic allowed by default
<6>[   12.496518] PCI: Using ACPI for IRQ routing
<7>[   12.515140] PCI: pci_cache_line_size set to 64 bytes
<6>[   12.515261] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
<7>[   12.515383] e820: reserve RAM buffer [mem 0x3e9f4000-0x3fffffff]
<7>[   12.515396] e820: reserve RAM buffer [mem 0x744ff000-0x77ffffff]
<6>[   12.515452] pci 0000:00:02.0: vgaarb: setting as boot VGA device
<6>[   12.515452] pci 0000:00:02.0: vgaarb: bridge control possible
<6>[   12.515452] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
<6>[   12.515452] vgaarb: loaded
<6>[   12.525034] clocksource: Switched to clocksource tsc-early
<6>[   12.525620] pnp: PnP ACPI init
<6>[   12.528237] system 00:00: [io  0x0680-0x069f] has been reserved
<6>[   12.528243] system 00:00: [io  0x164e-0x164f] has been reserved
<6>[   12.529030] system 00:01: [io  0x1854-0x1857] has been reserved
<6>[   12.529660] system 00:04: [io  0x1800-0x189f] could not be reserved
<6>[   12.529664] system 00:04: [io  0x0800-0x087f] has been reserved
<6>[   12.529666] system 00:04: [io  0x0880-0x08ff] has been reserved
<6>[   12.529669] system 00:04: [io  0x0900-0x097f] has been reserved
<6>[   12.529671] system 00:04: [io  0x0980-0x09ff] has been reserved
<6>[   12.529674] system 00:04: [io  0x0a00-0x0a7f] has been reserved
<6>[   12.529677] system 00:04: [io  0x0a80-0x0aff] has been reserved
<6>[   12.529679] system 00:04: [io  0x0b00-0x0b7f] has been reserved
<6>[   12.529681] system 00:04: [io  0x0b80-0x0bff] has been reserved
<6>[   12.529684] system 00:04: [io  0x15e0-0x15ef] has been reserved
<6>[   12.529692] system 00:04: [io  0x1600-0x167f] could not be reserved
<6>[   12.529699] system 00:04: [io  0x1640-0x165f] could not be reserved
<6>[   12.529702] system 00:04: [mem 0xc0000000-0xcfffffff] has been reserved
<6>[   12.529706] system 00:04: [mem 0xfed10000-0xfed13fff] has been reserved
<6>[   12.529708] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
<6>[   12.529711] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
<6>[   12.529714] system 00:04: [mem 0xfeb00000-0xfebfffff] has been reserved
<6>[   12.529716] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
<6>[   12.529719] system 00:04: [mem 0xfed90000-0xfed93fff] has been reserved
<6>[   12.540772] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
<6>[   12.540784] system 00:05: [mem 0x00000000-0x00000fff] could not be reserved
<6>[   12.540792] system 00:05: [mem 0x00000000-0x00000fff] could not be reserved
<6>[   12.540795] system 00:05: [mem 0xc0000000-0xcfffffff] has been reserved
<6>[   12.540803] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
<6>[   12.540810] system 00:05: [mem 0xfc800000-0xfc81ffff] could not be reserved
<6>[   12.540822] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
<6>[   12.540825] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
<6>[   12.547078] system 00:06: [io  0xff00-0xfffe] has been reserved
<4>[   12.552644] pnp 00:08: disabling [mem 0x000c0000-0x000c3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[   12.552649] pnp 00:08: disabling [mem 0x000c8000-0x000cbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[   12.552652] pnp 00:08: disabling [mem 0x000d0000-0x000d3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[   12.552655] pnp 00:08: disabling [mem 0x000d8000-0x000dbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<6>[   12.552767] system 00:08: [mem 0x00000000-0x0009ffff] could not be reserved
<6>[   12.552776] system 00:08: [mem 0x000e0000-0x000e3fff] could not be reserved
<6>[   12.552783] system 00:08: [mem 0x000e8000-0x000ebfff] could not be reserved
<6>[   12.552791] system 00:08: [mem 0x000f0000-0x000fffff] could not be reserved
<6>[   12.552798] system 00:08: [mem 0x00100000-0x8fffffff] could not be reserved
<6>[   12.552806] system 00:08: [mem 0xfec00000-0xfed3ffff] could not be reserved
<6>[   12.552815] system 00:08: [mem 0xfed4c000-0xffffffff] could not be reserved
<6>[   12.554090] pnp: PnP ACPI: found 9 devices
<6>[   12.566184] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
<6>[   12.566611] NET: Registered PF_INET protocol family
<6>[   12.566712] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
<6>[   12.570607] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
<6>[   12.570646] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
<6>[   12.570689] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
<6>[   12.571024] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
<6>[   12.571240] TCP: Hash tables configured (established 262144 bind 65536)
<6>[   12.571389] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
<6>[   12.571486] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
<6>[   12.571760] NET: Registered PF_UNIX/PF_LOCAL protocol family
<6>[   12.572470] pci 0000:00:06.0: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
<6>[   12.572477] pci 0000:00:06.0: bridge window [mem 0x00100000-0x000fffff] to [bus 1c] add_size 200000 add_align 100000
<6>[   12.572482] pci 0000:21:01.0: bridge window [io  0x1000-0x0fff] to [bus 23-2e] add_size 1000
<6>[   12.572486] pci 0000:21:02.0: bridge window [io  0x1000-0x0fff] to [bus 2f-3a] add_size 1000
<6>[   12.572489] pci 0000:21:03.0: bridge window [io  0x1000-0x0fff] to [bus 3b-48] add_size 1000
<6>[   12.572492] pci 0000:20:00.0: bridge window [io  0x1000-0x0fff] to [bus 21-49] add_size 3000
<6>[   12.572495] pci 0000:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 20-49] add_size 4000
<6>[   12.572498] pci 0000:00:07.2: bridge window [io  0x1000-0x0fff] to [bus 50-79] add_size 1000
<6>[   12.572501] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
<6>[   12.572517] pci 0000:00:06.0: bridge window [mem 0x9c200000-0x9c3fffff]: assigned
<6>[   12.572523] pci 0000:00:06.0: bridge window [io  0x2000-0x2fff]: assigned
<6>[   12.572526] pci 0000:00:07.0: bridge window [io  0x3000-0x6fff]: assigned
<6>[   12.572529] pci 0000:00:07.2: bridge window [io  0x7000-0x7fff]: assigned
<6>[   12.572532] pci 0000:00:15.0: BAR 0 [mem 0x402c000000-0x402c000fff 64bit]: assigned
<6>[   12.572583] pci 0000:00:1c.0: bridge window [io  0x8000-0x8fff]: assigned
<6>[   12.572587] pci 0000:00:1f.5: BAR 0 [mem 0x9c400000-0x9c400fff]: assigned
<6>[   12.572630] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[   12.572635] pci 0000:00:06.0:   bridge window [io  0x2000-0x2fff]
<6>[   12.572643] pci 0000:00:06.0:   bridge window [mem 0x9c200000-0x9c3fffff]
<6>[   12.572650] pci 0000:00:06.0:   bridge window [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[   12.572662] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[   12.572667] pci 0000:00:06.1:   bridge window [mem 0xaac00000-0xaacfffff]
<6>[   12.572677] pci 0000:20:00.0: bridge window [io  0x3000-0x5fff]: assigned
<6>[   12.572686] pci 0000:21:01.0: bridge window [io  0x3000-0x3fff]: assigned
<6>[   12.572689] pci 0000:21:02.0: bridge window [io  0x4000-0x4fff]: assigned
<6>[   12.572691] pci 0000:21:03.0: bridge window [io  0x5000-0x5fff]: assigned
<6>[   12.572709] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[   12.572733] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[   12.572737] pci 0000:21:01.0:   bridge window [io  0x3000-0x3fff]
<6>[   12.572745] pci 0000:21:01.0:   bridge window [mem 0xa6000000-0xa9ffffff]
<6>[   12.572752] pci 0000:21:01.0:   bridge window [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[   12.572763] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[   12.572767] pci 0000:21:02.0:   bridge window [io  0x4000-0x4fff]
<6>[   12.572775] pci 0000:21:02.0:   bridge window [mem 0xa2000000-0xa5ffffff]
<6>[   12.572782] pci 0000:21:02.0:   bridge window [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[   12.572793] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[   12.572797] pci 0000:21:03.0:   bridge window [io  0x5000-0x5fff]
<6>[   12.572805] pci 0000:21:03.0:   bridge window [mem 0x9e000000-0xa1ffffff]
<6>[   12.572811] pci 0000:21:03.0:   bridge window [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[   12.572822] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[   12.572843] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[   12.572847] pci 0000:20:00.0:   bridge window [io  0x3000-0x5fff]
<6>[   12.572855] pci 0000:20:00.0:   bridge window [mem 0x9e000000-0xa9ffffff]
<6>[   12.572862] pci 0000:20:00.0:   bridge window [mem 0x4010000000-0x402befffff 64bit pref]
<6>[   12.572872] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[   12.572875] pci 0000:00:07.0:   bridge window [io  0x3000-0x6fff]
<6>[   12.572880] pci 0000:00:07.0:   bridge window [mem 0x9e000000-0xaa1fffff]
<6>[   12.572884] pci 0000:00:07.0:   bridge window [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[   12.572891] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[   12.572894] pci 0000:00:07.2:   bridge window [io  0x7000-0x7fff]
<6>[   12.572899] pci 0000:00:07.2:   bridge window [mem 0x90000000-0x9c1fffff]
<6>[   12.572903] pci 0000:00:07.2:   bridge window [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[   12.572911] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<6>[   12.572916] pci 0000:00:1c.0:   bridge window [io  0x8000-0x8fff]
<6>[   12.572923] pci 0000:00:1c.0:   bridge window [mem 0xaa200000-0xaabfffff]
<6>[   12.572930] pci 0000:00:1c.0:   bridge window [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[   12.572943] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
<6>[   12.572946] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
<6>[   12.572948] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
<6>[   12.572951] pci_bus 0000:00: resource 7 [mem 0x90000000-0xbfffffff window]
<6>[   12.572953] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x3ffbfffffff window]
<6>[   12.572956] pci_bus 0000:1c: resource 0 [io  0x2000-0x2fff]
<6>[   12.572958] pci_bus 0000:1c: resource 1 [mem 0x9c200000-0x9c3fffff]
<6>[   12.572961] pci_bus 0000:1c: resource 2 [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[   12.572963] pci_bus 0000:04: resource 1 [mem 0xaac00000-0xaacfffff]
<6>[   12.572966] pci_bus 0000:20: resource 0 [io  0x3000-0x6fff]
<6>[   12.572968] pci_bus 0000:20: resource 1 [mem 0x9e000000-0xaa1fffff]
<6>[   12.572970] pci_bus 0000:20: resource 2 [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[   12.572972] pci_bus 0000:21: resource 0 [io  0x3000-0x5fff]
<6>[   12.572975] pci_bus 0000:21: resource 1 [mem 0x9e000000-0xa9ffffff]
<6>[   12.572977] pci_bus 0000:21: resource 2 [mem 0x4010000000-0x402befffff 64bit pref]
<6>[   12.572979] pci_bus 0000:23: resource 0 [io  0x3000-0x3fff]
<6>[   12.572982] pci_bus 0000:23: resource 1 [mem 0xa6000000-0xa9ffffff]
<6>[   12.572984] pci_bus 0000:23: resource 2 [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[   12.572986] pci_bus 0000:2f: resource 0 [io  0x4000-0x4fff]
<6>[   12.572988] pci_bus 0000:2f: resource 1 [mem 0xa2000000-0xa5ffffff]
<6>[   12.572991] pci_bus 0000:2f: resource 2 [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[   12.572993] pci_bus 0000:3b: resource 0 [io  0x5000-0x5fff]
<6>[   12.572995] pci_bus 0000:3b: resource 1 [mem 0x9e000000-0xa1ffffff]
<6>[   12.572998] pci_bus 0000:3b: resource 2 [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[   12.573000] pci_bus 0000:50: resource 0 [io  0x7000-0x7fff]
<6>[   12.573002] pci_bus 0000:50: resource 1 [mem 0x90000000-0x9c1fffff]
<6>[   12.573005] pci_bus 0000:50: resource 2 [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[   12.573007] pci_bus 0000:1d: resource 0 [io  0x8000-0x8fff]
<6>[   12.573009] pci_bus 0000:1d: resource 1 [mem 0xaa200000-0xaabfffff]
<6>[   12.573012] pci_bus 0000:1d: resource 2 [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[   12.573530] pci 0000:00:0d.0: enabling device (0000 -> 0002)
<6>[   12.576332] PCI: CLS 0 bytes, default 64
<6>[   12.576372] DMAR: No RMRR found
<6>[   12.576373] DMAR: No ATSR found
<6>[   12.576376] DMAR: IOMMU feature sc_support inconsistent
<6>[   12.576378] DMAR: dmar0: Using Queued invalidation
<6>[   12.576395] DMAR: dmar1: Using Queued invalidation
<6>[   12.576911] Unpacking initramfs...
<6>[   12.577168] pci 0000:00:02.0: Adding to iommu group 0
<6>[   12.577725] pci 0000:00:00.0: Adding to iommu group 1
<6>[   12.577762] pci 0000:00:04.0: Adding to iommu group 2
<6>[   12.577801] pci 0000:00:06.0: Adding to iommu group 3
<6>[   12.577835] pci 0000:00:06.1: Adding to iommu group 4
<6>[   12.577884] pci 0000:00:07.0: Adding to iommu group 5
<6>[   12.577919] pci 0000:00:07.2: Adding to iommu group 6
<6>[   12.577951] pci 0000:00:08.0: Adding to iommu group 7
<6>[   12.577983] pci 0000:00:0a.0: Adding to iommu group 8
<6>[   12.578016] pci 0000:00:0b.0: Adding to iommu group 9
<6>[   12.578071] pci 0000:00:0d.0: Adding to iommu group 10
<6>[   12.578096] pci 0000:00:0d.2: Adding to iommu group 10
<6>[   12.578124] pci 0000:00:0d.3: Adding to iommu group 10
<6>[   12.578170] pci 0000:00:14.0: Adding to iommu group 11
<6>[   12.578195] pci 0000:00:14.2: Adding to iommu group 11
<6>[   12.578234] pci 0000:00:15.0: Adding to iommu group 12
<6>[   12.578277] pci 0000:00:16.0: Adding to iommu group 13
<6>[   12.578314] pci 0000:00:1c.0: Adding to iommu group 14
<6>[   12.578373] pci 0000:00:1f.0: Adding to iommu group 15
<6>[   12.578399] pci 0000:00:1f.3: Adding to iommu group 15
<6>[   12.578425] pci 0000:00:1f.4: Adding to iommu group 15
<6>[   12.578453] pci 0000:00:1f.5: Adding to iommu group 15
<6>[   12.578488] pci 0000:04:00.0: Adding to iommu group 16
<6>[   12.578523] pci 0000:20:00.0: Adding to iommu group 17
<6>[   12.578558] pci 0000:21:00.0: Adding to iommu group 18
<6>[   12.578598] pci 0000:21:01.0: Adding to iommu group 19
<6>[   12.578633] pci 0000:21:02.0: Adding to iommu group 20
<6>[   12.578668] pci 0000:21:03.0: Adding to iommu group 21
<6>[   12.578718] pci 0000:21:04.0: Adding to iommu group 22
<6>[   12.583416] DMAR: Intel(R) Virtualization Technology for Directed I/O
<6>[   12.583419] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
<6>[   12.583421] software IO TLB: mapped [mem 0x0000000070400000-0x0000000074400000] (64MB)
<6>[   12.583449] ACPI: bus type thunderbolt registered
<6>[   12.764748] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
<6>[   12.764753] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
<6>[   12.764755] RAPL PMU: hw unit of domain package 2^-14 Joules
<6>[   12.764757] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
<6>[   12.764758] RAPL PMU: hw unit of domain psys 2^-14 Joules
<6>[   12.765784] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b2c8ec87c7, max_idle_ns: 440795278598 ns
<6>[   12.765892] clocksource: Switched to clocksource tsc
<6>[   12.765966] platform rtc_cmos: registered platform RTC device (no PNP device found)
<6>[   12.778087] workingset: timestamp_bits=62 max_order=23 bucket_order=0
<6>[   12.782780] squashfs: version 4.0 (2009/01/31) Phillip Lougher
<6>[   12.782829] 9p: Installing v9fs 9p2000 file system support
<6>[   12.795666] NET: Registered PF_ALG protocol family
<6>[   12.795744] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
<6>[   12.795748] io scheduler mq-deadline registered
<6>[   12.795752] io scheduler kyber registered
<6>[   12.797819] pcieport 0000:00:06.0: PME: Signaling with IRQ 154
<6>[   12.797926] pcieport 0000:00:06.0: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   12.799870] pcieport 0000:00:06.1: PME: Signaling with IRQ 155
<6>[   12.801629] pcieport 0000:00:07.0: PME: Signaling with IRQ 156
<6>[   12.801734] pcieport 0000:00:07.0: pciehp: Slot #12 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   12.801863] pcieport 0000:00:07.0: pciehp: Slot(12): Card not present
<6>[   12.801889] pci_bus 0000:22: busn_res: [bus 22] is released
<6>[   12.804008] pcieport 0000:00:07.2: PME: Signaling with IRQ 157
<6>[   12.804097] pcieport 0000:00:07.2: pciehp: Slot #14 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   12.806114] pcieport 0000:00:1c.0: PME: Signaling with IRQ 158
<6>[   12.806209] pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   12.806207] pci_bus 0000:23: busn_res: [bus 23-2e] is released
<3>[   12.809078] pcieport 0000:20:00.0: Unable to change power state from D3cold to D0, device inaccessible
<3>[   12.809289] pcieport 0000:21:02.0: Unable to change power state from D3cold to D0, device inaccessible
<6>[   12.809559] pcieport 0000:21:02.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
<3>[   12.809766] pcieport 0000:21:03.0: Unable to change power state from D3cold to D0, device inaccessible
<6>[   12.810050] pcieport 0000:21:03.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
<3>[   12.810238] pcieport 0000:21:04.0: Unable to change power state from D3cold to D0, device inaccessible
<6>[   12.810464] pci_bus 0000:2f: busn_res: [bus 2f-3a] is released
<6>[   12.810630] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
<6>[   12.811304] irq/18-pciehp (139) used greatest stack depth: 3799 bytes left
<3>[   12.811330] ==================================================================
<3>[   12.811337] BUG: KASAN: slab-use-after-free in pci_slot_release+0x33e/0x3f0
<3>[   12.811360] Read of size 8 at addr ffff8881071c4498 by task irq/156-pciehp/136
<3>[   12.811369] 
<3>[   12.811374] CPU: 12 PID: 136 Comm: irq/156-pciehp Tainted: G                T   6.8.12-grsec+ #8
<3>[   12.811385] Hardware name: LENOVO 21LVS1CV00/21LVS1CV00, BIOS N45ET18W (1.08 ) 07/08/2024
<3>[   12.811392] Call Trace:
<3>[   12.811396]  <TASK>
<3>[   12.811403]  [<ffffffff84c461dc>] dump_stack_lvl+0x7c/0xe0 ffffc90000ddf5f0
<3>[   12.811424]  [<ffffffff81bf3275>] print_report+0xc5/0x5f0 ffffc90000ddf600
<3>[   12.811442]  [<ffffffff8243137e>] ? pci_slot_release+0x33e/0x3f0 ffffc90000ddf668
<3>[   12.811453]  [<ffffffff81bf3a5f>] kasan_report+0xaf/0xf0 ffffc90000ddf670
<3>[   12.811467]  [<ffffffff8243137e>] ? pci_slot_release+0x33e/0x3f0 ffffc90000ddf6a0
<3>[   12.811479]  [<ffffffff8243137e>] ? pci_slot_release+0x33e/0x3f0 ffffc90000ddf720
<3>[   12.811490]  [<ffffffff84c4cec4>] ? kobject_put+0x194/0x4f0 ffffc90000ddf768
<3>[   12.811501]  [<ffffffff82431cfa>] ? pci_destroy_slot+0x2a/0x120 ffffc90000ddf7a0
<3>[   12.811512]  [<ffffffff8244827c>] ? pciehp_remove+0x4c/0x60 ffffc90000ddf7c0
<3>[   12.811524]  [<ffffffff824241ff>] ? pcie_port_remove_service+0x6f/0xb0 ffffc90000ddf7d8
<3>[   12.811537]  [<ffffffff82f5fd54>] ? __device_release_driver+0x1b4/0x330 ffffc90000ddf7f0
<3>[   12.811550]  [<ffffffff82f5ff07>] ? device_release_driver+0x27/0x40 ffffc90000ddf840
<3>[   12.811560]  [<ffffffff82f5d406>] ? bus_remove_device+0x1f6/0x410 ffffc90000ddf858
<3>[   12.811574]  [<ffffffff82f4d0d6>] ? device_del+0x3a6/0xa00 ffffc90000ddf8a0
<3>[   12.811585]  [<ffffffff82f4cd30>] ? __pfx_device_del+0x10/0x10 ffffc90000ddf8f0
<3>[   12.811595]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddf920
<3>[   12.811609]  [<ffffffff82f4d758>] ? device_unregister+0x18/0xb0 ffffc90000ddf970
<3>[   12.811618]  [<ffffffff82424439>] ? remove_iter+0x49/0x60 ffffc90000ddf980
<3>[   12.811630]  [<ffffffff824243f0>] ? __pfx_remove_iter+0x10/0x10 ffffc90000ddf988
<3>[   12.811641]  [<ffffffff82f4a53a>] ? device_for_each_child+0xfa/0x180 ffffc90000ddf990
<3>[   12.811655]  [<ffffffff82f4a440>] ? __pfx_device_for_each_child+0x10/0x10 ffffc90000ddf9b0
<3>[   12.811668]  [<ffffffff81dad758>] ? kernfs_name_hash+0x18/0xc0 ffffc90000ddf9d8
<3>[   12.811682]  [<ffffffff82424493>] ? pcie_portdrv_remove+0x33/0x80 ffffc90000ddfa30
<3>[   12.811694]  [<ffffffff824013a2>] ? pci_device_remove+0xb2/0x1f0 ffffc90000ddfa48
<3>[   12.811707]  [<ffffffff82f5fd54>] ? __device_release_driver+0x1b4/0x330 ffffc90000ddfa78
<3>[   12.811718]  [<ffffffff82f5ff07>] ? device_release_driver+0x27/0x40 ffffc90000ddfac8
<3>[   12.811728]  [<ffffffff82f5d406>] ? bus_remove_device+0x1f6/0x410 ffffc90000ddfae0
<3>[   12.811741]  [<ffffffff82f4d0d6>] ? device_del+0x3a6/0xa00 ffffc90000ddfb28
<3>[   12.811751]  [<ffffffff82f4cd30>] ? __pfx_device_del+0x10/0x10 ffffc90000ddfb78
<3>[   12.811762]  [<ffffffff823e518c>] ? pci_remove_bus_device+0x12c/0x3a0 ffffc90000ddfbf8
<3>[   12.811776]  [<ffffffff84c4ceda>] ? kobject_put+0x1aa/0x4f0 ffffc90000ddfc00
<3>[   12.811786]  [<ffffffff823e5119>] ? pci_remove_bus_device+0xb9/0x3a0 ffffc90000ddfc38
<3>[   12.811799]  [<ffffffff8244c40c>] ? pciehp_unconfigure_device+0x1fc/0x410 ffffc90000ddfc78
<3>[   12.811811]  [<ffffffff8244c210>] ? __pfx_pciehp_unconfigure_device+0x10/0x10 ffffc90000ddfcb0
<3>[   12.811822]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddfcd8
<3>[   12.811834]  [<ffffffff8244950e>] ? pciehp_disable_slot+0xfe/0x380 ffffc90000ddfd30
<3>[   12.811845]  [<ffffffff82449410>] ? __pfx_pciehp_disable_slot+0x10/0x10 ffffc90000ddfd48
<3>[   12.811856]  [<ffffffff84cdfa00>] ? __mutex_unlock_slowpath.constprop.0+0x230/0x2c0 ffffc90000ddfd58
<3>[   12.811870]  [<ffffffff8244a594>] ? pciehp_handle_presence_or_link_change+0x554/0x1070 ffffc90000ddfdb8
<3>[   12.811882]  [<ffffffff84ce4bed>] ? down_read+0x14d/0x250 ffffc90000ddfdc8
<3>[   12.811894]  [<ffffffff81682070>] ? __pfx___synchronize_hardirq+0x10/0x10 ffffc90000ddfdd0
<3>[   12.811908]  [<ffffffff8244a040>] ? __pfx_pciehp_handle_presence_or_link_change+0x10/0x10 ffffc90000ddfde8
<3>[   12.811920]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddfe00
<3>[   12.811931]  [<ffffffff8244f480>] ? pciehp_ist+0x2e0/0x370 ffffc90000ddfe68
<3>[   12.811943]  [<ffffffff8167c510>] ? irq_thread_fn+0x90/0x180 ffffc90000ddfea8
<3>[   12.811955]  [<ffffffff81680af1>] ? irq_thread+0x1e1/0x3a0 ffffc90000ddfed8
<3>[   12.811967]  [<ffffffff8167c480>] ? __pfx_irq_thread_fn+0x10/0x10 ffffc90000ddfee0
<3>[   12.811978]  [<ffffffff84cef120>] ? __pfx__raw_spin_lock_irqsave+0x10/0x10 ffffc90000ddfee8
<3>[   12.811989]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000ddff10
<3>[   12.812000]  [<ffffffff81680cc0>] ? __pfx_irq_thread_dtor+0x10/0x10 ffffc90000ddff28
<3>[   12.812013]  [<ffffffff815b75bd>] ? __kthread_parkme+0x8d/0x160 ffffc90000ddff50
<3>[   12.812028]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000ddff78
<3>[   12.812040]  [<ffffffff815bbbd0>] ? kthread+0x2d0/0x3c0 ffffc90000ddff90
<3>[   12.812050]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000ddff98
<3>[   12.812060]  [<ffffffff8148f8ac>] ? ret_from_fork+0x3c/0x80 ffffc90000ddffc8
<3>[   12.812071]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000ddffd0
<3>[   12.812081]  [<ffffffff814031fb>] ? ret_from_fork_asm+0x2b/0x50 ffffc90000ddffe8
<3>[   12.812094]  </TASK>
<3>[   12.812098] 
<3>[   12.812101] Freed by task 136 on cpu 12 at 12.810646s:
<4>[   12.812110]  kasan_save_stack+0x35/0x60
<4>[   12.812121]  kasan_save_track+0x19/0x70
<4>[   12.812130]  kasan_save_free_info+0x4a/0x90
<4>[   12.812138]  poison_slab_object+0x101/0x1a0
<4>[   12.812146]  __kasan_slab_free+0x16/0x40
<4>[   12.812155]  kfree+0xd8/0x3b0
<4>[   12.812163]  device_release+0xa6/0x230
<4>[   12.812173]  kobject_put+0x194/0x4f0
<4>[   12.812180]  pci_remove_bus_device+0xc6/0x3a0
<4>[   12.812189]  pci_remove_bus_device+0xb9/0x3a0
<4>[   12.812198]  pciehp_unconfigure_device+0x1fc/0x410
<4>[   12.812206]  pciehp_disable_slot+0xfe/0x380
<4>[   12.812213]  pciehp_handle_presence_or_link_change+0x554/0x1070
<4>[   12.812222]  pciehp_ist+0x2e0/0x370
<4>[   12.812230]  irq_thread_fn+0x90/0x180
<4>[   12.812232]  irq_thread+0x1e1/0x3a0
<4>[   12.812232]  kthread+0x2d0/0x3c0
<4>[   12.812232]  ret_from_fork+0x3c/0x80
<4>[   12.812232]  ret_from_fork_asm+0x2b/0x50
<3>[   12.812232] 
<3>[   12.812232] The buggy address belongs to the object at ffff8881071c4470
<3>[   12.812232]  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>[   12.812232] The buggy address is located 40 bytes inside of
<3>[   12.812232]  freed 1040+0-byte region [ffff8881071c4470, ffff8881071c4880)
<3>[   12.812232] 
<3>[   12.812232] The buggy address belongs to the physical page:
<4>[   12.812232] page:ffffea00041c7000 refcount:1 mapcount:0 mapping:0000000000000000 index:0x0 pfn:0x1071c0
<4>[   12.812232] head:ffffea00041c7000 order:3 entire_mapcount:0 nr_pages_mapped:0 pincount:0
<4>[   12.812232] flags: 0x8000000000000840(slab|head|zone=2)
<4>[   12.812232] page_type: 0xffffffff()
<4>[   12.812232] raw: 8000000000000840 ffff888100524260 ffffffffffffff04 0000000000000000
<4>[   12.812232] raw: 0000000000000000 0000003800000039 00000001ffffffff 0000000000000000
<4>[   12.812232] page dumped because: kasan: bad access detected
<3>[   12.812232] 
<3>[   12.812232] Memory state around the buggy address:
<3>[   12.812232]  ffff8881071c4380: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
<3>[   12.812232]  ffff8881071c4400: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fa fb
<3>[   12.812232] >ffff8881071c4480: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
<3>[   12.812232]                             ^
<3>[   12.812232]  ffff8881071c4500: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
<3>[   12.812232]  ffff8881071c4580: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
<3>[   12.812232] ==================================================================
<4>[   12.812849] general protection fault, probably for non-canonical address 0xffdfdbdfdfdfdfe6: 0000 [#1] PREEMPT SMP KASAN NOPTI
<1>[   12.812878] KASAN: maybe wild-memory-access in range [0xfefefefefefeff30-0xfefefefefefeff37]
<4>[   12.812895] CPU: 12 PID: 136 Comm: irq/156-pciehp Tainted: G    B           T   6.8.12-grsec+ #8
<4>[   12.812912] Hardware name: LENOVO 21LVS1CV00/21LVS1CV00, BIOS N45ET18W (1.08 ) 07/08/2024
<4>[   12.812926] RIP: 0010:[<ffffffff82431106>] pci_slot_release+0xc6/0x3f0
<4>[   12.812945] Code: c1 e8 03 42 80 3c 30 00 0f 85 3f 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 ff 01 00 00 8b 6b 38 41 0f
<4>[   12.812970] RSP: 0000:ffffc90000ddf728 EFLAGS: 00010203
<4>[   12.812988] RAX: 1fdfdfdfdfdfdfe6 RBX: fefefefefefefefe RCX: ffffffff81542b9c
<4>[   12.813002] RDX: ffff8881111d3de8 RSI: 0000000000000008 RDI: fefefefefefeff36
<4>[   12.813014] RBP: ffff8881071c4498 R08: 0000000000000001 R09: fffffbfff0d26128
<4>[   12.813026] R10: ffffffff86930947 R11: ffffffff86974f30 R12: ffff8881111d3df0
<4>[   12.813038] R13: ffff8881111d3dc8 R14: dffffc0000000000 R15: ffffed102223a7bd
<4>[   12.813064] RCX: add_taint+0x2c/0xa0
<4>[   12.813077] RDX: autoslab_const_M_slot_P_drivers_pci_slot_258_9_258_9_S_104_A_8_n_83+0x20/0x68 [slab object]
<4>[   12.813097] 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>[   12.813120] RSP: vmalloc[kernel_clone]+0xdf/0x770
<4>[   12.813138] R09: kasan shadow of tainted_mask+0x0/0x40
<4>[   12.813153] R10: tainted_mask+0x7/0x40
<4>[   12.813166] R11: printk_rb_static+0x10/0x80
<4>[   12.813177] R12: autoslab_const_M_slot_P_drivers_pci_slot_258_9_258_9_S_104_A_8_n_83+0x28/0x68 [slab object]
<4>[   12.813194] R13: autoslab_const_M_slot_P_drivers_pci_slot_258_9_258_9_S_104_A_8_n_83+0x0/0x68 [slab object]
<4>[   12.813211] R14: kasan shadow of 0x0
<4>[   12.813222] R15: kasan shadow of autoslab_const_M_slot_P_drivers_pci_slot_258_9_258_9_S_104_A_8_n_83+0x20/0x68 [slab object]
<4>[   12.813238] FS:  0000000000000000(0000) GS:ffff88880e400000(0000) knlGS:0000000000000000
<4>[   12.813254] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[   12.813267] CR2: 0000000000000000 CR3: 000000000e454001 CR4: 0000000000f60ef0 shadow CR4: 0000000000f60ef0
<4>[   12.813285] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
<4>[   12.813298] DR3: 0000000000000000 DR6: 00000000ffff07f0 DR7: 0000000000000400
<4>[   12.813311] PKRU: 55555554
<4>[   12.813319] ASID: 0000
<4>[   12.813327] Stack:
<4>[   12.813334]  ffff888114458898 dffffc0000000000 ffff8881111d3df0 ffff8881111d3e2c
<4>[   12.813358]  ffffffff851cc140 dffffc0000000000 ffff888103f0cc00 ffff888103f21898
<4>[   12.813381]  ffffffff84c4cec4 ffff8881111d3dc8 ffff888113c93030 dffffc0000000000
<4>[   12.813404] Call Trace:
<4>[   12.813411]  <TASK>
<4>[   12.813421]  [<ffffffff84c4cec4>] kobject_put+0x194/0x4f0 ffffc90000ddf768
<4>[   12.813443]  [<ffffffff82431cfa>] pci_destroy_slot+0x2a/0x120 ffffc90000ddf7a0
<4>[   12.813464]  [<ffffffff8244827c>] pciehp_remove+0x4c/0x60 ffffc90000ddf7c0
<4>[   12.813483]  [<ffffffff824241ff>] pcie_port_remove_service+0x6f/0xb0 ffffc90000ddf7d8
<4>[   12.813505]  [<ffffffff82f5fd54>] __device_release_driver+0x1b4/0x330 ffffc90000ddf7f0
<4>[   12.813526]  [<ffffffff82f5ff07>] device_release_driver+0x27/0x40 ffffc90000ddf840
<4>[   12.813546]  [<ffffffff82f5d406>] bus_remove_device+0x1f6/0x410 ffffc90000ddf858
<4>[   12.813569]  [<ffffffff82f4d0d6>] device_del+0x3a6/0xa00 ffffc90000ddf8a0
<4>[   12.813580]  [<ffffffff82f4cd30>] ? __pfx_device_del+0x10/0x10 ffffc90000ddf8f0
<4>[   12.813580]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddf920
<4>[   12.813580]  [<ffffffff82f4d758>] device_unregister+0x18/0xb0 ffffc90000ddf970
<4>[   12.813580]  [<ffffffff82424439>] remove_iter+0x49/0x60 ffffc90000ddf980
<4>[   12.813580]  [<ffffffff824243f0>] ? __pfx_remove_iter+0x10/0x10 ffffc90000ddf988
<4>[   12.813580]  [<ffffffff82f4a53a>] device_for_each_child+0xfa/0x180 ffffc90000ddf990
<4>[   12.813580]  [<ffffffff82f4a440>] ? __pfx_device_for_each_child+0x10/0x10 ffffc90000ddf9b0
<4>[   12.813580]  [<ffffffff81dad758>] ? kernfs_name_hash+0x18/0xc0 ffffc90000ddf9d8
<4>[   12.813580]  [<ffffffff82424493>] pcie_portdrv_remove+0x33/0x80 ffffc90000ddfa30
<4>[   12.813580]  [<ffffffff824013a2>] pci_device_remove+0xb2/0x1f0 ffffc90000ddfa48
<4>[   12.813580]  [<ffffffff82f5fd54>] __device_release_driver+0x1b4/0x330 ffffc90000ddfa78
<4>[   12.813580]  [<ffffffff82f5ff07>] device_release_driver+0x27/0x40 ffffc90000ddfac8
<4>[   12.813580]  [<ffffffff82f5d406>] bus_remove_device+0x1f6/0x410 ffffc90000ddfae0
<4>[   12.813580]  [<ffffffff82f4d0d6>] device_del+0x3a6/0xa00 ffffc90000ddfb28
<4>[   12.813580]  [<ffffffff82f4cd30>] ? __pfx_device_del+0x10/0x10 ffffc90000ddfb78
<4>[   12.813580]  [<ffffffff823e518c>] pci_remove_bus_device+0x12c/0x3a0 ffffc90000ddfbf8
<4>[   12.813580]  [<ffffffff84c4ceda>] ? kobject_put+0x1aa/0x4f0 ffffc90000ddfc00
<4>[   12.813580]  [<ffffffff823e5119>] pci_remove_bus_device+0xb9/0x3a0 ffffc90000ddfc38
<4>[   12.813580]  [<ffffffff8244c40c>] pciehp_unconfigure_device+0x1fc/0x410 ffffc90000ddfc78
<4>[   12.813580]  [<ffffffff8244c210>] ? __pfx_pciehp_unconfigure_device+0x10/0x10 ffffc90000ddfcb0
<4>[   12.813580]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddfcd8
<4>[   12.813580]  [<ffffffff8244950e>] pciehp_disable_slot+0xfe/0x380 ffffc90000ddfd30
<4>[   12.813580]  [<ffffffff82449410>] ? __pfx_pciehp_disable_slot+0x10/0x10 ffffc90000ddfd48
<4>[   12.813580]  [<ffffffff84cdfa00>] ? __mutex_unlock_slowpath.constprop.0+0x230/0x2c0 ffffc90000ddfd58
<4>[   12.813580]  [<ffffffff8244a594>] pciehp_handle_presence_or_link_change+0x554/0x1070 ffffc90000ddfdb8
<4>[   12.813580]  [<ffffffff84ce4bed>] ? down_read+0x14d/0x250 ffffc90000ddfdc8
<4>[   12.813580]  [<ffffffff81682070>] ? __pfx___synchronize_hardirq+0x10/0x10 ffffc90000ddfdd0
<4>[   12.813580]  [<ffffffff8244a040>] ? __pfx_pciehp_handle_presence_or_link_change+0x10/0x10 ffffc90000ddfde8
<4>[   12.813580]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000ddfe00
<4>[   12.813580]  [<ffffffff8244f480>] pciehp_ist+0x2e0/0x370 ffffc90000ddfe68
<4>[   12.813580]  [<ffffffff8167c510>] irq_thread_fn+0x90/0x180 ffffc90000ddfea8
<4>[   12.813580]  [<ffffffff81680af1>] irq_thread+0x1e1/0x3a0 ffffc90000ddfed8
<4>[   12.813580]  [<ffffffff8167c480>] ? __pfx_irq_thread_fn+0x10/0x10 ffffc90000ddfee0
<4>[   12.813580]  [<ffffffff84cef120>] ? __pfx__raw_spin_lock_irqsave+0x10/0x10 ffffc90000ddfee8
<4>[   12.813580]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000ddff10
<4>[   12.813580]  [<ffffffff81680cc0>] ? __pfx_irq_thread_dtor+0x10/0x10 ffffc90000ddff28
<4>[   12.813580]  [<ffffffff815b75bd>] ? __kthread_parkme+0x8d/0x160 ffffc90000ddff50
<4>[   12.813580]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000ddff78
<4>[   12.813580]  [<ffffffff815bbbd0>] kthread+0x2d0/0x3c0 ffffc90000ddff90
<4>[   12.813580]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000ddff98
<4>[   12.813580]  [<ffffffff8148f8ac>] ret_from_fork+0x3c/0x80 ffffc90000ddffc8
<4>[   12.813580]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000ddffd0
<4>[   12.813580]  [<ffffffff814031fb>] ret_from_fork_asm+0x2b/0x50 ffffc90000ddffe8
<4>[   12.813580]  </TASK>
<4>[   12.813580] Modules linked in:
<4>[   12.814409] ---[ end trace 0000000000000000 ]---

ECC: No errors detected
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) #25 SMP PREEMPT_DYNAMIC Mon Sep 23 07:13:20 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=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] tsc: Detected 3000.000 MHz processor
<6>[    0.000000] tsc: Detected 2995.200 MHz TSC
<7>[    0.000011] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
<7>[    0.000014] e820: remove [mem 0x000a0000-0x000fffff] usable
<6>[    0.000019] last_pfn = 0x870000 max_arch_pfn = 0x400000000
<6>[    0.000023] MTRR map: 8 entries (3 fixed + 5 variable; max 23), built from 10 variable MTRRs
<6>[    0.000025] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
<6>[    0.000631] x2apic: enabled by BIOS, switching to x2apic ops
<6>[    0.000632] last_pfn = 0x78000 max_arch_pfn = 0x400000000
<6>[    0.025540] Using GB pages for direct mapping
<4>[    0.025541] PAX: PCID detected
<4>[    0.025542] PAX: INVPCID detected
<6>[    0.028949] Secure boot disabled
<6>[    0.028950] RAMDISK: [mem 0x31fee000-0x34c6efff]
<6>[    0.028951] Allocated new RAMDISK: [mem 0x86d000000-0x86fc800ff]
<6>[    0.042036] Move RAMDISK from [mem 0x31fee000-0x34c6e0ff] to [mem 0x86d000000-0x86fc800ff]
<6>[    0.042047] ACPI: Early table checksum verification disabled
<6>[    0.042052] ACPI: RSDP 0x000000003FAFE014 000024 (v02 LENOVO)
<6>[    0.042059] ACPI: XSDT 0x000000003FAFD228 00016C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042068] ACPI: FACP 0x000000004213A000 000114 (v06 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042077] ACPI: DSDT 0x00000000420D5000 061056 (v02 LENOVO ICL      00000002      01000013)
<6>[    0.042083] ACPI: FACS 0x000000003FA08000 000040
<6>[    0.042087] ACPI: SSDT 0x000000004221B000 00038C (v02 LENOVO Pmax_Dev 00000001 INTL 20210930)
<6>[    0.042091] ACPI: SSDT 0x000000004221A000 000689 (v02 LENOVO Cpu0Ist  00003000 INTL 20210930)
<6>[    0.042095] ACPI: SSDT 0x0000000042219000 0005E7 (v02 LENOVO Cpu0Hwp  00003000 INTL 20210930)
<6>[    0.042098] ACPI: SSDT 0x0000000042218000 0001AB (v02 LENOVO Cpu0Psd  00003000 INTL 20210930)
<6>[    0.042102] ACPI: SSDT 0x0000000042217000 000394 (v02 LENOVO Cpu0Cst  00003001 INTL 20210930)
<6>[    0.042106] ACPI: SSDT 0x0000000042215000 001BAF (v02 LENOVO ApIst    00003000 INTL 20210930)
<6>[    0.042110] ACPI: SSDT 0x0000000042213000 001620 (v02 LENOVO ApHwp    00003000 INTL 20210930)
<6>[    0.042113] ACPI: SSDT 0x0000000042211000 001349 (v02 LENOVO ApPsd    00003000 INTL 20210930)
<6>[    0.042117] ACPI: SSDT 0x0000000042210000 000FBB (v02 LENOVO ApCst    00003000 INTL 20210930)
<6>[    0.042121] ACPI: SSDT 0x000000004220C000 003BC8 (v02 LENOVO CpuSsdt  00003000 INTL 20210930)
<6>[    0.042124] ACPI: SSDT 0x000000004220B000 00059B (v02 LENOVO CtdpB    00001000 INTL 20210930)
<6>[    0.042129] ACPI: DTPR 0x0000000042209000 000088 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042133] ACPI: SSDT 0x0000000042186000 0012A6 (v02 LENOVO PDatTabl 00001000 INTL 20210930)
<6>[    0.042137] ACPI: SSDT 0x0000000042146000 002679 (v02 LENOVO IgfxSsdt 00003000 INTL 20210930)
<6>[    0.042141] ACPI: SSDT 0x000000004213C000 009BEE (v02 LENOVO TcssSsdt 00001000 INTL 20210930)
<6>[    0.042145] ACPI: ECDT 0x000000004213B000 000053 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042149] ACPI: HPET 0x0000000042139000 000038 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042153] ACPI: APIC 0x0000000042138000 000358 (v05 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042157] ACPI: MCFG 0x0000000042137000 00003C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042162] ACPI: SSDT 0x00000000420CF000 005EDB (v02 LENOVO MtlP_Rvp 00001000 INTL 20210930)
<6>[    0.042166] ACPI: SSDT 0x00000000420CE000 00027B (v02 LENOVO PID1Ssdt 00000010 INTL 20210930)
<6>[    0.042170] ACPI: SSDT 0x00000000420CC000 00123A (v02 LENOVO ProjSsdt 00000010 INTL 20210930)
<6>[    0.042174] ACPI: SSDT 0x00000000420C7000 00429C (v02 LENOVO DptfTabl 00001000 INTL 20210930)
<6>[    0.042178] ACPI: LPIT 0x00000000420C6000 0000CC (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042182] ACPI: WSMT 0x00000000420C5000 000028 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042186] ACPI: SSDT 0x00000000420BF000 00587D (v02 LENOVO TbtTypeC 00000000 INTL 20210930)
<6>[    0.042190] ACPI: DBGP 0x00000000420BE000 000034 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042194] ACPI: DBG2 0x00000000420BD000 000054 (v00 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042198] ACPI: NHLT 0x00000000420BC000 00096C (v00 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042202] ACPI: MSDM 0x00000000420BB000 000055 (v03 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042206] ACPI: SSDT 0x00000000420A5000 001043 (v02 LENOVO UsbCTabl 00001000 INTL 20210930)
<6>[    0.042210] ACPI: BATB 0x00000000420A3000 00004A (v02 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042214] ACPI: DMAR 0x00000000402A1000 000098 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042218] ACPI: FPDT 0x00000000402A0000 000044 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042222] ACPI: SSDT 0x000000004029E000 0018C6 (v02 LENOVO SocGpe   00003000 INTL 20210930)
<6>[    0.042226] ACPI: SSDT 0x000000004029B000 0028D3 (v02 LENOVO SocCmn   00003000 INTL 20210930)
<6>[    0.042230] ACPI: SDEV 0x000000004029A000 0000BC (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042234] ACPI: PHAT 0x0000000040271000 00080C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042237] ACPI: BGRT 0x0000000040270000 000038 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042241] ACPI: UEFI 0x000000003E9F4000 000076 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042243] ACPI: Reserving FACP table memory at [mem 0x4213a000-0x4213a113]
<6>[    0.042246] ACPI: Reserving DSDT table memory at [mem 0x420d5000-0x42136055]
<6>[    0.042246] ACPI: Reserving FACS table memory at [mem 0x3fa08000-0x3fa0803f]
<6>[    0.042247] ACPI: Reserving SSDT table memory at [mem 0x4221b000-0x4221b38b]
<6>[    0.042248] ACPI: Reserving SSDT table memory at [mem 0x4221a000-0x4221a688]
<6>[    0.042249] ACPI: Reserving SSDT table memory at [mem 0x42219000-0x422195e6]
<6>[    0.042250] ACPI: Reserving SSDT table memory at [mem 0x42218000-0x422181aa]
<6>[    0.042251] ACPI: Reserving SSDT table memory at [mem 0x42217000-0x42217393]
<6>[    0.042251] ACPI: Reserving SSDT table memory at [mem 0x42215000-0x42216bae]
<6>[    0.042252] ACPI: Reserving SSDT table memory at [mem 0x42213000-0x4221461f]
<6>[    0.042253] ACPI: Reserving SSDT table memory at [mem 0x42211000-0x42212348]
<6>[    0.042254] ACPI: Reserving SSDT table memory at [mem 0x42210000-0x42210fba]
<6>[    0.042254] ACPI: Reserving SSDT table memory at [mem 0x4220c000-0x4220fbc7]
<6>[    0.042255] ACPI: Reserving SSDT table memory at [mem 0x4220b000-0x4220b59a]
<6>[    0.042256] ACPI: Reserving DTPR table memory at [mem 0x42209000-0x42209087]
<6>[    0.042257] ACPI: Reserving SSDT table memory at [mem 0x42186000-0x421872a5]
<6>[    0.042257] ACPI: Reserving SSDT table memory at [mem 0x42146000-0x42148678]
<6>[    0.042258] ACPI: Reserving SSDT table memory at [mem 0x4213c000-0x42145bed]
<6>[    0.042259] ACPI: Reserving ECDT table memory at [mem 0x4213b000-0x4213b052]
<6>[    0.042260] ACPI: Reserving HPET table memory at [mem 0x42139000-0x42139037]
<6>[    0.042261] ACPI: Reserving APIC table memory at [mem 0x42138000-0x42138357]
<6>[    0.042262] ACPI: Reserving MCFG table memory at [mem 0x42137000-0x4213703b]
<6>[    0.042263] ACPI: Reserving SSDT table memory at [mem 0x420cf000-0x420d4eda]
<6>[    0.042264] ACPI: Reserving SSDT table memory at [mem 0x420ce000-0x420ce27a]
<6>[    0.042264] ACPI: Reserving SSDT table memory at [mem 0x420cc000-0x420cd239]
<6>[    0.042265] ACPI: Reserving SSDT table memory at [mem 0x420c7000-0x420cb29b]
<6>[    0.042266] ACPI: Reserving LPIT table memory at [mem 0x420c6000-0x420c60cb]
<6>[    0.042267] ACPI: Reserving WSMT table memory at [mem 0x420c5000-0x420c5027]
<6>[    0.042268] ACPI: Reserving SSDT table memory at [mem 0x420bf000-0x420c487c]
<6>[    0.042269] ACPI: Reserving DBGP table memory at [mem 0x420be000-0x420be033]
<6>[    0.042270] ACPI: Reserving DBG2 table memory at [mem 0x420bd000-0x420bd053]
<6>[    0.042271] ACPI: Reserving NHLT table memory at [mem 0x420bc000-0x420bc96b]
<6>[    0.042271] ACPI: Reserving MSDM table memory at [mem 0x420bb000-0x420bb054]
<6>[    0.042272] ACPI: Reserving SSDT table memory at [mem 0x420a5000-0x420a6042]
<6>[    0.042273] ACPI: Reserving BATB table memory at [mem 0x420a3000-0x420a3049]
<6>[    0.042274] ACPI: Reserving DMAR table memory at [mem 0x402a1000-0x402a1097]
<6>[    0.042274] ACPI: Reserving FPDT table memory at [mem 0x402a0000-0x402a0043]
<6>[    0.042275] ACPI: Reserving SSDT table memory at [mem 0x4029e000-0x4029f8c5]
<6>[    0.042276] ACPI: Reserving SSDT table memory at [mem 0x4029b000-0x4029d8d2]
<6>[    0.042277] ACPI: Reserving SDEV table memory at [mem 0x4029a000-0x4029a0bb]
<6>[    0.042277] ACPI: Reserving PHAT table memory at [mem 0x40271000-0x4027180b]
<6>[    0.042278] ACPI: Reserving BGRT table memory at [mem 0x40270000-0x40270037]
<6>[    0.042279] ACPI: Reserving UEFI table memory at [mem 0x3e9f4000-0x3e9f4075]
<6>[    0.042430] APIC: Switched APIC routing to: cluster x2apic
<6>[    0.042543] Zone ranges:
<6>[    0.042547]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
<6>[    0.042549]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
<6>[    0.042550]   Normal   [mem 0x0000000100000000-0x000000086fffffff]
<6>[    0.042552] Movable zone start for each node
<6>[    0.042552] Early memory node ranges
<6>[    0.042553]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
<6>[    0.042554]   node   0: [mem 0x0000000000100000-0x000000003e9f3fff]
<6>[    0.042555]   node   0: [mem 0x00000000424ff000-0x00000000744fefff]
<6>[    0.042556]   node   0: [mem 0x0000000077fff000-0x0000000077ffffff]
<6>[    0.042556]   node   0: [mem 0x0000000100000000-0x0000000187ffffff]
<6>[    0.042557]   node   0: [mem 0x000000018a000000-0x000000086fffffff]
<6>[    0.042559] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fffffff]
<6>[    0.042565] On node 0, zone DMA: 1 pages in unavailable ranges
<6>[    0.042616] On node 0, zone DMA: 96 pages in unavailable ranges
<6>[    0.047801] On node 0, zone DMA32: 15115 pages in unavailable ranges
<6>[    0.048030] On node 0, zone DMA32: 15104 pages in unavailable ranges
<6>[    0.134482] On node 0, zone Normal: 8192 pages in unavailable ranges
<6>[    0.518850] kasan: KernelAddressSanitizer initialized
<6>[    0.519598] ACPI: PM-Timer IO Port: 0x1808
<6>[    0.519611] ACPI: X2APIC_NMI (uid[0xffffffff] high level lint[0x1])
<6>[    0.519650] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
<6>[    0.519654] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
<6>[    0.519657] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
<6>[    0.519662] ACPI: Using ACPI (MADT) for SMP configuration information
<6>[    0.519664] ACPI: HPET id: 0x8086a201 base: 0xfed00000
<6>[    0.519670] TSC deadline timer available
<6>[    0.519672] smpboot: Allowing 18 CPUs, 0 hotplug CPUs
<6>[    0.519685] [mem 0x88800000-0xbfffffff] available for PCI devices
<6>[    0.519691] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
<6>[    0.531322] setup_percpu: NR_CPUS:32 nr_cpumask_bits:18 nr_cpu_ids:18 nr_node_ids:1
<6>[    0.541281] percpu: Embedded 1287 pages/cpu s222504 r8192 d5040856 u6291456
<7>[    0.541288] pcpu-alloc: s222504 r8192 d5040856 u6291456 alloc=3*2097152
<7>[    0.541292] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 
<7>[    0.541299] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 
<7>[    0.541305] pcpu-alloc: [0] 16 [0] 17 
<5>[    0.541356] 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.541447] DMAR: IOMMU enabled
<5>[    0.541450] Unknown kernel command line parameters "sina_toram BOOT_IMAGE=/isolinux/bzImage", will be passed to user space.
<5>[    0.541463] random: crng init done
<6>[    0.544319] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
<6>[    0.545761] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
<6>[    0.547313] Built 1 zonelists, mobility grouping on.  Total pages: 8122573
<6>[    0.547317] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
<6>[    0.547318] stackdepot: allocating hash table via alloc_large_system_hash
<6>[    0.547320] stackdepot hash table entries: 1048576 (order: 12, 16777216 bytes, linear)
<6>[    0.548745] software IO TLB: area num 32.
<6>[    3.437877] Memory: 27931004K/33007184K available (62419K kernel code, 20865K rwdata, 25524K rodata, 12288K init, 4052K bss, 5076180K reserved, 0K cma-reserved)
<6>[    3.438148] PAX: initializing 52201 (978) autoslabs for vmlinux
<6>[    3.672125] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=18, Nodes=1
<6>[    3.672179] ftrace: allocating 60872 entries in 238 pages
<6>[    3.770562] ftrace: allocated 238 pages with 6 groups
<6>[    3.773220] Dynamic Preempt: voluntary
<6>[    3.773731] rcu: Preemptible hierarchical RCU implementation.
<6>[    3.773732] rcu: 	RCU event tracing is enabled.
<6>[    3.773734] rcu: 	RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=18.
<6>[    3.773736] 	Trampoline variant of Tasks RCU enabled.
<6>[    3.773737] 	Rude variant of Tasks RCU enabled.
<6>[    3.773738] 	Tracing variant of Tasks RCU enabled.
<6>[    3.773740] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
<6>[    3.773742] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=18
<6>[    3.783697] NR_IRQS: 4352, nr_irqs: 2200, preallocated irqs: 16
<6>[    3.784164] rcu: srcu_init: Setting srcu_struct sizes based on contention.
<6>[    3.784431] Console: colour dummy device 80x25
<6>[    3.784436] printk: legacy console [tty1] enabled
<6>[    3.784471] ACPI: Core revision 20230628
<6>[    3.785119] hpet: HPET dysfunctional in PC10. Force disabled.
<6>[    3.785120] APIC: Switch to symmetric I/O mode setup
<6>[    3.785123] DMAR: Host address width 42
<6>[    3.785124] DMAR: DRHD base: 0x000000fc800000 flags: 0x0
<6>[    3.785154] DMAR: dmar0: reg_base_addr fc800000 ver 7:0 cap c9de008cee690462 ecap 12ca9a00f0ef5e
<6>[    3.785157] DMAR: DRHD base: 0x000000fc801000 flags: 0x1
<6>[    3.785163] DMAR: dmar1: reg_base_addr fc801000 ver 7:0 cap c9de008cee690462 ecap 12ca9a00f0efde
<6>[    3.785165] DMAR: SATC flags: 0x1
<6>[    3.785177] DMAR-IR: IOAPIC id 2 under DRHD base  0xfc801000 IOMMU 1
<6>[    3.785179] DMAR-IR: HPET id 0 under DRHD base 0xfc801000
<6>[    3.785180] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
<6>[    3.786736] DMAR-IR: Enabled IRQ remapping in x2apic mode
<6>[    3.790855] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b2c8ec87c7, max_idle_ns: 440795278598 ns
<6>[    3.790867] Calibrating delay loop (skipped), value calculated using timer frequency.. 5990.40 BogoMIPS (lpj=2995200)
<6>[    3.790931] CPU0: Thermal monitoring enabled (TM1)
<6>[    3.790934] x86/cpu: User Mode Instruction Prevention (UMIP) activated
<6>[    3.790946] CET detected: Indirect Branch Tracking enabled
<6>[    3.791134] process: using mwait in idle threads
<6>[    3.791139] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
<6>[    3.791140] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
<6>[    3.791144] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization (complete, automated)
<6>[    3.791150] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
<6>[    3.791152] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
<6>[    3.791157] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
<6>[    3.791160] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
<6>[    3.791173] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
<6>[    3.791174] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
<6>[    3.791175] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
<6>[    3.791176] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
<6>[    3.791177] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
<6>[    3.791179] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
<6>[    3.791180] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
<6>[    3.791181] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
<6>[    3.791182] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
<6>[    3.791861] Freeing SMP alternatives memory: 44K
<6>[    3.791861] pid_max: default: 32768 minimum: 501
<6>[    3.791861] LSM: initializing lsm=capability,sina
<6>[    3.791861] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
<6>[    3.791861] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
<6>[    3.791861] smpboot: CPU0: Intel(R) Core(TM) Ultra 5 125H (family: 0x6, model: 0xaa, stepping: 0x4)
<6>[    3.791861] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.791861] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.791861] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.791861] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Meteorlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
<6>[    3.791861] core: cpu_core PMU driver: 
<6>[    3.791861] ... version:                5
<6>[    3.791861] ... bit width:              48
<6>[    3.791861] ... generic registers:      8
<6>[    3.791861] ... value mask:             0000ffffffffffff
<6>[    3.791861] ... max period:             00007fffffffffff
<6>[    3.791861] ... fixed-purpose events:   4
<6>[    3.791861] ... event mask:             0001000f000000ff
<6>[    3.791861] signal: max sigframe size: 3232
<6>[    3.791861] Estimated ratio of average max frequency by base frequency (times 1024): 1467
<6>[    3.791861] rcu: Hierarchical SRCU implementation.
<6>[    3.791861] rcu: 	Max phase no-delay instances is 400.
<6>[    3.793747] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
<6>[    3.794084] smp: Bringing up secondary CPUs ...
<6>[    3.794220] smpboot: x86: Booting SMP configuration:
<6>[    3.794222] .... node  #0, CPUs:        #1  #3  #6  #8  #9 #10 #11 #12 #13 #14 #15 #16 #17
<6>[    0.007555] core: cpu_atom PMU driver: PEBS-via-PT 
<6>[    0.007555] ... version:                5
<6>[    0.007555] ... bit width:              48
<6>[    0.007555] ... generic registers:      8
<6>[    0.007555] ... value mask:             0000ffffffffffff
<6>[    0.007555] ... max period:             00007fffffffffff
<6>[    0.007555] ... fixed-purpose events:   3
<6>[    0.007555] ... event mask:             00000007000000ff
<4>[    3.806045]   #2  #4  #5  #7
<6>[    3.829530] smp: Brought up 1 node, 14 CPUs
<6>[    3.829541] smpboot: Max logical packages: 2
<6>[    3.829543] smpboot: Total of 14 processors activated (83865.60 BogoMIPS)
<6>[    3.832072] devtmpfs: initialized
<6>[    3.835238] ACPI: PM: Registering ACPI NVS region [mem 0x3e9f4000-0x3fa2efff] (17018880 bytes)
<6>[    3.835334] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
<6>[    3.835347] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
<6>[    3.835883] pinctrl core: initialized pinctrl subsystem
<6>[    3.836133] PM: RTC time: 09:32:37, date: 2024-09-23
<6>[    3.836297] NET: Registered PF_NETLINK/PF_ROUTE protocol family
<6>[    3.836652] ramoops: using module parameters
<6>[    3.836877] ramoops: uncorrectable error in header
<6>[    3.836972] ramoops: uncorrectable error in header
<6>[    3.837059] ramoops: uncorrectable error in header
<6>[    3.837145] ramoops: uncorrectable error in header
<6>[    3.837264] ramoops: uncorrectable error in header
<6>[    3.837350] ramoops: uncorrectable error in header
<6>[    3.837440] ramoops: uncorrectable error in header
<6>[    3.837524] ramoops: uncorrectable error in header
<6>[    3.837615] ramoops: uncorrectable error in header
<6>[    3.837703] ramoops: uncorrectable error in header
<6>[    3.838897] pstore: Using crash dump compression: deflate
<6>[    3.838900] pstore: Registered ramoops as persistent store backend
<6>[    3.838902] ramoops: using 0x2000000@0x188000000, ecc: 16
<6>[    3.839140] thermal_sys: Registered thermal governor 'step_wise'
<6>[    3.839142] thermal_sys: Registered thermal governor 'user_space'
<6>[    3.839201] cpuidle: using governor menu
<6>[    3.839201] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
<6>[    3.839880] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
<6>[    3.839892] PCI: ECAM [mem 0xc0000000-0xcfffffff] reserved as E820 entry
<6>[    3.846779] PCI: Using configuration type 1 for base access
<6>[    3.846910] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
<6>[    3.846953] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
<6>[    3.846953] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
<6>[    3.847076] ACPI: Added _OSI(Module Device)
<6>[    3.847076] ACPI: Added _OSI(Processor Device)
<6>[    3.847076] ACPI: Added _OSI(3.0 _SCP Extensions)
<6>[    3.847077] ACPI: Added _OSI(Processor Aggregator Device)
<6>[    4.303030] ACPI: 23 ACPI AML tables successfully acquired and loaded
<6>[    4.311590] ACPI: EC: EC started
<6>[    4.311592] ACPI: EC: interrupt blocked
<6>[    4.312503] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
<6>[    4.312504] ACPI: EC: Boot ECDT EC used to handle transactions
<5>[    4.315395] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
<6>[    5.245930] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
<6>[    5.245939] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
<6>[    5.274424] ACPI: _OSC evaluated successfully for all CPUs
<6>[    5.274427] ACPI: Interpreter enabled
<6>[    5.274518] ACPI: PM: (supports S0 S5)
<6>[    5.274521] ACPI: Using IOAPIC for interrupt routing
<6>[    5.274672] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
<6>[    5.274674] PCI: Ignoring E820 reservations for host bridge windows
<6>[    5.278955] ACPI: Enabled 10 GPEs in block 00 to 7F
<6>[    5.278977] ACPI: Enabled 8 GPEs in block 80 to DF
<6>[    5.295975] ACPI: \_SB_.PC00.LPCB.EC__.PUBS: New power resource
<6>[    5.316222] ACPI: \_SB_.PC00.XHCI.RHUB.HS08.WWPR: New power resource
<6>[    5.384856] ACPI: \_SB_.PC00.RP01.PXP_: New power resource
<6>[    5.410917] ACPI: \_SB_.PC00.RP06.PXP_: New power resource
<6>[    5.421780] ACPI: \_SB_.PC00.RP07.PXP_: New power resource
<6>[    5.442316] ACPI: \_SB_.PC00.RP10.PXP_: New power resource
<6>[    5.464983] ACPI: \_SB_.PC00.TBT0: New power resource
<6>[    5.465560] ACPI: \_SB_.PC00.TBT1: New power resource
<6>[    5.466173] ACPI: \_SB_.PC00.D3C_: New power resource
<6>[    5.610950] ACPI: \PIN_: New power resource
<6>[    5.611093] ACPI: \PINP: New power resource
<6>[    5.615303] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
<6>[    5.615315] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
<6>[    5.626147] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
<6>[    5.638194] PCI host bridge to bus 0000:00
<6>[    5.638208] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
<6>[    5.638212] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
<6>[    5.638214] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
<6>[    5.638216] pci_bus 0000:00: root bus resource [mem 0x90000000-0xbfffffff window]
<6>[    5.638217] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x3ffbfffffff window]
<6>[    5.638223] pci_bus 0000:00: root bus resource [bus 00-fe]
<6>[    5.786066] pci 0000:00:00.0: [8086:7d14] type 00 class 0x060000 conventional PCI endpoint
<6>[    5.786581] pci 0000:00:02.0: [8086:7d55] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
<6>[    5.786596] pci 0000:00:02.0: BAR 0 [mem 0x4058000000-0x4058ffffff 64bit pref]
<6>[    5.786607] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
<6>[    5.786652] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
<6>[    5.786656] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
<6>[    5.786708] pci 0000:00:02.0: PME# supported from D0 D3hot
<6>[    5.788446] pci 0000:00:04.0: [8086:7d03] type 00 class 0x118000 conventional PCI endpoint
<6>[    5.788464] pci 0000:00:04.0: BAR 0 [mem 0x405a6c0000-0x405a6dffff 64bit]
<6>[    5.792165] pci 0000:00:06.0: [8086:7e4d] type 01 class 0x060400 PCIe Root Port
<6>[    5.792194] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[    5.792210] pci 0000:00:06.0:   bridge window [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[    5.792317] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
<6>[    5.801677] pci 0000:00:06.1: [8086:7eca] type 01 class 0x060400 PCIe Root Port
<6>[    5.801708] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[    5.801714] pci 0000:00:06.1:   bridge window [mem 0xaac00000-0xaacfffff]
<6>[    5.801819] pci 0000:00:06.1: PME# supported from D0 D3hot D3cold
<6>[    5.811957] pci 0000:00:07.0: [8086:7ec4] type 01 class 0x060400 PCIe Root Port
<6>[    5.811986] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[    5.811993] pci 0000:00:07.0:   bridge window [mem 0x9e000000-0xaa1fffff]
<6>[    5.812003] pci 0000:00:07.0:   bridge window [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[    5.812231] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
<6>[    5.821187] pci 0000:00:07.2: [8086:7ec6] type 01 class 0x060400 PCIe Root Port
<6>[    5.821217] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[    5.821224] pci 0000:00:07.2:   bridge window [mem 0x90000000-0x9c1fffff]
<6>[    5.821234] pci 0000:00:07.2:   bridge window [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[    5.821456] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
<6>[    5.830425] pci 0000:00:08.0: [8086:7e4c] type 00 class 0x088000 conventional PCI endpoint
<6>[    5.830443] pci 0000:00:08.0: BAR 0 [mem 0x405a70f000-0x405a70ffff 64bit]
<6>[    5.830917] pci 0000:00:0a.0: [8086:7d0d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
<6>[    5.830927] pci 0000:00:0a.0: BAR 0 [mem 0x405a680000-0x405a6bffff 64bit]
<6>[    5.830946] pci 0000:00:0a.0: enabling Extended Tags
<6>[    5.831129] pci 0000:00:0b.0: [8086:7d1d] type 00 class 0x120000 PCIe Root Complex Integrated Endpoint
<6>[    5.831140] pci 0000:00:0b.0: BAR 0 [mem 0x4050000000-0x4057ffffff 64bit]
<6>[    5.831154] pci 0000:00:0b.0: BAR 4 [mem 0x405a70e000-0x405a70efff 64bit]
<6>[    5.831588] pci 0000:00:0d.0: [8086:7ec0] type 00 class 0x0c0330 conventional PCI endpoint
<6>[    5.831603] pci 0000:00:0d.0: BAR 0 [mem 0x405a6f0000-0x405a6fffff 64bit]
<6>[    5.831670] pci 0000:00:0d.0: PME# supported from D3hot D3cold
<6>[    5.837590] pci 0000:00:0d.2: [8086:7ec2] type 00 class 0x0c0340 conventional PCI endpoint
<6>[    5.837607] pci 0000:00:0d.2: BAR 0 [mem 0x405a640000-0x405a67ffff 64bit]
<6>[    5.837618] pci 0000:00:0d.2: BAR 2 [mem 0x405a70d000-0x405a70dfff 64bit]
<6>[    5.837677] pci 0000:00:0d.2: supports D1 D2
<6>[    5.837679] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.839793] pci 0000:00:0d.3: [8086:7ec3] type 00 class 0x0c0340 conventional PCI endpoint
<6>[    5.839810] pci 0000:00:0d.3: BAR 0 [mem 0x405a600000-0x405a63ffff 64bit]
<6>[    5.839821] pci 0000:00:0d.3: BAR 2 [mem 0x405a70c000-0x405a70cfff 64bit]
<6>[    5.839878] pci 0000:00:0d.3: supports D1 D2
<6>[    5.839880] pci 0000:00:0d.3: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.842041] pci 0000:00:14.0: [8086:7e7d] type 00 class 0x0c0330 conventional PCI endpoint
<6>[    5.842058] pci 0000:00:14.0: BAR 0 [mem 0x405a6e0000-0x405a6effff 64bit]
<6>[    5.842130] pci 0000:00:14.0: PME# supported from D3hot D3cold
<6>[    5.848169] pci 0000:00:14.2: [8086:7e7f] type 00 class 0x050000 conventional PCI endpoint
<6>[    5.848188] pci 0000:00:14.2: BAR 0 [mem 0x405a704000-0x405a707fff 64bit]
<6>[    5.848200] pci 0000:00:14.2: BAR 2 [mem 0x405a70b000-0x405a70bfff 64bit]
<6>[    5.848470] pci 0000:00:15.0: [8086:7e78] type 00 class 0x0c8000 conventional PCI endpoint
<6>[    5.848521] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
<6>[    5.852284] pci 0000:00:16.0: [8086:7e70] type 00 class 0x078000 conventional PCI endpoint
<6>[    5.852304] pci 0000:00:16.0: BAR 0 [mem 0x405a709000-0x405a709fff 64bit]
<6>[    5.852397] pci 0000:00:16.0: PME# supported from D3hot
<6>[    5.858283] pci 0000:00:1c.0: [8086:7e38] type 01 class 0x060400 PCIe Root Port
<6>[    5.858312] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<6>[    5.858321] pci 0000:00:1c.0:   bridge window [mem 0xaa200000-0xaabfffff]
<6>[    5.858333] pci 0000:00:1c.0:   bridge window [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[    5.860195] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
<6>[    5.870333] pci 0000:00:1f.0: [8086:7e02] type 00 class 0x060100 conventional PCI endpoint
<6>[    5.874168] pci 0000:00:1f.3: [8086:7e28] type 00 class 0x040380 conventional PCI endpoint
<6>[    5.874220] pci 0000:00:1f.3: BAR 0 [mem 0x405a700000-0x405a703fff 64bit]
<6>[    5.874295] pci 0000:00:1f.3: BAR 4 [mem 0x4059000000-0x40591fffff 64bit]
<6>[    5.874423] pci 0000:00:1f.3: PME# supported from D3hot D3cold
<6>[    5.874829] pci 0000:00:1f.4: [8086:7e22] type 00 class 0x0c0500 conventional PCI endpoint
<6>[    5.874852] pci 0000:00:1f.4: BAR 0 [mem 0x405a708000-0x405a7080ff 64bit]
<6>[    5.874879] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
<6>[    5.878505] pci 0000:00:1f.5: [8086:7e23] type 00 class 0x0c8000 conventional PCI endpoint
<6>[    5.878540] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
<6>[    5.878937] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[    5.879092] pci 0000:04:00.0: [1cc4:660c] type 00 class 0x010802 PCIe Endpoint
<6>[    5.879111] pci 0000:04:00.0: BAR 0 [mem 0xaac00000-0xaac03fff 64bit]
<6>[    5.879847] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[    5.880005] pci 0000:20:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Upstream Port
<6>[    5.880061] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[    5.880076] pci 0000:20:00.0:   bridge window [mem 0x9e000000-0xa9ffffff]
<6>[    5.880095] pci 0000:20:00.0:   bridge window [mem 0x4010000000-0x402befffff 64bit pref]
<6>[    5.880117] pci 0000:20:00.0: enabling Extended Tags
<6>[    5.880315] pci 0000:20:00.0: supports D1 D2
<6>[    5.880316] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.880428] 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.883898] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[    5.884068] pci 0000:21:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.884124] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[    5.884180] pci 0000:21:00.0: enabling Extended Tags
<6>[    5.884397] pci 0000:21:00.0: supports D1 D2
<6>[    5.884399] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.884819] pci 0000:21:01.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.884876] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[    5.884891] pci 0000:21:01.0:   bridge window [mem 0xa6000000-0xa9ffffff]
<6>[    5.884910] pci 0000:21:01.0:   bridge window [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[    5.884935] pci 0000:21:01.0: enabling Extended Tags
<6>[    5.885155] pci 0000:21:01.0: supports D1 D2
<6>[    5.885156] pci 0000:21:01.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.885551] pci 0000:21:02.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.885608] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[    5.885623] pci 0000:21:02.0:   bridge window [mem 0xa2000000-0xa5ffffff]
<6>[    5.885642] pci 0000:21:02.0:   bridge window [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[    5.885667] pci 0000:21:02.0: enabling Extended Tags
<6>[    5.885887] pci 0000:21:02.0: supports D1 D2
<6>[    5.885888] pci 0000:21:02.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.886291] pci 0000:21:03.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.886348] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[    5.886363] pci 0000:21:03.0:   bridge window [mem 0x9e000000-0xa1ffffff]
<6>[    5.886382] pci 0000:21:03.0:   bridge window [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[    5.886406] pci 0000:21:03.0: enabling Extended Tags
<6>[    5.886637] pci 0000:21:03.0: supports D1 D2
<6>[    5.886638] pci 0000:21:03.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.887049] pci 0000:21:04.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.887105] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[    5.887160] pci 0000:21:04.0: enabling Extended Tags
<6>[    5.887382] pci 0000:21:04.0: supports D1 D2
<6>[    5.887383] pci 0000:21:04.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.887792] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[    5.887927] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[    5.888062] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[    5.888196] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[    5.888332] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[    5.888477] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[    5.888672] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[    5.888795] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<7>[    5.888842] pci_bus 0000:00: on NUMA node 0
<6>[    5.932942] ACPI: \_SB_.PEPD: Duplicate LPS0 _DSM functions (mask: 0x1)
<6>[   12.253177] Low-power S0 idle used by default for system suspend
<6>[   12.258163] ACPI: EC: interrupt unblocked
<6>[   12.258166] ACPI: EC: event unblocked
<6>[   12.258186] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
<6>[   12.258189] ACPI: EC: GPE=0x6e
<6>[   12.258192] ACPI: \_SB_.PC00.LPCB.EC__: Boot ECDT EC initialization complete
<6>[   12.258199] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
<6>[   12.258484] iommu: Default domain type: Translated
<6>[   12.258486] iommu: DMA domain TLB invalidation policy: lazy mode
<5>[   12.258692] SCSI subsystem initialized
<7>[   12.258774] libata version 3.00 loaded.
<6>[   12.258933] ACPI: bus type USB registered
<6>[   12.258979] usbcore: registered new interface driver usbfs
<6>[   12.258987] usbcore: registered new interface driver hub
<6>[   12.258987] usbcore: registered new device driver usb
<6>[   12.259135] pps_core: LinuxPPS API ver. 1 registered
<6>[   12.259137] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
<6>[   12.259149] PTP clock support registered
<6>[   12.259268] Advanced Linux Sound Architecture Driver Initialized.
<6>[   12.260146] NetLabel: Initializing
<6>[   12.260147] NetLabel:  domain hash size = 128
<6>[   12.260149] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
<6>[   12.260240] NetLabel:  unlabeled traffic allowed by default
<6>[   12.260299] PCI: Using ACPI for IRQ routing
<7>[   12.278175] PCI: pci_cache_line_size set to 64 bytes
<6>[   12.278293] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
<7>[   12.278407] e820: reserve RAM buffer [mem 0x3e9f4000-0x3fffffff]
<7>[   12.278418] e820: reserve RAM buffer [mem 0x744ff000-0x77ffffff]
<6>[   12.278462] pci 0000:00:02.0: vgaarb: setting as boot VGA device
<6>[   12.278462] pci 0000:00:02.0: vgaarb: bridge control possible
<6>[   12.278462] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
<6>[   12.278462] vgaarb: loaded
<6>[   12.286187] clocksource: Switched to clocksource tsc-early
<6>[   12.286687] pnp: PnP ACPI init
<6>[   12.289021] system 00:00: [io  0x0680-0x069f] has been reserved
<6>[   12.289026] system 00:00: [io  0x164e-0x164f] has been reserved
<6>[   12.289645] system 00:01: [io  0x1854-0x1857] has been reserved
<6>[   12.290137] system 00:04: [io  0x1800-0x189f] could not be reserved
<6>[   12.290140] system 00:04: [io  0x0800-0x087f] has been reserved
<6>[   12.290142] system 00:04: [io  0x0880-0x08ff] has been reserved
<6>[   12.290144] system 00:04: [io  0x0900-0x097f] has been reserved
<6>[   12.290146] system 00:04: [io  0x0980-0x09ff] has been reserved
<6>[   12.290148] system 00:04: [io  0x0a00-0x0a7f] has been reserved
<6>[   12.290150] system 00:04: [io  0x0a80-0x0aff] has been reserved
<6>[   12.290151] system 00:04: [io  0x0b00-0x0b7f] has been reserved
<6>[   12.290153] system 00:04: [io  0x0b80-0x0bff] has been reserved
<6>[   12.290155] system 00:04: [io  0x15e0-0x15ef] has been reserved
<6>[   12.290161] system 00:04: [io  0x1600-0x167f] could not be reserved
<6>[   12.290167] system 00:04: [io  0x1640-0x165f] could not be reserved
<6>[   12.290169] system 00:04: [mem 0xc0000000-0xcfffffff] has been reserved
<6>[   12.290172] system 00:04: [mem 0xfed10000-0xfed13fff] has been reserved
<6>[   12.290174] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
<6>[   12.290176] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
<6>[   12.290178] system 00:04: [mem 0xfeb00000-0xfebfffff] has been reserved
<6>[   12.290180] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
<6>[   12.290182] system 00:04: [mem 0xfed90000-0xfed93fff] has been reserved
<6>[   12.298779] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
<6>[   12.298788] system 00:05: [mem 0x00000000-0x00000fff] could not be reserved
<6>[   12.298794] system 00:05: [mem 0x00000000-0x00000fff] could not be reserved
<6>[   12.298797] system 00:05: [mem 0xc0000000-0xcfffffff] has been reserved
<6>[   12.298802] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
<6>[   12.298809] system 00:05: [mem 0xfc800000-0xfc81ffff] could not be reserved
<6>[   12.298818] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
<6>[   12.298820] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
<6>[   12.303678] system 00:06: [io  0xff00-0xfffe] has been reserved
<4>[   12.308055] pnp 00:08: disabling [mem 0x000c0000-0x000c3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[   12.308059] pnp 00:08: disabling [mem 0x000c8000-0x000cbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[   12.308062] pnp 00:08: disabling [mem 0x000d0000-0x000d3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[   12.308064] pnp 00:08: disabling [mem 0x000d8000-0x000dbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<6>[   12.308155] system 00:08: [mem 0x00000000-0x0009ffff] could not be reserved
<6>[   12.308161] system 00:08: [mem 0x000e0000-0x000e3fff] could not be reserved
<6>[   12.308167] system 00:08: [mem 0x000e8000-0x000ebfff] could not be reserved
<6>[   12.308173] system 00:08: [mem 0x000f0000-0x000fffff] could not be reserved
<6>[   12.308179] system 00:08: [mem 0x00100000-0x8fffffff] could not be reserved
<6>[   12.308186] system 00:08: [mem 0xfec00000-0xfed3ffff] could not be reserved
<6>[   12.308192] system 00:08: [mem 0xfed4c000-0xffffffff] could not be reserved
<6>[   12.309186] pnp: PnP ACPI: found 9 devices
<6>[   12.320355] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
<6>[   12.320692] NET: Registered PF_INET protocol family
<6>[   12.320778] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
<6>[   12.323845] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
<6>[   12.323879] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
<6>[   12.323917] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
<6>[   12.324195] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
<6>[   12.324380] TCP: Hash tables configured (established 262144 bind 65536)
<6>[   12.324506] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
<6>[   12.324594] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
<6>[   12.324817] NET: Registered PF_UNIX/PF_LOCAL protocol family
<6>[   12.325383] pci 0000:00:06.0: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
<6>[   12.325389] pci 0000:00:06.0: bridge window [mem 0x00100000-0x000fffff] to [bus 1c] add_size 200000 add_align 100000
<6>[   12.325393] pci 0000:21:01.0: bridge window [io  0x1000-0x0fff] to [bus 23-2e] add_size 1000
<6>[   12.325396] pci 0000:21:02.0: bridge window [io  0x1000-0x0fff] to [bus 2f-3a] add_size 1000
<6>[   12.325399] pci 0000:21:03.0: bridge window [io  0x1000-0x0fff] to [bus 3b-48] add_size 1000
<6>[   12.325402] pci 0000:20:00.0: bridge window [io  0x1000-0x0fff] to [bus 21-49] add_size 3000
<6>[   12.325405] pci 0000:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 20-49] add_size 4000
<6>[   12.325407] pci 0000:00:07.2: bridge window [io  0x1000-0x0fff] to [bus 50-79] add_size 1000
<6>[   12.325409] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
<6>[   12.325423] pci 0000:00:06.0: bridge window [mem 0x9c200000-0x9c3fffff]: assigned
<6>[   12.325427] pci 0000:00:06.0: bridge window [io  0x2000-0x2fff]: assigned
<6>[   12.325430] pci 0000:00:07.0: bridge window [io  0x3000-0x6fff]: assigned
<6>[   12.325432] pci 0000:00:07.2: bridge window [io  0x7000-0x7fff]: assigned
<6>[   12.325435] pci 0000:00:15.0: BAR 0 [mem 0x402c000000-0x402c000fff 64bit]: assigned
<6>[   12.325475] pci 0000:00:1c.0: bridge window [io  0x8000-0x8fff]: assigned
<6>[   12.325478] pci 0000:00:1f.5: BAR 0 [mem 0x9c400000-0x9c400fff]: assigned
<6>[   12.325514] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[   12.325519] pci 0000:00:06.0:   bridge window [io  0x2000-0x2fff]
<6>[   12.325526] pci 0000:00:06.0:   bridge window [mem 0x9c200000-0x9c3fffff]
<6>[   12.325532] pci 0000:00:06.0:   bridge window [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[   12.325540] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[   12.325545] pci 0000:00:06.1:   bridge window [mem 0xaac00000-0xaacfffff]
<6>[   12.325553] pci 0000:20:00.0: bridge window [io  0x3000-0x5fff]: assigned
<6>[   12.325565] pci 0000:21:01.0: bridge window [io  0x3000-0x3fff]: assigned
<6>[   12.325567] pci 0000:21:02.0: bridge window [io  0x4000-0x4fff]: assigned
<6>[   12.325569] pci 0000:21:03.0: bridge window [io  0x5000-0x5fff]: assigned
<6>[   12.325583] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[   12.325605] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[   12.325609] pci 0000:21:01.0:   bridge window [io  0x3000-0x3fff]
<6>[   12.325617] pci 0000:21:01.0:   bridge window [mem 0xa6000000-0xa9ffffff]
<6>[   12.325622] pci 0000:21:01.0:   bridge window [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[   12.325632] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[   12.325636] pci 0000:21:02.0:   bridge window [io  0x4000-0x4fff]
<6>[   12.325643] pci 0000:21:02.0:   bridge window [mem 0xa2000000-0xa5ffffff]
<6>[   12.325649] pci 0000:21:02.0:   bridge window [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[   12.325659] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[   12.325662] pci 0000:21:03.0:   bridge window [io  0x5000-0x5fff]
<6>[   12.325670] pci 0000:21:03.0:   bridge window [mem 0x9e000000-0xa1ffffff]
<6>[   12.325676] pci 0000:21:03.0:   bridge window [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[   12.325686] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[   12.325705] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[   12.325709] pci 0000:20:00.0:   bridge window [io  0x3000-0x5fff]
<6>[   12.325716] pci 0000:20:00.0:   bridge window [mem 0x9e000000-0xa9ffffff]
<6>[   12.325722] pci 0000:20:00.0:   bridge window [mem 0x4010000000-0x402befffff 64bit pref]
<6>[   12.325732] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[   12.325734] pci 0000:00:07.0:   bridge window [io  0x3000-0x6fff]
<6>[   12.325738] pci 0000:00:07.0:   bridge window [mem 0x9e000000-0xaa1fffff]
<6>[   12.325742] pci 0000:00:07.0:   bridge window [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[   12.325747] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[   12.325750] pci 0000:00:07.2:   bridge window [io  0x7000-0x7fff]
<6>[   12.325754] pci 0000:00:07.2:   bridge window [mem 0x90000000-0x9c1fffff]
<6>[   12.325758] pci 0000:00:07.2:   bridge window [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[   12.325764] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<6>[   12.325769] pci 0000:00:1c.0:   bridge window [io  0x8000-0x8fff]
<6>[   12.325776] pci 0000:00:1c.0:   bridge window [mem 0xaa200000-0xaabfffff]
<6>[   12.325782] pci 0000:00:1c.0:   bridge window [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[   12.325790] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
<6>[   12.325793] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
<6>[   12.325795] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
<6>[   12.325797] pci_bus 0000:00: resource 7 [mem 0x90000000-0xbfffffff window]
<6>[   12.325798] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x3ffbfffffff window]
<6>[   12.325800] pci_bus 0000:1c: resource 0 [io  0x2000-0x2fff]
<6>[   12.325802] pci_bus 0000:1c: resource 1 [mem 0x9c200000-0x9c3fffff]
<6>[   12.325804] pci_bus 0000:1c: resource 2 [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[   12.325806] pci_bus 0000:04: resource 1 [mem 0xaac00000-0xaacfffff]
<6>[   12.325808] pci_bus 0000:20: resource 0 [io  0x3000-0x6fff]
<6>[   12.325810] pci_bus 0000:20: resource 1 [mem 0x9e000000-0xaa1fffff]
<6>[   12.325811] pci_bus 0000:20: resource 2 [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[   12.325813] pci_bus 0000:21: resource 0 [io  0x3000-0x5fff]
<6>[   12.325815] pci_bus 0000:21: resource 1 [mem 0x9e000000-0xa9ffffff]
<6>[   12.325817] pci_bus 0000:21: resource 2 [mem 0x4010000000-0x402befffff 64bit pref]
<6>[   12.325819] pci_bus 0000:23: resource 0 [io  0x3000-0x3fff]
<6>[   12.325821] pci_bus 0000:23: resource 1 [mem 0xa6000000-0xa9ffffff]
<6>[   12.325822] pci_bus 0000:23: resource 2 [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[   12.325824] pci_bus 0000:2f: resource 0 [io  0x4000-0x4fff]
<6>[   12.325826] pci_bus 0000:2f: resource 1 [mem 0xa2000000-0xa5ffffff]
<6>[   12.325828] pci_bus 0000:2f: resource 2 [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[   12.325830] pci_bus 0000:3b: resource 0 [io  0x5000-0x5fff]
<6>[   12.325831] pci_bus 0000:3b: resource 1 [mem 0x9e000000-0xa1ffffff]
<6>[   12.325833] pci_bus 0000:3b: resource 2 [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[   12.325835] pci_bus 0000:50: resource 0 [io  0x7000-0x7fff]
<6>[   12.325837] pci_bus 0000:50: resource 1 [mem 0x90000000-0x9c1fffff]
<6>[   12.325839] pci_bus 0000:50: resource 2 [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[   12.325841] pci_bus 0000:1d: resource 0 [io  0x8000-0x8fff]
<6>[   12.325842] pci_bus 0000:1d: resource 1 [mem 0xaa200000-0xaabfffff]
<6>[   12.325844] pci_bus 0000:1d: resource 2 [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[   12.326252] pci 0000:00:0d.0: enabling device (0000 -> 0002)
<6>[   12.328456] PCI: CLS 0 bytes, default 64
<6>[   12.328489] DMAR: No RMRR found
<6>[   12.328491] DMAR: No ATSR found
<6>[   12.328493] DMAR: IOMMU feature sc_support inconsistent
<6>[   12.328494] DMAR: dmar0: Using Queued invalidation
<6>[   12.328509] DMAR: dmar1: Using Queued invalidation
<6>[   12.329028] Unpacking initramfs...
<6>[   12.329237] pci 0000:00:02.0: Adding to iommu group 0
<6>[   12.329687] pci 0000:00:00.0: Adding to iommu group 1
<6>[   12.329716] pci 0000:00:04.0: Adding to iommu group 2
<6>[   12.329746] pci 0000:00:06.0: Adding to iommu group 3
<6>[   12.329773] pci 0000:00:06.1: Adding to iommu group 4
<6>[   12.329813] pci 0000:00:07.0: Adding to iommu group 5
<6>[   12.329841] pci 0000:00:07.2: Adding to iommu group 6
<6>[   12.329866] pci 0000:00:08.0: Adding to iommu group 7
<6>[   12.329892] pci 0000:00:0a.0: Adding to iommu group 8
<6>[   12.329918] pci 0000:00:0b.0: Adding to iommu group 9
<6>[   12.329960] pci 0000:00:0d.0: Adding to iommu group 10
<6>[   12.329980] pci 0000:00:0d.2: Adding to iommu group 10
<6>[   12.330002] pci 0000:00:0d.3: Adding to iommu group 10
<6>[   12.330037] pci 0000:00:14.0: Adding to iommu group 11
<6>[   12.330057] pci 0000:00:14.2: Adding to iommu group 11
<6>[   12.330087] pci 0000:00:15.0: Adding to iommu group 12
<6>[   12.330121] pci 0000:00:16.0: Adding to iommu group 13
<6>[   12.330150] pci 0000:00:1c.0: Adding to iommu group 14
<6>[   12.330196] pci 0000:00:1f.0: Adding to iommu group 15
<6>[   12.330217] pci 0000:00:1f.3: Adding to iommu group 15
<6>[   12.330237] pci 0000:00:1f.4: Adding to iommu group 15
<6>[   12.330259] pci 0000:00:1f.5: Adding to iommu group 15
<6>[   12.330287] pci 0000:04:00.0: Adding to iommu group 16
<6>[   12.330314] pci 0000:20:00.0: Adding to iommu group 17
<6>[   12.330342] pci 0000:21:00.0: Adding to iommu group 18
<6>[   12.330370] pci 0000:21:01.0: Adding to iommu group 19
<6>[   12.330397] pci 0000:21:02.0: Adding to iommu group 20
<6>[   12.330425] pci 0000:21:03.0: Adding to iommu group 21
<6>[   12.330464] pci 0000:21:04.0: Adding to iommu group 22
<6>[   12.334275] DMAR: Intel(R) Virtualization Technology for Directed I/O
<6>[   12.334278] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
<6>[   12.334279] software IO TLB: mapped [mem 0x0000000070400000-0x0000000074400000] (64MB)
<6>[   12.334303] ACPI: bus type thunderbolt registered
<6>[   12.512391] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
<6>[   12.512395] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
<6>[   12.512397] RAPL PMU: hw unit of domain package 2^-14 Joules
<6>[   12.512398] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
<6>[   12.512399] RAPL PMU: hw unit of domain psys 2^-14 Joules
<6>[   12.516474] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b2c8ec87c7, max_idle_ns: 440795278598 ns
<6>[   12.516617] clocksource: Switched to clocksource tsc
<6>[   12.516676] platform rtc_cmos: registered platform RTC device (no PNP device found)
<6>[   12.527326] workingset: timestamp_bits=62 max_order=23 bucket_order=0
<6>[   12.531746] squashfs: version 4.0 (2009/01/31) Phillip Lougher
<6>[   12.531785] 9p: Installing v9fs 9p2000 file system support
<6>[   12.542096] NET: Registered PF_ALG protocol family
<6>[   12.542156] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
<6>[   12.542159] io scheduler mq-deadline registered
<6>[   12.542162] io scheduler kyber registered
<6>[   12.544283] pcieport 0000:00:06.0: PME: Signaling with IRQ 154
<6>[   12.544371] pcieport 0000:00:06.0: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   12.545990] pcieport 0000:00:06.1: PME: Signaling with IRQ 155
<6>[   12.547414] pcieport 0000:00:07.0: PME: Signaling with IRQ 156
<6>[   12.547495] pcieport 0000:00:07.0: pciehp: Slot #12 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   12.547617] pcieport 0000:00:07.0: pciehp: Slot(12): Card not present
<6>[   12.547644] pci_bus 0000:49: busn_res: [bus 49] is released
<6>[   12.549262] pcieport 0000:00:07.2: PME: Signaling with IRQ 157
<6>[   12.549335] pcieport 0000:00:07.2: pciehp: Slot #14 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   12.551027] pcieport 0000:00:1c.0: PME: Signaling with IRQ 158
<6>[   12.551106] pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   12.551923] pci_bus 0000:3b: busn_res: [bus 3b-48] is released
<3>[   12.552924] pcieport 0000:20:00.0: Unable to change power state from D3cold to D0, device inaccessible
<3>[   12.553095] pcieport 0000:21:00.0: Unable to change power state from D3cold to D0, device inaccessible
<3>[   12.553283] pcieport 0000:21:01.0: Unable to change power state from D3cold to D0, device inaccessible
<6>[   12.553483] pcieport 0000:21:01.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
<3>[   12.553667] pcieport 0000:21:02.0: Unable to change power state from D3cold to D0, device inaccessible
<6>[   12.553859] pcieport 0000:21:02.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   12.554144] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
<6>[   12.556022] pci_bus 0000:2f: busn_res: [bus 2f-3a] is released
<6>[   12.556878] irq/18-pciehp (144) used greatest stack depth: 3801 bytes left
<3>[   12.556907] ==================================================================
<3>[   12.556915] BUG: KASAN: slab-use-after-free in pci_slot_release+0x36e/0x3e0
<3>[   12.556935] Read of size 8 at addr ffff8881071ee488 by task irq/156-pciehp/140
<3>[   12.556944] 
<3>[   12.556950] CPU: 12 PID: 140 Comm: irq/156-pciehp Tainted: G                T   6.8.12-grsec+ #25
<3>[   12.556961] Hardware name: LENOVO 21LVS1CV00/21LVS1CV00, BIOS N45ET18W (1.08 ) 07/08/2024
<3>[   12.556968] Call Trace:
<3>[   12.556972]  <TASK>
<3>[   12.556980]  [<ffffffff84c4636c>] dump_stack_lvl+0x7c/0xe0 ffffc9000112f600
<3>[   12.557000]  [<ffffffff81bf3275>] print_report+0xc5/0x5f0 ffffc9000112f610
<3>[   12.557018]  [<ffffffff824314ae>] ? pci_slot_release+0x36e/0x3e0 ffffc9000112f678
<3>[   12.557030]  [<ffffffff81bf3a5f>] kasan_report+0xaf/0xf0 ffffc9000112f680
<3>[   12.557043]  [<ffffffff824314ae>] ? pci_slot_release+0x36e/0x3e0 ffffc9000112f6b0
<3>[   12.557056]  [<ffffffff824314ae>] ? pci_slot_release+0x36e/0x3e0 ffffc9000112f730
<3>[   12.557067]  [<ffffffff84c4d054>] ? kobject_put+0x194/0x4f0 ffffc9000112f770
<3>[   12.557078]  [<ffffffff82431dea>] ? pci_destroy_slot+0x2a/0x120 ffffc9000112f7a8
<3>[   12.557089]  [<ffffffff8244836c>] ? pciehp_remove+0x4c/0x60 ffffc9000112f7c8
<3>[   12.557101]  [<ffffffff824242ff>] ? pcie_port_remove_service+0x6f/0xb0 ffffc9000112f7e0
<3>[   12.557113]  [<ffffffff82f5fee4>] ? __device_release_driver+0x1b4/0x330 ffffc9000112f7f8
<3>[   12.557127]  [<ffffffff82f60097>] ? device_release_driver+0x27/0x40 ffffc9000112f848
<3>[   12.557137]  [<ffffffff82f5d596>] ? bus_remove_device+0x1f6/0x410 ffffc9000112f860
<3>[   12.557151]  [<ffffffff82f4d266>] ? device_del+0x3a6/0xa00 ffffc9000112f8a8
<3>[   12.557162]  [<ffffffff82f4cec0>] ? __pfx_device_del+0x10/0x10 ffffc9000112f8f8
<3>[   12.557171]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc9000112f928
<3>[   12.557185]  [<ffffffff82f4d8e8>] ? device_unregister+0x18/0xb0 ffffc9000112f978
<3>[   12.557195]  [<ffffffff82424539>] ? remove_iter+0x49/0x60 ffffc9000112f988
<3>[   12.557206]  [<ffffffff824244f0>] ? __pfx_remove_iter+0x10/0x10 ffffc9000112f990
<3>[   12.557217]  [<ffffffff82f4a6ca>] ? device_for_each_child+0xfa/0x180 ffffc9000112f998
<3>[   12.557231]  [<ffffffff82f4a5d0>] ? __pfx_device_for_each_child+0x10/0x10 ffffc9000112f9b8
<3>[   12.557244]  [<ffffffff81dad758>] ? kernfs_name_hash+0x18/0xc0 ffffc9000112f9e0
<3>[   12.557258]  [<ffffffff82424593>] ? pcie_portdrv_remove+0x33/0x80 ffffc9000112fa38
<3>[   12.557270]  [<ffffffff824014a2>] ? pci_device_remove+0xb2/0x1f0 ffffc9000112fa50
<3>[   12.557283]  [<ffffffff82f5fee4>] ? __device_release_driver+0x1b4/0x330 ffffc9000112fa80
<3>[   12.557294]  [<ffffffff82f60097>] ? device_release_driver+0x27/0x40 ffffc9000112fad0
<3>[   12.557304]  [<ffffffff82f5d596>] ? bus_remove_device+0x1f6/0x410 ffffc9000112fae8
<3>[   12.557318]  [<ffffffff82f4d266>] ? device_del+0x3a6/0xa00 ffffc9000112fb30
<3>[   12.557327]  [<ffffffff81baeef8>] ? kfree+0xd8/0x3b0 ffffc9000112fb68
<3>[   12.557338]  [<ffffffff82f4cec0>] ? __pfx_device_del+0x10/0x10 ffffc9000112fb80
<3>[   12.557349]  [<ffffffff823e522b>] ? pci_remove_bus_device+0x1cb/0x4a0 ffffc9000112fc00
<3>[   12.557363]  [<ffffffff84c4d06a>] ? kobject_put+0x1aa/0x4f0 ffffc9000112fc08
<3>[   12.557373]  [<ffffffff823e5130>] ? pci_remove_bus_device+0xd0/0x4a0 ffffc9000112fc40
<3>[   12.557386]  [<ffffffff8244c534>] ? pciehp_unconfigure_device+0x1b4/0x430 ffffc9000112fc80
<3>[   12.557398]  [<ffffffff8244c380>] ? __pfx_pciehp_unconfigure_device+0x10/0x10 ffffc9000112fcb0
<3>[   12.557410]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc9000112fcd8
<3>[   12.557421]  [<ffffffff824495fe>] ? pciehp_disable_slot+0xfe/0x380 ffffc9000112fd30
<3>[   12.557432]  [<ffffffff82449500>] ? __pfx_pciehp_disable_slot+0x10/0x10 ffffc9000112fd48
<3>[   12.557443]  [<ffffffff84cdfc00>] ? __mutex_unlock_slowpath.constprop.0+0x2a0/0x2c0 ffffc9000112fd58
<3>[   12.557458]  [<ffffffff8244a684>] ? pciehp_handle_presence_or_link_change+0x554/0x1070 ffffc9000112fdb8
<3>[   12.557470]  [<ffffffff84ce4d7d>] ? down_read+0x14d/0x250 ffffc9000112fdc8
<3>[   12.557482]  [<ffffffff81682070>] ? __pfx___synchronize_hardirq+0x10/0x10 ffffc9000112fdd0
<3>[   12.557496]  [<ffffffff8244a130>] ? __pfx_pciehp_handle_presence_or_link_change+0x10/0x10 ffffc9000112fde8
<3>[   12.557508]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc9000112fe00
<3>[   12.557520]  [<ffffffff8244f610>] ? pciehp_ist+0x2e0/0x370 ffffc9000112fe68
<3>[   12.557532]  [<ffffffff8167c510>] ? irq_thread_fn+0x90/0x180 ffffc9000112fea8
<3>[   12.557544]  [<ffffffff81680af1>] ? irq_thread+0x1e1/0x3a0 ffffc9000112fed8
<3>[   12.557556]  [<ffffffff8167c480>] ? __pfx_irq_thread_fn+0x10/0x10 ffffc9000112fee0
<3>[   12.557567]  [<ffffffff84cef2b0>] ? __pfx__raw_spin_lock_irqsave+0x10/0x10 ffffc9000112fee8
<3>[   12.557577]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc9000112ff10
<3>[   12.557589]  [<ffffffff81680cc0>] ? __pfx_irq_thread_dtor+0x10/0x10 ffffc9000112ff28
<3>[   12.557601]  [<ffffffff815b75bd>] ? __kthread_parkme+0x8d/0x160 ffffc9000112ff50
<3>[   12.557616]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc9000112ff78
<3>[   12.557628]  [<ffffffff815bbbd0>] ? kthread+0x2d0/0x3c0 ffffc9000112ff90
<3>[   12.557638]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc9000112ff98
<3>[   12.557649]  [<ffffffff8148f8ac>] ? ret_from_fork+0x3c/0x80 ffffc9000112ffc8
<3>[   12.557660]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc9000112ffd0
<3>[   12.557669]  [<ffffffff814031fb>] ? ret_from_fork_asm+0x2b/0x50 ffffc9000112ffe8
<3>[   12.557683]  </TASK>
<3>[   12.557687] 
<3>[   12.557690] Freed by task 140 on cpu 12 at 12.556196s:
<4>[   12.557699]  kasan_save_stack+0x35/0x60
<4>[   12.557709]  kasan_save_track+0x19/0x70
<4>[   12.557717]  kasan_save_free_info+0x4a/0x90
<4>[   12.557725]  poison_slab_object+0x101/0x1a0
<4>[   12.557734]  __kasan_slab_free+0x16/0x40
<4>[   12.557743]  kfree+0xd8/0x3b0
<4>[   12.557750]  device_release+0xa6/0x230
<4>[   12.557759]  kobject_put+0x194/0x4f0
<4>[   12.557766]  pci_remove_bus_device+0xdd/0x4a0
<4>[   12.557775]  pci_remove_bus_device+0xd0/0x4a0
<4>[   12.557784]  pciehp_unconfigure_device+0x1b4/0x430
<4>[   12.557792]  pciehp_disable_slot+0xfe/0x380
<4>[   12.557799]  pciehp_handle_presence_or_link_change+0x554/0x1070
<4>[   12.557806]  pciehp_ist+0x2e0/0x370
<4>[   12.557806]  irq_thread_fn+0x90/0x180
<4>[   12.557806]  irq_thread+0x1e1/0x3a0
<4>[   12.557806]  kthread+0x2d0/0x3c0
<4>[   12.557806]  ret_from_fork+0x3c/0x80
<4>[   12.557806]  ret_from_fork_asm+0x2b/0x50
<3>[   12.557806] 
<3>[   12.557806] The buggy address belongs to the object at ffff8881071ee460
<3>[   12.557806]  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>[   12.557806] The buggy address is located 40 bytes inside of
<3>[   12.557806]  freed 1040+0-byte region [ffff8881071ee460, ffff8881071ee870)
<3>[   12.557806] 
<3>[   12.557806] The buggy address belongs to the physical page:
<4>[   12.557806] page:ffffea00041c7a00 refcount:1 mapcount:0 mapping:0000000000000000 index:0x0 pfn:0x1071e8
<4>[   12.557806] head:ffffea00041c7a00 order:3 entire_mapcount:0 nr_pages_mapped:0 pincount:0
<4>[   12.557806] flags: 0x8000000000000840(slab|head|zone=2)
<4>[   12.557806] page_type: 0xffffffff()
<4>[   12.557806] raw: 8000000000000840 ffff888100524020 ffffffffffffff04 0000000000000000
<4>[   12.557806] raw: 0000000000000000 0000003800000039 00000001ffffffff 0000000000000000
<4>[   12.557806] page dumped because: kasan: bad access detected
<3>[   12.557806] 
<3>[   12.557806] Memory state around the buggy address:
<3>[   12.557806]  ffff8881071ee380: fb fb fb fb fb fb fb fb fb fb fb fb fc fc fc fc
<3>[   12.557806]  ffff8881071ee400: fc fc fc fc fc fc fc fc fc fc fc fc fa fb fb fb
<3>[   12.557806] >ffff8881071ee480: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
<3>[   12.557806]                       ^
<3>[   12.557806]  ffff8881071ee500: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
<3>[   12.557806]  ffff8881071ee580: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
<3>[   12.557806] ==================================================================
<4>[   12.558014] general protection fault, probably for non-canonical address 0xffdfdbdfdfdfdfe6: 0000 [#1] PREEMPT SMP KASAN NOPTI
<1>[   12.558041] KASAN: maybe wild-memory-access in range [0xfefefefefefeff30-0xfefefefefefeff37]
<4>[   12.558056] CPU: 12 PID: 140 Comm: irq/156-pciehp Tainted: G    B           T   6.8.12-grsec+ #25
<4>[   12.558072] Hardware name: LENOVO 21LVS1CV00/21LVS1CV00, BIOS N45ET18W (1.08 ) 07/08/2024
<4>[   12.558084] RIP: 0010:[<ffffffff8243122f>] pci_slot_release+0xef/0x3e0
<4>[   12.558101] 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>[   12.558124] RSP: 0000:ffffc9000112f738 EFLAGS: 00010203
<4>[   12.558140] RAX: 1fdfdfdfdfdfdfe6 RBX: fefefefefefefefe RCX: ffffffff81542b9c
<4>[   12.558152] RDX: ffff88811119e368 RSI: 0000000000000008 RDI: fefefefefefeff36
<4>[   12.558163] RBP: ffff8881071ee488 R08: 0000000000000001 R09: fffffbfff0d26128
<4>[   12.558173] R10: ffffffff86930947 R11: ffffffff86974f30 R12: ffff88811119e370
<4>[   12.558184] R13: ffff88811119e348 R14: dffffc0000000000 R15: ffffed1022233c6d
<4>[   12.558208] RCX: add_taint+0x2c/0xa0
<4>[   12.558220] RDX: autoslab_const_M_slot_P_drivers_pci_slot_260_9_260_9_S_104_A_8_n_83+0x20/0x68 [slab object]
<4>[   12.558238] 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>[   12.558258] RSP: vmalloc[kernel_clone]+0xdf/0x770
<4>[   12.558275] R09: kasan shadow of tainted_mask+0x0/0x40
<4>[   12.558288] R10: tainted_mask+0x7/0x40
<4>[   12.558300] R11: printk_rb_static+0x10/0x80
<4>[   12.558311] R12: autoslab_const_M_slot_P_drivers_pci_slot_260_9_260_9_S_104_A_8_n_83+0x28/0x68 [slab object]
<4>[   12.558326] R13: autoslab_const_M_slot_P_drivers_pci_slot_260_9_260_9_S_104_A_8_n_83+0x0/0x68 [slab object]
<4>[   12.558341] R14: kasan shadow of 0x0
<4>[   12.558351] 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>[   12.558365] FS:  0000000000000000(0000) GS:ffff88880e400000(0000) knlGS:0000000000000000
<4>[   12.558380] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[   12.558391] CR2: 0000000000000000 CR3: 000000000e454001 CR4: 0000000000f60ef0 shadow CR4: 0000000000f60ef0
<4>[   12.558407] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
<4>[   12.558418] DR3: 0000000000000000 DR6: 00000000ffff07f0 DR7: 0000000000000400
<4>[   12.558430] PKRU: 55555554
<4>[   12.558437] ASID: 0000
<4>[   12.558444] Stack:
<4>[   12.558451]  dffffc0000000000 ffff88811119e370 ffff88811119e3ac ffffffff851cc140
<4>[   12.558473]  dffffc0000000000 ffff888103f0cde0 ffff888103f21598 ffffffff84c4d054
<4>[   12.558493]  ffff88811119e348 ffff8881138cfa50 dffffc0000000000 0000000000000000
<4>[   12.558514] Call Trace:
<4>[   12.558520]  <TASK>
<4>[   12.558529]  [<ffffffff84c4d054>] kobject_put+0x194/0x4f0 ffffc9000112f770
<4>[   12.558548]  [<ffffffff82431dea>] pci_destroy_slot+0x2a/0x120 ffffc9000112f7a8
<4>[   12.558567]  [<ffffffff8244836c>] pciehp_remove+0x4c/0x60 ffffc9000112f7c8
<4>[   12.558585]  [<ffffffff824242ff>] pcie_port_remove_service+0x6f/0xb0 ffffc9000112f7e0
<4>[   12.558605]  [<ffffffff82f5fee4>] __device_release_driver+0x1b4/0x330 ffffc9000112f7f8
<4>[   12.558624]  [<ffffffff82f60097>] device_release_driver+0x27/0x40 ffffc9000112f848
<4>[   12.558642]  [<ffffffff82f5d596>] bus_remove_device+0x1f6/0x410 ffffc9000112f860
<4>[   12.558663]  [<ffffffff82f4d266>] device_del+0x3a6/0xa00 ffffc9000112f8a8
<4>[   12.558679]  [<ffffffff82f4cec0>] ? __pfx_device_del+0x10/0x10 ffffc9000112f8f8
<4>[   12.558696]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc9000112f928
<4>[   12.558715]  [<ffffffff82f4d8e8>] device_unregister+0x18/0xb0 ffffc9000112f978
<4>[   12.558732]  [<ffffffff82424539>] remove_iter+0x49/0x60 ffffc9000112f988
<4>[   12.558750]  [<ffffffff824244f0>] ? __pfx_remove_iter+0x10/0x10 ffffc9000112f990
<4>[   12.558768]  [<ffffffff82f4a6ca>] device_for_each_child+0xfa/0x180 ffffc9000112f998
<4>[   12.558789]  [<ffffffff82f4a5d0>] ? __pfx_device_for_each_child+0x10/0x10 ffffc9000112f9b8
<4>[   12.558810]  [<ffffffff81dad758>] ? kernfs_name_hash+0x18/0xc0 ffffc9000112f9e0
<4>[   12.558829]  [<ffffffff82424593>] pcie_portdrv_remove+0x33/0x80 ffffc9000112fa38
<4>[   12.558848]  [<ffffffff824014a2>] pci_device_remove+0xb2/0x1f0 ffffc9000112fa50
<4>[   12.558868]  [<ffffffff82f5fee4>] __device_release_driver+0x1b4/0x330 ffffc9000112fa80
<4>[   12.558887]  [<ffffffff82f60097>] device_release_driver+0x27/0x40 ffffc9000112fad0
<4>[   12.558904]  [<ffffffff82f5d596>] bus_remove_device+0x1f6/0x410 ffffc9000112fae8
<4>[   12.558925]  [<ffffffff82f4d266>] device_del+0x3a6/0xa00 ffffc9000112fb30
<4>[   12.558941]  [<ffffffff81baeef8>] ? kfree+0xd8/0x3b0 ffffc9000112fb68
<4>[   12.558957]  [<ffffffff82f4cec0>] ? __pfx_device_del+0x10/0x10 ffffc9000112fb80
<4>[   12.558977]  [<ffffffff823e522b>] pci_remove_bus_device+0x1cb/0x4a0 ffffc9000112fc00
<4>[   12.558982]  [<ffffffff84c4d06a>] ? kobject_put+0x1aa/0x4f0 ffffc9000112fc08
<4>[   12.558982]  [<ffffffff823e5130>] pci_remove_bus_device+0xd0/0x4a0 ffffc9000112fc40
<4>[   12.558982]  [<ffffffff8244c534>] pciehp_unconfigure_device+0x1b4/0x430 ffffc9000112fc80
<4>[   12.558982]  [<ffffffff8244c380>] ? __pfx_pciehp_unconfigure_device+0x10/0x10 ffffc9000112fcb0
<4>[   12.558982]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc9000112fcd8
<4>[   12.558982]  [<ffffffff824495fe>] pciehp_disable_slot+0xfe/0x380 ffffc9000112fd30
<4>[   12.558982]  [<ffffffff82449500>] ? __pfx_pciehp_disable_slot+0x10/0x10 ffffc9000112fd48
<4>[   12.558982]  [<ffffffff84cdfc00>] ? __mutex_unlock_slowpath.constprop.0+0x2a0/0x2c0 ffffc9000112fd58
<4>[   12.558982]  [<ffffffff8244a684>] pciehp_handle_presence_or_link_change+0x554/0x1070 ffffc9000112fdb8
<4>[   12.558982]  [<ffffffff84ce4d7d>] ? down_read+0x14d/0x250 ffffc9000112fdc8
<4>[   12.558982]  [<ffffffff81682070>] ? __pfx___synchronize_hardirq+0x10/0x10 ffffc9000112fdd0
<4>[   12.558982]  [<ffffffff8244a130>] ? __pfx_pciehp_handle_presence_or_link_change+0x10/0x10 ffffc9000112fde8
<4>[   12.558982]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc9000112fe00
<4>[   12.558982]  [<ffffffff8244f610>] pciehp_ist+0x2e0/0x370 ffffc9000112fe68
<4>[   12.558982]  [<ffffffff8167c510>] irq_thread_fn+0x90/0x180 ffffc9000112fea8
<4>[   12.558982]  [<ffffffff81680af1>] irq_thread+0x1e1/0x3a0 ffffc9000112fed8
<4>[   12.558982]  [<ffffffff8167c480>] ? __pfx_irq_thread_fn+0x10/0x10 ffffc9000112fee0
<4>[   12.558982]  [<ffffffff84cef2b0>] ? __pfx__raw_spin_lock_irqsave+0x10/0x10 ffffc9000112fee8
<4>[   12.558982]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc9000112ff10
<4>[   12.558982]  [<ffffffff81680cc0>] ? __pfx_irq_thread_dtor+0x10/0x10 ffffc9000112ff28
<4>[   12.558982]  [<ffffffff815b75bd>] ? __kthread_parkme+0x8d/0x160 ffffc9000112ff50
<4>[   12.558982]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc9000112ff78
<4>[   12.558982]  [<ffffffff815bbbd0>] kthread+0x2d0/0x3c0 ffffc9000112ff90
<4>[   12.558982]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc9000112ff98
<4>[   12.558982]  [<ffffffff8148f8ac>] ret_from_fork+0x3c/0x80 ffffc9000112ffc8
<4>[   12.558982]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc9000112ffd0
<4>[   12.558982]  [<ffffffff814031fb>] ret_from_fork_asm+0x2b/0x50 ffffc9000112ffe8
<4>[   12.558982]  </TASK>
<4>[   12.558982] Modules linked in:
<4>[   12.559548] ---[ end trace 0000000000000000 ]---

ECC: No errors detected
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) #22 SMP PREEMPT_DYNAMIC Mon Sep 23 05:53:19 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=0x6e258018 ESRT=0x6dd67698 
<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.000015] e820: remove [mem 0x000a0000-0x000fffff] usable
<6>[    0.000021] last_pfn = 0x870000 max_arch_pfn = 0x400000000
<6>[    0.000026] MTRR map: 8 entries (3 fixed + 5 variable; max 23), built from 10 variable MTRRs
<6>[    0.000028] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
<6>[    0.000625] x2apic: enabled by BIOS, switching to x2apic ops
<6>[    0.000626] last_pfn = 0x78000 max_arch_pfn = 0x400000000
<6>[    0.025513] Using GB pages for direct mapping
<4>[    0.025514] PAX: PCID detected
<4>[    0.025515] PAX: INVPCID detected
<6>[    0.028938] Secure boot disabled
<6>[    0.028938] RAMDISK: [mem 0x31ffd000-0x34c7bfff]
<6>[    0.028939] Allocated new RAMDISK: [mem 0x86d000000-0x86fc7e98f]
<6>[    0.041836] Move RAMDISK from [mem 0x31ffd000-0x34c7b98f] to [mem 0x86d000000-0x86fc7e98f]
<6>[    0.041848] ACPI: Early table checksum verification disabled
<6>[    0.041853] ACPI: RSDP 0x000000003FAFE014 000024 (v02 LENOVO)
<6>[    0.041861] ACPI: XSDT 0x000000003FAFD228 00016C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.041870] ACPI: FACP 0x000000004213A000 000114 (v06 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.041879] ACPI: DSDT 0x00000000420D5000 061056 (v02 LENOVO ICL      00000002      01000013)
<6>[    0.041884] ACPI: FACS 0x000000003FA08000 000040
<6>[    0.041888] ACPI: SSDT 0x000000004221B000 00038C (v02 LENOVO Pmax_Dev 00000001 INTL 20210930)
<6>[    0.041892] ACPI: SSDT 0x000000004221A000 000689 (v02 LENOVO Cpu0Ist  00003000 INTL 20210930)
<6>[    0.041896] ACPI: SSDT 0x0000000042219000 0005E7 (v02 LENOVO Cpu0Hwp  00003000 INTL 20210930)
<6>[    0.041901] ACPI: SSDT 0x0000000042218000 0001AB (v02 LENOVO Cpu0Psd  00003000 INTL 20210930)
<6>[    0.041905] ACPI: SSDT 0x0000000042217000 000394 (v02 LENOVO Cpu0Cst  00003001 INTL 20210930)
<6>[    0.041908] ACPI: SSDT 0x0000000042215000 001BAF (v02 LENOVO ApIst    00003000 INTL 20210930)
<6>[    0.041912] ACPI: SSDT 0x0000000042213000 001620 (v02 LENOVO ApHwp    00003000 INTL 20210930)
<6>[    0.041917] ACPI: SSDT 0x0000000042211000 001349 (v02 LENOVO ApPsd    00003000 INTL 20210930)
<6>[    0.041922] ACPI: SSDT 0x0000000042210000 000FBB (v02 LENOVO ApCst    00003000 INTL 20210930)
<6>[    0.041926] ACPI: SSDT 0x000000004220C000 003BC8 (v02 LENOVO CpuSsdt  00003000 INTL 20210930)
<6>[    0.041930] ACPI: SSDT 0x000000004220B000 00059B (v02 LENOVO CtdpB    00001000 INTL 20210930)
<6>[    0.041935] ACPI: DTPR 0x0000000042209000 000088 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.041940] ACPI: SSDT 0x0000000042186000 0012A6 (v02 LENOVO PDatTabl 00001000 INTL 20210930)
<6>[    0.041944] ACPI: SSDT 0x0000000042146000 002679 (v02 LENOVO IgfxSsdt 00003000 INTL 20210930)
<6>[    0.041948] ACPI: SSDT 0x000000004213C000 009BEE (v02 LENOVO TcssSsdt 00001000 INTL 20210930)
<6>[    0.041953] ACPI: ECDT 0x000000004213B000 000053 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.041957] ACPI: HPET 0x0000000042139000 000038 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.041962] ACPI: APIC 0x0000000042138000 000358 (v05 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.041967] ACPI: MCFG 0x0000000042137000 00003C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.041971] ACPI: SSDT 0x00000000420CF000 005EDB (v02 LENOVO MtlP_Rvp 00001000 INTL 20210930)
<6>[    0.041976] ACPI: SSDT 0x00000000420CE000 00027B (v02 LENOVO PID1Ssdt 00000010 INTL 20210930)
<6>[    0.041981] ACPI: SSDT 0x00000000420CC000 00123A (v02 LENOVO ProjSsdt 00000010 INTL 20210930)
<6>[    0.041985] ACPI: SSDT 0x00000000420C7000 00429C (v02 LENOVO DptfTabl 00001000 INTL 20210930)
<6>[    0.041989] ACPI: LPIT 0x00000000420C6000 0000CC (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.041993] ACPI: WSMT 0x00000000420C5000 000028 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.041998] ACPI: SSDT 0x00000000420BF000 00587D (v02 LENOVO TbtTypeC 00000000 INTL 20210930)
<6>[    0.042003] ACPI: DBGP 0x00000000420BE000 000034 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042007] ACPI: DBG2 0x00000000420BD000 000054 (v00 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042011] ACPI: NHLT 0x00000000420BC000 00096C (v00 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042016] ACPI: MSDM 0x00000000420BB000 000055 (v03 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042020] ACPI: SSDT 0x00000000420A5000 001043 (v02 LENOVO UsbCTabl 00001000 INTL 20210930)
<6>[    0.042025] ACPI: BATB 0x00000000420A3000 00004A (v02 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042029] ACPI: DMAR 0x00000000402A1000 000098 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042034] ACPI: FPDT 0x00000000402A0000 000044 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042038] ACPI: SSDT 0x000000004029E000 0018C6 (v02 LENOVO SocGpe   00003000 INTL 20210930)
<6>[    0.042043] ACPI: SSDT 0x000000004029B000 0028D3 (v02 LENOVO SocCmn   00003000 INTL 20210930)
<6>[    0.042047] ACPI: SDEV 0x000000004029A000 0000BC (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042051] ACPI: PHAT 0x0000000040271000 00080C (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042055] ACPI: BGRT 0x0000000040270000 000038 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042060] ACPI: UEFI 0x000000003E9F4000 000076 (v01 LENOVO TP-N45   00001080 PTEC 00000002)
<6>[    0.042062] ACPI: Reserving FACP table memory at [mem 0x4213a000-0x4213a113]
<6>[    0.042064] ACPI: Reserving DSDT table memory at [mem 0x420d5000-0x42136055]
<6>[    0.042065] ACPI: Reserving FACS table memory at [mem 0x3fa08000-0x3fa0803f]
<6>[    0.042066] ACPI: Reserving SSDT table memory at [mem 0x4221b000-0x4221b38b]
<6>[    0.042067] ACPI: Reserving SSDT table memory at [mem 0x4221a000-0x4221a688]
<6>[    0.042068] ACPI: Reserving SSDT table memory at [mem 0x42219000-0x422195e6]
<6>[    0.042069] ACPI: Reserving SSDT table memory at [mem 0x42218000-0x422181aa]
<6>[    0.042070] ACPI: Reserving SSDT table memory at [mem 0x42217000-0x42217393]
<6>[    0.042071] ACPI: Reserving SSDT table memory at [mem 0x42215000-0x42216bae]
<6>[    0.042072] ACPI: Reserving SSDT table memory at [mem 0x42213000-0x4221461f]
<6>[    0.042074] ACPI: Reserving SSDT table memory at [mem 0x42211000-0x42212348]
<6>[    0.042075] ACPI: Reserving SSDT table memory at [mem 0x42210000-0x42210fba]
<6>[    0.042076] ACPI: Reserving SSDT table memory at [mem 0x4220c000-0x4220fbc7]
<6>[    0.042077] ACPI: Reserving SSDT table memory at [mem 0x4220b000-0x4220b59a]
<6>[    0.042078] ACPI: Reserving DTPR table memory at [mem 0x42209000-0x42209087]
<6>[    0.042079] ACPI: Reserving SSDT table memory at [mem 0x42186000-0x421872a5]
<6>[    0.042079] ACPI: Reserving SSDT table memory at [mem 0x42146000-0x42148678]
<6>[    0.042080] ACPI: Reserving SSDT table memory at [mem 0x4213c000-0x42145bed]
<6>[    0.042081] ACPI: Reserving ECDT table memory at [mem 0x4213b000-0x4213b052]
<6>[    0.042082] ACPI: Reserving HPET table memory at [mem 0x42139000-0x42139037]
<6>[    0.042083] ACPI: Reserving APIC table memory at [mem 0x42138000-0x42138357]
<6>[    0.042084] ACPI: Reserving MCFG table memory at [mem 0x42137000-0x4213703b]
<6>[    0.042085] ACPI: Reserving SSDT table memory at [mem 0x420cf000-0x420d4eda]
<6>[    0.042086] ACPI: Reserving SSDT table memory at [mem 0x420ce000-0x420ce27a]
<6>[    0.042087] ACPI: Reserving SSDT table memory at [mem 0x420cc000-0x420cd239]
<6>[    0.042088] ACPI: Reserving SSDT table memory at [mem 0x420c7000-0x420cb29b]
<6>[    0.042089] ACPI: Reserving LPIT table memory at [mem 0x420c6000-0x420c60cb]
<6>[    0.042090] ACPI: Reserving WSMT table memory at [mem 0x420c5000-0x420c5027]
<6>[    0.042091] ACPI: Reserving SSDT table memory at [mem 0x420bf000-0x420c487c]
<6>[    0.042092] ACPI: Reserving DBGP table memory at [mem 0x420be000-0x420be033]
<6>[    0.042092] ACPI: Reserving DBG2 table memory at [mem 0x420bd000-0x420bd053]
<6>[    0.042093] ACPI: Reserving NHLT table memory at [mem 0x420bc000-0x420bc96b]
<6>[    0.042094] ACPI: Reserving MSDM table memory at [mem 0x420bb000-0x420bb054]
<6>[    0.042095] ACPI: Reserving SSDT table memory at [mem 0x420a5000-0x420a6042]
<6>[    0.042096] ACPI: Reserving BATB table memory at [mem 0x420a3000-0x420a3049]
<6>[    0.042096] ACPI: Reserving DMAR table memory at [mem 0x402a1000-0x402a1097]
<6>[    0.042097] ACPI: Reserving FPDT table memory at [mem 0x402a0000-0x402a0043]
<6>[    0.042098] ACPI: Reserving SSDT table memory at [mem 0x4029e000-0x4029f8c5]
<6>[    0.042099] ACPI: Reserving SSDT table memory at [mem 0x4029b000-0x4029d8d2]
<6>[    0.042099] ACPI: Reserving SDEV table memory at [mem 0x4029a000-0x4029a0bb]
<6>[    0.042100] ACPI: Reserving PHAT table memory at [mem 0x40271000-0x4027180b]
<6>[    0.042101] ACPI: Reserving BGRT table memory at [mem 0x40270000-0x40270037]
<6>[    0.042102] ACPI: Reserving UEFI table memory at [mem 0x3e9f4000-0x3e9f4075]
<6>[    0.042252] APIC: Switched APIC routing to: cluster x2apic
<6>[    0.042366] Zone ranges:
<6>[    0.042369]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
<6>[    0.042371]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
<6>[    0.042373]   Normal   [mem 0x0000000100000000-0x000000086fffffff]
<6>[    0.042374] Movable zone start for each node
<6>[    0.042375] Early memory node ranges
<6>[    0.042375]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
<6>[    0.042377]   node   0: [mem 0x0000000000100000-0x000000003e9f3fff]
<6>[    0.042378]   node   0: [mem 0x00000000424ff000-0x00000000744fefff]
<6>[    0.042379]   node   0: [mem 0x0000000077fff000-0x0000000077ffffff]
<6>[    0.042380]   node   0: [mem 0x0000000100000000-0x0000000187ffffff]
<6>[    0.042381]   node   0: [mem 0x000000018a000000-0x000000086fffffff]
<6>[    0.042383] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fffffff]
<6>[    0.042390] On node 0, zone DMA: 1 pages in unavailable ranges
<6>[    0.042458] On node 0, zone DMA: 96 pages in unavailable ranges
<6>[    0.048098] On node 0, zone DMA32: 15115 pages in unavailable ranges
<6>[    0.048335] On node 0, zone DMA32: 15104 pages in unavailable ranges
<6>[    0.131576] On node 0, zone Normal: 8192 pages in unavailable ranges
<6>[    0.501793] kasan: KernelAddressSanitizer initialized
<6>[    0.502544] ACPI: PM-Timer IO Port: 0x1808
<6>[    0.502559] ACPI: X2APIC_NMI (uid[0xffffffff] high level lint[0x1])
<6>[    0.502603] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
<6>[    0.502606] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
<6>[    0.502610] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
<6>[    0.502617] ACPI: Using ACPI (MADT) for SMP configuration information
<6>[    0.502619] ACPI: HPET id: 0x8086a201 base: 0xfed00000
<6>[    0.502627] TSC deadline timer available
<6>[    0.502628] smpboot: Allowing 18 CPUs, 0 hotplug CPUs
<6>[    0.502648] [mem 0x88800000-0xbfffffff] available for PCI devices
<6>[    0.502654] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
<6>[    0.514279] setup_percpu: NR_CPUS:32 nr_cpumask_bits:18 nr_cpu_ids:18 nr_node_ids:1
<6>[    0.524047] percpu: Embedded 1287 pages/cpu s222504 r8192 d5040856 u6291456
<7>[    0.524055] pcpu-alloc: s222504 r8192 d5040856 u6291456 alloc=3*2097152
<7>[    0.524058] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 
<7>[    0.524065] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 
<7>[    0.524071] pcpu-alloc: [0] 16 [0] 17 
<5>[    0.524126] 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.524220] DMAR: IOMMU enabled
<5>[    0.524223] Unknown kernel command line parameters "sina_toram BOOT_IMAGE=/isolinux/bzImage", will be passed to user space.
<5>[    0.524236] random: crng init done
<6>[    0.527029] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
<6>[    0.528444] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
<6>[    0.529990] Built 1 zonelists, mobility grouping on.  Total pages: 8122573
<6>[    0.529994] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
<6>[    0.529996] stackdepot: allocating hash table via alloc_large_system_hash
<6>[    0.529997] stackdepot hash table entries: 1048576 (order: 12, 16777216 bytes, linear)
<6>[    0.531383] software IO TLB: area num 32.
<6>[    3.368541] Memory: 27931004K/33007184K available (62418K kernel code, 20865K rwdata, 25524K rodata, 12288K init, 4052K bss, 5076180K reserved, 0K cma-reserved)
<6>[    3.368856] PAX: initializing 52201 (978) autoslabs for vmlinux
<6>[    3.608363] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=18, Nodes=1
<6>[    3.608415] ftrace: allocating 60872 entries in 238 pages
<6>[    3.705241] ftrace: allocated 238 pages with 6 groups
<6>[    3.707877] Dynamic Preempt: voluntary
<6>[    3.708156] rcu: Preemptible hierarchical RCU implementation.
<6>[    3.708156] rcu: 	RCU event tracing is enabled.
<6>[    3.708157] rcu: 	RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=18.
<6>[    3.708158] 	Trampoline variant of Tasks RCU enabled.
<6>[    3.708159] 	Rude variant of Tasks RCU enabled.
<6>[    3.708161] 	Tracing variant of Tasks RCU enabled.
<6>[    3.708162] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
<6>[    3.708163] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=18
<6>[    3.717649] NR_IRQS: 4352, nr_irqs: 2200, preallocated irqs: 16
<6>[    3.718112] rcu: srcu_init: Setting srcu_struct sizes based on contention.
<6>[    3.718375] Console: colour dummy device 80x25
<6>[    3.718380] printk: legacy console [tty1] enabled
<6>[    3.718415] ACPI: Core revision 20230628
<6>[    3.719073] hpet: HPET dysfunctional in PC10. Force disabled.
<6>[    3.719074] APIC: Switch to symmetric I/O mode setup
<6>[    3.719076] DMAR: Host address width 42
<6>[    3.719078] DMAR: DRHD base: 0x000000fc800000 flags: 0x0
<6>[    3.719110] DMAR: dmar0: reg_base_addr fc800000 ver 7:0 cap c9de008cee690462 ecap 12ca9a00f0ef5e
<6>[    3.719113] DMAR: DRHD base: 0x000000fc801000 flags: 0x1
<6>[    3.719119] DMAR: dmar1: reg_base_addr fc801000 ver 7:0 cap c9de008cee690462 ecap 12ca9a00f0efde
<6>[    3.719121] DMAR: SATC flags: 0x1
<6>[    3.719134] DMAR-IR: IOAPIC id 2 under DRHD base  0xfc801000 IOMMU 1
<6>[    3.719135] DMAR-IR: HPET id 0 under DRHD base 0xfc801000
<6>[    3.719136] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
<6>[    3.720708] DMAR-IR: Enabled IRQ remapping in x2apic mode
<6>[    3.724877] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b2c8ec87c7, max_idle_ns: 440795278598 ns
<6>[    3.724889] Calibrating delay loop (skipped), value calculated using timer frequency.. 5990.40 BogoMIPS (lpj=2995200)
<6>[    3.724953] CPU0: Thermal monitoring enabled (TM1)
<6>[    3.724956] x86/cpu: User Mode Instruction Prevention (UMIP) activated
<6>[    3.724968] CET detected: Indirect Branch Tracking enabled
<6>[    3.725154] process: using mwait in idle threads
<6>[    3.725160] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
<6>[    3.725161] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
<6>[    3.725165] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization (complete, automated)
<6>[    3.725172] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
<6>[    3.725173] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
<6>[    3.725179] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
<6>[    3.725183] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
<6>[    3.725196] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
<6>[    3.725198] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
<6>[    3.725199] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
<6>[    3.725201] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
<6>[    3.725202] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
<6>[    3.725204] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
<6>[    3.725205] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
<6>[    3.725207] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
<6>[    3.725208] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
<6>[    3.725883] Freeing SMP alternatives memory: 44K
<6>[    3.725883] pid_max: default: 32768 minimum: 501
<6>[    3.725883] LSM: initializing lsm=capability,sina
<6>[    3.725883] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
<6>[    3.725883] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
<6>[    3.725883] smpboot: CPU0: Intel(R) Core(TM) Ultra 5 125H (family: 0x6, model: 0xaa, stepping: 0x4)
<6>[    3.725883] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.725883] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.725883] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
<6>[    3.725883] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Meteorlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
<6>[    3.725883] core: cpu_core PMU driver: 
<6>[    3.725883] ... version:                5
<6>[    3.725883] ... bit width:              48
<6>[    3.725883] ... generic registers:      8
<6>[    3.725883] ... value mask:             0000ffffffffffff
<6>[    3.725883] ... max period:             00007fffffffffff
<6>[    3.725883] ... fixed-purpose events:   4
<6>[    3.725883] ... event mask:             0001000f000000ff
<6>[    3.725883] signal: max sigframe size: 3232
<6>[    3.725883] Estimated ratio of average max frequency by base frequency (times 1024): 1467
<6>[    3.725883] rcu: Hierarchical SRCU implementation.
<6>[    3.725883] rcu: 	Max phase no-delay instances is 400.
<6>[    3.727730] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
<6>[    3.728043] smp: Bringing up secondary CPUs ...
<6>[    3.728175] smpboot: x86: Booting SMP configuration:
<6>[    3.728176] .... node  #0, CPUs:        #1  #3  #6  #8  #9 #10 #11 #12 #13 #14 #15 #16 #17
<6>[    0.007636] core: cpu_atom PMU driver: PEBS-via-PT 
<6>[    0.007636] ... version:                5
<6>[    0.007636] ... bit width:              48
<6>[    0.007636] ... generic registers:      8
<6>[    0.007636] ... value mask:             0000ffffffffffff
<6>[    0.007636] ... max period:             00007fffffffffff
<6>[    0.007636] ... fixed-purpose events:   3
<6>[    0.007636] ... event mask:             00000007000000ff
<4>[    3.740087]   #2  #4  #5  #7
<6>[    3.763463] smp: Brought up 1 node, 14 CPUs
<6>[    3.763474] smpboot: Max logical packages: 2
<6>[    3.763476] smpboot: Total of 14 processors activated (83865.60 BogoMIPS)
<6>[    3.766021] devtmpfs: initialized
<6>[    3.769221] ACPI: PM: Registering ACPI NVS region [mem 0x3e9f4000-0x3fa2efff] (17018880 bytes)
<6>[    3.769352] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
<6>[    3.769365] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
<6>[    3.769515] pinctrl core: initialized pinctrl subsystem
<6>[    3.770118] PM: RTC time: 07:57:52, date: 2024-09-23
<6>[    3.770283] NET: Registered PF_NETLINK/PF_ROUTE protocol family
<6>[    3.770644] ramoops: using module parameters
<6>[    3.770866] ramoops: uncorrectable error in header
<6>[    3.770955] ramoops: uncorrectable error in header
<6>[    3.771047] ramoops: uncorrectable error in header
<6>[    3.771129] ramoops: uncorrectable error in header
<6>[    3.771249] ramoops: uncorrectable error in header
<6>[    3.771336] ramoops: uncorrectable error in header
<6>[    3.771423] ramoops: uncorrectable error in header
<6>[    3.771509] ramoops: uncorrectable error in header
<6>[    3.771597] ramoops: uncorrectable error in header
<6>[    3.771683] ramoops: uncorrectable error in header
<6>[    3.772853] pstore: Using crash dump compression: deflate
<6>[    3.772856] pstore: Registered ramoops as persistent store backend
<6>[    3.772858] ramoops: using 0x2000000@0x188000000, ecc: 16
<6>[    3.773094] thermal_sys: Registered thermal governor 'step_wise'
<6>[    3.773096] thermal_sys: Registered thermal governor 'user_space'
<6>[    3.773157] cpuidle: using governor menu
<6>[    3.773157] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
<6>[    3.773339] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
<6>[    3.773351] PCI: ECAM [mem 0xc0000000-0xcfffffff] reserved as E820 entry
<6>[    3.780627] PCI: Using configuration type 1 for base access
<6>[    3.780738] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
<6>[    3.780975] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
<6>[    3.780975] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
<6>[    3.781100] ACPI: Added _OSI(Module Device)
<6>[    3.781100] ACPI: Added _OSI(Processor Device)
<6>[    3.781100] ACPI: Added _OSI(3.0 _SCP Extensions)
<6>[    3.781100] ACPI: Added _OSI(Processor Aggregator Device)
<6>[    4.226670] ACPI: 23 ACPI AML tables successfully acquired and loaded
<6>[    4.235303] ACPI: EC: EC started
<6>[    4.235305] ACPI: EC: interrupt blocked
<6>[    4.236221] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
<6>[    4.236223] ACPI: EC: Boot ECDT EC used to handle transactions
<5>[    4.239162] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
<6>[    5.113198] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
<6>[    5.113204] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
<6>[    5.136469] ACPI: _OSC evaluated successfully for all CPUs
<6>[    5.136472] ACPI: Interpreter enabled
<6>[    5.136548] ACPI: PM: (supports S0 S5)
<6>[    5.136550] ACPI: Using IOAPIC for interrupt routing
<6>[    5.136681] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
<6>[    5.136683] PCI: Ignoring E820 reservations for host bridge windows
<6>[    5.140193] ACPI: Enabled 10 GPEs in block 00 to 7F
<6>[    5.140214] ACPI: Enabled 8 GPEs in block 80 to DF
<6>[    5.154021] ACPI: \_SB_.PC00.LPCB.EC__.PUBS: New power resource
<6>[    5.170732] ACPI: \_SB_.PC00.XHCI.RHUB.HS08.WWPR: New power resource
<6>[    5.225340] ACPI: \_SB_.PC00.RP01.PXP_: New power resource
<6>[    5.246239] ACPI: \_SB_.PC00.RP06.PXP_: New power resource
<6>[    5.254818] ACPI: \_SB_.PC00.RP07.PXP_: New power resource
<6>[    5.271035] ACPI: \_SB_.PC00.RP10.PXP_: New power resource
<6>[    5.288721] ACPI: \_SB_.PC00.TBT0: New power resource
<6>[    5.289160] ACPI: \_SB_.PC00.TBT1: New power resource
<6>[    5.289600] ACPI: \_SB_.PC00.D3C_: New power resource
<6>[    5.404097] ACPI: \PIN_: New power resource
<6>[    5.404209] ACPI: \PINP: New power resource
<6>[    5.407483] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
<6>[    5.407494] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
<6>[    5.415853] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
<6>[    5.425122] PCI host bridge to bus 0000:00
<6>[    5.425133] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
<6>[    5.425136] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
<6>[    5.425137] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
<6>[    5.425139] pci_bus 0000:00: root bus resource [mem 0x90000000-0xbfffffff window]
<6>[    5.425140] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x3ffbfffffff window]
<6>[    5.425145] pci_bus 0000:00: root bus resource [bus 00-fe]
<6>[    5.562464] pci 0000:00:00.0: [8086:7d14] type 00 class 0x060000 conventional PCI endpoint
<6>[    5.562896] pci 0000:00:02.0: [8086:7d55] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
<6>[    5.562910] pci 0000:00:02.0: BAR 0 [mem 0x4058000000-0x4058ffffff 64bit pref]
<6>[    5.562920] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
<6>[    5.562959] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
<6>[    5.562963] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
<6>[    5.563010] pci 0000:00:02.0: PME# supported from D0 D3hot
<6>[    5.564393] pci 0000:00:04.0: [8086:7d03] type 00 class 0x118000 conventional PCI endpoint
<6>[    5.564409] pci 0000:00:04.0: BAR 0 [mem 0x405a6c0000-0x405a6dffff 64bit]
<6>[    5.567344] pci 0000:00:06.0: [8086:7e4d] type 01 class 0x060400 PCIe Root Port
<6>[    5.567371] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[    5.567386] pci 0000:00:06.0:   bridge window [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[    5.567488] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
<6>[    5.574687] pci 0000:00:06.1: [8086:7eca] type 01 class 0x060400 PCIe Root Port
<6>[    5.574715] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[    5.574721] pci 0000:00:06.1:   bridge window [mem 0xaac00000-0xaacfffff]
<6>[    5.574816] pci 0000:00:06.1: PME# supported from D0 D3hot D3cold
<6>[    5.582669] pci 0000:00:07.0: [8086:7ec4] type 01 class 0x060400 PCIe Root Port
<6>[    5.582695] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[    5.582700] pci 0000:00:07.0:   bridge window [mem 0x9e000000-0xaa1fffff]
<6>[    5.582710] pci 0000:00:07.0:   bridge window [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[    5.582898] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
<6>[    5.589780] pci 0000:00:07.2: [8086:7ec6] type 01 class 0x060400 PCIe Root Port
<6>[    5.589807] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[    5.589813] pci 0000:00:07.2:   bridge window [mem 0x90000000-0x9c1fffff]
<6>[    5.589822] pci 0000:00:07.2:   bridge window [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[    5.590006] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
<6>[    5.596914] pci 0000:00:08.0: [8086:7e4c] type 00 class 0x088000 conventional PCI endpoint
<6>[    5.596929] pci 0000:00:08.0: BAR 0 [mem 0x405a70f000-0x405a70ffff 64bit]
<6>[    5.597286] pci 0000:00:0a.0: [8086:7d0d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
<6>[    5.597294] pci 0000:00:0a.0: BAR 0 [mem 0x405a680000-0x405a6bffff 64bit]
<6>[    5.597311] pci 0000:00:0a.0: enabling Extended Tags
<6>[    5.597468] pci 0000:00:0b.0: [8086:7d1d] type 00 class 0x120000 PCIe Root Complex Integrated Endpoint
<6>[    5.597478] pci 0000:00:0b.0: BAR 0 [mem 0x4050000000-0x4057ffffff 64bit]
<6>[    5.597490] pci 0000:00:0b.0: BAR 4 [mem 0x405a70e000-0x405a70efff 64bit]
<6>[    5.597836] pci 0000:00:0d.0: [8086:7ec0] type 00 class 0x0c0330 conventional PCI endpoint
<6>[    5.597849] pci 0000:00:0d.0: BAR 0 [mem 0x405a6f0000-0x405a6fffff 64bit]
<6>[    5.597909] pci 0000:00:0d.0: PME# supported from D3hot D3cold
<6>[    5.602478] pci 0000:00:0d.2: [8086:7ec2] type 00 class 0x0c0340 conventional PCI endpoint
<6>[    5.602494] pci 0000:00:0d.2: BAR 0 [mem 0x405a640000-0x405a67ffff 64bit]
<6>[    5.602504] pci 0000:00:0d.2: BAR 2 [mem 0x405a70d000-0x405a70dfff 64bit]
<6>[    5.602556] pci 0000:00:0d.2: supports D1 D2
<6>[    5.602557] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.604198] pci 0000:00:0d.3: [8086:7ec3] type 00 class 0x0c0340 conventional PCI endpoint
<6>[    5.604213] pci 0000:00:0d.3: BAR 0 [mem 0x405a600000-0x405a63ffff 64bit]
<6>[    5.604223] pci 0000:00:0d.3: BAR 2 [mem 0x405a70c000-0x405a70cfff 64bit]
<6>[    5.604275] pci 0000:00:0d.3: supports D1 D2
<6>[    5.604276] pci 0000:00:0d.3: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.605938] pci 0000:00:14.0: [8086:7e7d] type 00 class 0x0c0330 conventional PCI endpoint
<6>[    5.605953] pci 0000:00:14.0: BAR 0 [mem 0x405a6e0000-0x405a6effff 64bit]
<6>[    5.606018] pci 0000:00:14.0: PME# supported from D3hot D3cold
<6>[    5.610801] pci 0000:00:14.2: [8086:7e7f] type 00 class 0x050000 conventional PCI endpoint
<6>[    5.610818] pci 0000:00:14.2: BAR 0 [mem 0x405a704000-0x405a707fff 64bit]
<6>[    5.610829] pci 0000:00:14.2: BAR 2 [mem 0x405a70b000-0x405a70bfff 64bit]
<6>[    5.611064] pci 0000:00:15.0: [8086:7e78] type 00 class 0x0c8000 conventional PCI endpoint
<6>[    5.611115] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
<6>[    5.614008] pci 0000:00:16.0: [8086:7e70] type 00 class 0x078000 conventional PCI endpoint
<6>[    5.614027] pci 0000:00:16.0: BAR 0 [mem 0x405a709000-0x405a709fff 64bit]
<6>[    5.614117] pci 0000:00:16.0: PME# supported from D3hot
<6>[    5.618676] pci 0000:00:1c.0: [8086:7e38] type 01 class 0x060400 PCIe Root Port
<6>[    5.618707] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<6>[    5.618714] pci 0000:00:1c.0:   bridge window [mem 0xaa200000-0xaabfffff]
<6>[    5.618725] pci 0000:00:1c.0:   bridge window [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[    5.620184] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
<6>[    5.628060] pci 0000:00:1f.0: [8086:7e02] type 00 class 0x060100 conventional PCI endpoint
<6>[    5.631053] pci 0000:00:1f.3: [8086:7e28] type 00 class 0x040380 conventional PCI endpoint
<6>[    5.631097] pci 0000:00:1f.3: BAR 0 [mem 0x405a700000-0x405a703fff 64bit]
<6>[    5.631130] pci 0000:00:1f.3: BAR 4 [mem 0x4059000000-0x40591fffff 64bit]
<6>[    5.631198] pci 0000:00:1f.3: PME# supported from D3hot D3cold
<6>[    5.631510] pci 0000:00:1f.4: [8086:7e22] type 00 class 0x0c0500 conventional PCI endpoint
<6>[    5.631530] pci 0000:00:1f.4: BAR 0 [mem 0x405a708000-0x405a7080ff 64bit]
<6>[    5.631554] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
<6>[    5.634341] pci 0000:00:1f.5: [8086:7e23] type 00 class 0x0c8000 conventional PCI endpoint
<6>[    5.634375] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
<6>[    5.634730] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[    5.634863] pci 0000:04:00.0: [1cc4:660c] type 00 class 0x010802 PCIe Endpoint
<6>[    5.634881] pci 0000:04:00.0: BAR 0 [mem 0xaac00000-0xaac03fff 64bit]
<6>[    5.635500] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[    5.635641] pci 0000:20:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Upstream Port
<6>[    5.635695] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[    5.635709] pci 0000:20:00.0:   bridge window [mem 0x9e000000-0xa9ffffff]
<6>[    5.635727] pci 0000:20:00.0:   bridge window [mem 0x4010000000-0x402befffff 64bit pref]
<6>[    5.635747] pci 0000:20:00.0: enabling Extended Tags
<6>[    5.635933] pci 0000:20:00.0: supports D1 D2
<6>[    5.635935] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.636045] 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.638916] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[    5.639070] pci 0000:21:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.639124] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[    5.639177] pci 0000:21:00.0: enabling Extended Tags
<6>[    5.639381] pci 0000:21:00.0: supports D1 D2
<6>[    5.639382] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.639744] pci 0000:21:01.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.639798] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[    5.639812] pci 0000:21:01.0:   bridge window [mem 0xa6000000-0xa9ffffff]
<6>[    5.639830] pci 0000:21:01.0:   bridge window [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[    5.639854] pci 0000:21:01.0: enabling Extended Tags
<6>[    5.640062] pci 0000:21:01.0: supports D1 D2
<6>[    5.640063] pci 0000:21:01.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.640427] pci 0000:21:02.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.640481] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[    5.640495] pci 0000:21:02.0:   bridge window [mem 0xa2000000-0xa5ffffff]
<6>[    5.640513] pci 0000:21:02.0:   bridge window [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[    5.640537] pci 0000:21:02.0: enabling Extended Tags
<6>[    5.640752] pci 0000:21:02.0: supports D1 D2
<6>[    5.640753] pci 0000:21:02.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.641110] pci 0000:21:03.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.641164] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[    5.641178] pci 0000:21:03.0:   bridge window [mem 0x9e000000-0xa1ffffff]
<6>[    5.641196] pci 0000:21:03.0:   bridge window [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[    5.641220] pci 0000:21:03.0: enabling Extended Tags
<6>[    5.641427] pci 0000:21:03.0: supports D1 D2
<6>[    5.641428] pci 0000:21:03.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.641787] pci 0000:21:04.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
<6>[    5.641841] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[    5.641894] pci 0000:21:04.0: enabling Extended Tags
<6>[    5.642103] pci 0000:21:04.0: supports D1 D2
<6>[    5.642104] pci 0000:21:04.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    5.642482] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[    5.642600] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[    5.642718] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[    5.642839] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[    5.642959] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[    5.643080] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[    5.643248] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[    5.643357] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<7>[    5.643402] pci_bus 0000:00: on NUMA node 0
<6>[    5.677569] ACPI: \_SB_.PEPD: Duplicate LPS0 _DSM functions (mask: 0x1)
<6>[    9.769299] Low-power S0 idle used by default for system suspend
<6>[    9.773058] ACPI: EC: interrupt unblocked
<6>[    9.773060] ACPI: EC: event unblocked
<6>[    9.773081] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
<6>[    9.773082] ACPI: EC: GPE=0x6e
<6>[    9.773084] ACPI: \_SB_.PC00.LPCB.EC__: Boot ECDT EC initialization complete
<6>[    9.773087] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
<6>[    9.773291] iommu: Default domain type: Translated
<6>[    9.773292] iommu: DMA domain TLB invalidation policy: lazy mode
<5>[    9.773453] SCSI subsystem initialized
<7>[    9.773489] libata version 3.00 loaded.
<6>[    9.773489] ACPI: bus type USB registered
<6>[    9.773489] usbcore: registered new interface driver usbfs
<6>[    9.773489] usbcore: registered new interface driver hub
<6>[    9.773489] usbcore: registered new device driver usb
<6>[    9.773941] pps_core: LinuxPPS API ver. 1 registered
<6>[    9.773942] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
<6>[    9.773949] PTP clock support registered
<6>[    9.774052] Advanced Linux Sound Architecture Driver Initialized.
<6>[    9.774616] NetLabel: Initializing
<6>[    9.774617] NetLabel:  domain hash size = 128
<6>[    9.774618] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
<6>[    9.774689] NetLabel:  unlabeled traffic allowed by default
<6>[    9.774732] PCI: Using ACPI for IRQ routing
<7>[    9.786652] PCI: pci_cache_line_size set to 64 bytes
<6>[    9.786767] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
<7>[    9.786877] e820: reserve RAM buffer [mem 0x3e9f4000-0x3fffffff]
<7>[    9.786887] e820: reserve RAM buffer [mem 0x744ff000-0x77ffffff]
<6>[    9.786923] pci 0000:00:02.0: vgaarb: setting as boot VGA device
<6>[    9.786923] pci 0000:00:02.0: vgaarb: bridge control possible
<6>[    9.786923] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
<6>[    9.786923] vgaarb: loaded
<6>[    9.792608] clocksource: Switched to clocksource tsc-early
<6>[    9.792883] pnp: PnP ACPI init
<6>[    9.794121] system 00:00: [io  0x0680-0x069f] has been reserved
<6>[    9.794124] system 00:00: [io  0x164e-0x164f] has been reserved
<6>[    9.794590] system 00:01: [io  0x1854-0x1857] has been reserved
<6>[    9.794969] system 00:04: [io  0x1800-0x189f] could not be reserved
<6>[    9.794971] system 00:04: [io  0x0800-0x087f] has been reserved
<6>[    9.794973] system 00:04: [io  0x0880-0x08ff] has been reserved
<6>[    9.794974] system 00:04: [io  0x0900-0x097f] has been reserved
<6>[    9.794976] system 00:04: [io  0x0980-0x09ff] has been reserved
<6>[    9.794977] system 00:04: [io  0x0a00-0x0a7f] has been reserved
<6>[    9.794979] system 00:04: [io  0x0a80-0x0aff] has been reserved
<6>[    9.794980] system 00:04: [io  0x0b00-0x0b7f] has been reserved
<6>[    9.794982] system 00:04: [io  0x0b80-0x0bff] has been reserved
<6>[    9.794983] system 00:04: [io  0x15e0-0x15ef] has been reserved
<6>[    9.794987] system 00:04: [io  0x1600-0x167f] could not be reserved
<6>[    9.794992] system 00:04: [io  0x1640-0x165f] could not be reserved
<6>[    9.794994] system 00:04: [mem 0xc0000000-0xcfffffff] has been reserved
<6>[    9.794996] system 00:04: [mem 0xfed10000-0xfed13fff] has been reserved
<6>[    9.794997] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
<6>[    9.794999] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
<6>[    9.795000] system 00:04: [mem 0xfeb00000-0xfebfffff] has been reserved
<6>[    9.795002] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
<6>[    9.795003] system 00:04: [mem 0xfed90000-0xfed93fff] has been reserved
<6>[    9.801444] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
<6>[    9.801451] system 00:05: [mem 0x00000000-0x00000fff] could not be reserved
<6>[    9.801456] system 00:05: [mem 0x00000000-0x00000fff] could not be reserved
<6>[    9.801457] system 00:05: [mem 0xc0000000-0xcfffffff] has been reserved
<6>[    9.801462] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
<6>[    9.801469] system 00:05: [mem 0xfc800000-0xfc81ffff] could not be reserved
<6>[    9.801474] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
<6>[    9.801475] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
<6>[    9.805153] system 00:06: [io  0xff00-0xfffe] has been reserved
<4>[    9.808387] pnp 00:08: disabling [mem 0x000c0000-0x000c3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[    9.808390] pnp 00:08: disabling [mem 0x000c8000-0x000cbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[    9.808392] pnp 00:08: disabling [mem 0x000d0000-0x000d3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<4>[    9.808394] pnp 00:08: disabling [mem 0x000d8000-0x000dbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
<6>[    9.808461] system 00:08: [mem 0x00000000-0x0009ffff] could not be reserved
<6>[    9.808466] system 00:08: [mem 0x000e0000-0x000e3fff] could not be reserved
<6>[    9.808471] system 00:08: [mem 0x000e8000-0x000ebfff] could not be reserved
<6>[    9.808475] system 00:08: [mem 0x000f0000-0x000fffff] could not be reserved
<6>[    9.808480] system 00:08: [mem 0x00100000-0x8fffffff] could not be reserved
<6>[    9.808485] system 00:08: [mem 0xfec00000-0xfed3ffff] could not be reserved
<6>[    9.808489] system 00:08: [mem 0xfed4c000-0xffffffff] could not be reserved
<6>[    9.809208] pnp: PnP ACPI: found 9 devices
<6>[    9.819854] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
<6>[    9.820113] NET: Registered PF_INET protocol family
<6>[    9.820186] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
<6>[    9.822478] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
<6>[    9.822509] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
<6>[    9.822544] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
<6>[    9.822781] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
<6>[    9.822945] TCP: Hash tables configured (established 262144 bind 65536)
<6>[    9.823050] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
<6>[    9.823117] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
<6>[    9.823295] NET: Registered PF_UNIX/PF_LOCAL protocol family
<6>[    9.823745] pci 0000:00:06.0: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
<6>[    9.823750] pci 0000:00:06.0: bridge window [mem 0x00100000-0x000fffff] to [bus 1c] add_size 200000 add_align 100000
<6>[    9.823753] pci 0000:21:01.0: bridge window [io  0x1000-0x0fff] to [bus 23-2e] add_size 1000
<6>[    9.823755] pci 0000:21:02.0: bridge window [io  0x1000-0x0fff] to [bus 2f-3a] add_size 1000
<6>[    9.823757] pci 0000:21:03.0: bridge window [io  0x1000-0x0fff] to [bus 3b-48] add_size 1000
<6>[    9.823759] pci 0000:20:00.0: bridge window [io  0x1000-0x0fff] to [bus 21-49] add_size 3000
<6>[    9.823761] pci 0000:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 20-49] add_size 4000
<6>[    9.823763] pci 0000:00:07.2: bridge window [io  0x1000-0x0fff] to [bus 50-79] add_size 1000
<6>[    9.823764] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
<6>[    9.823776] pci 0000:00:06.0: bridge window [mem 0x9c200000-0x9c3fffff]: assigned
<6>[    9.823779] pci 0000:00:06.0: bridge window [io  0x2000-0x2fff]: assigned
<6>[    9.823781] pci 0000:00:07.0: bridge window [io  0x3000-0x6fff]: assigned
<6>[    9.823783] pci 0000:00:07.2: bridge window [io  0x7000-0x7fff]: assigned
<6>[    9.823785] pci 0000:00:15.0: BAR 0 [mem 0x402c000000-0x402c000fff 64bit]: assigned
<6>[    9.823824] pci 0000:00:1c.0: bridge window [io  0x8000-0x8fff]: assigned
<6>[    9.823826] pci 0000:00:1f.5: BAR 0 [mem 0x9c400000-0x9c400fff]: assigned
<6>[    9.823855] pci 0000:00:06.0: PCI bridge to [bus 1c]
<6>[    9.823860] pci 0000:00:06.0:   bridge window [io  0x2000-0x2fff]
<6>[    9.823867] pci 0000:00:06.0:   bridge window [mem 0x9c200000-0x9c3fffff]
<6>[    9.823872] pci 0000:00:06.0:   bridge window [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[    9.823879] pci 0000:00:06.1: PCI bridge to [bus 04]
<6>[    9.823883] pci 0000:00:06.1:   bridge window [mem 0xaac00000-0xaacfffff]
<6>[    9.823890] pci 0000:20:00.0: bridge window [io  0x3000-0x5fff]: assigned
<6>[    9.823896] pci 0000:21:01.0: bridge window [io  0x3000-0x3fff]: assigned
<6>[    9.823898] pci 0000:21:02.0: bridge window [io  0x4000-0x4fff]: assigned
<6>[    9.823899] pci 0000:21:03.0: bridge window [io  0x5000-0x5fff]: assigned
<6>[    9.823910] pci 0000:21:00.0: PCI bridge to [bus 22]
<6>[    9.823931] pci 0000:21:01.0: PCI bridge to [bus 23-2e]
<6>[    9.823934] pci 0000:21:01.0:   bridge window [io  0x3000-0x3fff]
<6>[    9.823941] pci 0000:21:01.0:   bridge window [mem 0xa6000000-0xa9ffffff]
<6>[    9.823946] pci 0000:21:01.0:   bridge window [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[    9.823955] pci 0000:21:02.0: PCI bridge to [bus 2f-3a]
<6>[    9.823958] pci 0000:21:02.0:   bridge window [io  0x4000-0x4fff]
<6>[    9.823965] pci 0000:21:02.0:   bridge window [mem 0xa2000000-0xa5ffffff]
<6>[    9.823970] pci 0000:21:02.0:   bridge window [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[    9.823979] pci 0000:21:03.0: PCI bridge to [bus 3b-48]
<6>[    9.823982] pci 0000:21:03.0:   bridge window [io  0x5000-0x5fff]
<6>[    9.823989] pci 0000:21:03.0:   bridge window [mem 0x9e000000-0xa1ffffff]
<6>[    9.823994] pci 0000:21:03.0:   bridge window [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[    9.824004] pci 0000:21:04.0: PCI bridge to [bus 49]
<6>[    9.824022] pci 0000:20:00.0: PCI bridge to [bus 21-49]
<6>[    9.824025] pci 0000:20:00.0:   bridge window [io  0x3000-0x5fff]
<6>[    9.824032] pci 0000:20:00.0:   bridge window [mem 0x9e000000-0xa9ffffff]
<6>[    9.824037] pci 0000:20:00.0:   bridge window [mem 0x4010000000-0x402befffff 64bit pref]
<6>[    9.824046] pci 0000:00:07.0: PCI bridge to [bus 20-49]
<6>[    9.824048] pci 0000:00:07.0:   bridge window [io  0x3000-0x6fff]
<6>[    9.824051] pci 0000:00:07.0:   bridge window [mem 0x9e000000-0xaa1fffff]
<6>[    9.824054] pci 0000:00:07.0:   bridge window [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[    9.824059] pci 0000:00:07.2: PCI bridge to [bus 50-79]
<6>[    9.824061] pci 0000:00:07.2:   bridge window [io  0x7000-0x7fff]
<6>[    9.824065] pci 0000:00:07.2:   bridge window [mem 0x90000000-0x9c1fffff]
<6>[    9.824068] pci 0000:00:07.2:   bridge window [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[    9.824074] pci 0000:00:1c.0: PCI bridge to [bus 1d]
<6>[    9.824078] pci 0000:00:1c.0:   bridge window [io  0x8000-0x8fff]
<6>[    9.824082] pci 0000:00:1c.0:   bridge window [mem 0xaa200000-0xaabfffff]
<6>[    9.824088] pci 0000:00:1c.0:   bridge window [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[    9.824096] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
<6>[    9.824098] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
<6>[    9.824100] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
<6>[    9.824102] pci_bus 0000:00: resource 7 [mem 0x90000000-0xbfffffff window]
<6>[    9.824104] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x3ffbfffffff window]
<6>[    9.824105] pci_bus 0000:1c: resource 0 [io  0x2000-0x2fff]
<6>[    9.824107] pci_bus 0000:1c: resource 1 [mem 0x9c200000-0x9c3fffff]
<6>[    9.824109] pci_bus 0000:1c: resource 2 [mem 0x4059200000-0x4059bfffff 64bit pref]
<6>[    9.824111] pci_bus 0000:04: resource 1 [mem 0xaac00000-0xaacfffff]
<6>[    9.824113] pci_bus 0000:20: resource 0 [io  0x3000-0x6fff]
<6>[    9.824114] pci_bus 0000:20: resource 1 [mem 0x9e000000-0xaa1fffff]
<6>[    9.824115] pci_bus 0000:20: resource 2 [mem 0x4010000000-0x402bffffff 64bit pref]
<6>[    9.824117] pci_bus 0000:21: resource 0 [io  0x3000-0x5fff]
<6>[    9.824118] pci_bus 0000:21: resource 1 [mem 0x9e000000-0xa9ffffff]
<6>[    9.824120] pci_bus 0000:21: resource 2 [mem 0x4010000000-0x402befffff 64bit pref]
<6>[    9.824121] pci_bus 0000:23: resource 0 [io  0x3000-0x3fff]
<6>[    9.824123] pci_bus 0000:23: resource 1 [mem 0xa6000000-0xa9ffffff]
<6>[    9.824124] pci_bus 0000:23: resource 2 [mem 0x4022a00000-0x402befffff 64bit pref]
<6>[    9.824125] pci_bus 0000:2f: resource 0 [io  0x4000-0x4fff]
<6>[    9.824127] pci_bus 0000:2f: resource 1 [mem 0xa2000000-0xa5ffffff]
<6>[    9.824128] pci_bus 0000:2f: resource 2 [mem 0x4019500000-0x40229fffff 64bit pref]
<6>[    9.824129] pci_bus 0000:3b: resource 0 [io  0x5000-0x5fff]
<6>[    9.824131] pci_bus 0000:3b: resource 1 [mem 0x9e000000-0xa1ffffff]
<6>[    9.824132] pci_bus 0000:3b: resource 2 [mem 0x4010000000-0x40194fffff 64bit pref]
<6>[    9.824133] pci_bus 0000:50: resource 0 [io  0x7000-0x7fff]
<6>[    9.824135] pci_bus 0000:50: resource 1 [mem 0x90000000-0x9c1fffff]
<6>[    9.824136] pci_bus 0000:50: resource 2 [mem 0x4030000000-0x404bffffff 64bit pref]
<6>[    9.824138] pci_bus 0000:1d: resource 0 [io  0x8000-0x8fff]
<6>[    9.824139] pci_bus 0000:1d: resource 1 [mem 0xaa200000-0xaabfffff]
<6>[    9.824140] pci_bus 0000:1d: resource 2 [mem 0x4059c00000-0x405a5fffff 64bit pref]
<6>[    9.824467] pci 0000:00:0d.0: enabling device (0000 -> 0002)
<6>[    9.826151] PCI: CLS 0 bytes, default 64
<6>[    9.826181] DMAR: No RMRR found
<6>[    9.826182] DMAR: No ATSR found
<6>[    9.826183] DMAR: IOMMU feature sc_support inconsistent
<6>[    9.826185] DMAR: dmar0: Using Queued invalidation
<6>[    9.826196] DMAR: dmar1: Using Queued invalidation
<6>[    9.826718] Unpacking initramfs...
<6>[    9.826923] pci 0000:00:02.0: Adding to iommu group 0
<6>[    9.827279] pci 0000:00:00.0: Adding to iommu group 1
<6>[    9.827300] pci 0000:00:04.0: Adding to iommu group 2
<6>[    9.827325] pci 0000:00:06.0: Adding to iommu group 3
<6>[    9.827346] pci 0000:00:06.1: Adding to iommu group 4
<6>[    9.827367] pci 0000:00:07.0: Adding to iommu group 5
<6>[    9.827388] pci 0000:00:07.2: Adding to iommu group 6
<6>[    9.827410] pci 0000:00:08.0: Adding to iommu group 7
<6>[    9.827429] pci 0000:00:0a.0: Adding to iommu group 8
<6>[    9.827449] pci 0000:00:0b.0: Adding to iommu group 9
<6>[    9.827481] pci 0000:00:0d.0: Adding to iommu group 10
<6>[    9.827496] pci 0000:00:0d.2: Adding to iommu group 10
<6>[    9.827522] pci 0000:00:0d.3: Adding to iommu group 10
<6>[    9.827549] pci 0000:00:14.0: Adding to iommu group 11
<6>[    9.827564] pci 0000:00:14.2: Adding to iommu group 11
<6>[    9.827587] pci 0000:00:15.0: Adding to iommu group 12
<6>[    9.827609] pci 0000:00:16.0: Adding to iommu group 13
<6>[    9.827633] pci 0000:00:1c.0: Adding to iommu group 14
<6>[    9.827685] pci 0000:00:1f.0: Adding to iommu group 15
<6>[    9.827700] pci 0000:00:1f.3: Adding to iommu group 15
<6>[    9.827716] pci 0000:00:1f.4: Adding to iommu group 15
<6>[    9.827732] pci 0000:00:1f.5: Adding to iommu group 15
<6>[    9.827754] pci 0000:04:00.0: Adding to iommu group 16
<6>[    9.827775] pci 0000:20:00.0: Adding to iommu group 17
<6>[    9.827796] pci 0000:21:00.0: Adding to iommu group 18
<6>[    9.827818] pci 0000:21:01.0: Adding to iommu group 19
<6>[    9.827839] pci 0000:21:02.0: Adding to iommu group 20
<6>[    9.827860] pci 0000:21:03.0: Adding to iommu group 21
<6>[    9.827881] pci 0000:21:04.0: Adding to iommu group 22
<6>[    9.831137] DMAR: Intel(R) Virtualization Technology for Directed I/O
<6>[    9.831139] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
<6>[    9.831141] software IO TLB: mapped [mem 0x0000000070400000-0x0000000074400000] (64MB)
<6>[    9.831161] ACPI: bus type thunderbolt registered
<6>[   10.008839] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
<6>[   10.008842] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
<6>[   10.008844] RAPL PMU: hw unit of domain package 2^-14 Joules
<6>[   10.008845] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
<6>[   10.008845] RAPL PMU: hw unit of domain psys 2^-14 Joules
<6>[   10.009928] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b2c8ec87c7, max_idle_ns: 440795278598 ns
<6>[   10.010344] clocksource: Switched to clocksource tsc
<6>[   10.010392] platform rtc_cmos: registered platform RTC device (no PNP device found)
<6>[   10.020710] workingset: timestamp_bits=62 max_order=23 bucket_order=0
<6>[   10.024781] squashfs: version 4.0 (2009/01/31) Phillip Lougher
<6>[   10.024811] 9p: Installing v9fs 9p2000 file system support
<6>[   10.032395] NET: Registered PF_ALG protocol family
<6>[   10.032442] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
<6>[   10.032445] io scheduler mq-deadline registered
<6>[   10.032447] io scheduler kyber registered
<6>[   10.033708] pcieport 0000:00:06.0: PME: Signaling with IRQ 154
<6>[   10.033778] pcieport 0000:00:06.0: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   10.035001] pcieport 0000:00:06.1: PME: Signaling with IRQ 155
<6>[   10.036058] pcieport 0000:00:07.0: PME: Signaling with IRQ 156
<6>[   10.036111] pcieport 0000:00:07.0: pciehp: Slot #12 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   10.036213] pcieport 0000:00:07.0: pciehp: Slot(12): Card not present
<6>[   10.036240] pci_bus 0000:49: busn_res: [bus 49] is released
<6>[   10.037382] pcieport 0000:00:07.2: PME: Signaling with IRQ 157
<6>[   10.037447] pcieport 0000:00:07.2: pciehp: Slot #14 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   10.038693] pcieport 0000:00:1c.0: PME: Signaling with IRQ 158
<6>[   10.038754] pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
<3>[   10.040129] pcieport 0000:20:00.0: Unable to change power state from D3cold to D0, device inaccessible
<3>[   10.040258] pcieport 0000:21:00.0: Unable to change power state from D3cold to D0, device inaccessible
<3>[   10.040405] pcieport 0000:21:01.0: Unable to change power state from D3cold to D0, device inaccessible
<6>[   10.040490] pci_bus 0000:3b: busn_res: [bus 3b-48] is released
<6>[   10.040668] pcieport 0000:21:01.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
<3>[   10.040977] pcieport 0000:21:02.0: Unable to change power state from D3cold to D0, device inaccessible
<6>[   10.041213] pcieport 0000:21:02.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
<6>[   10.041442] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
<6>[   10.045512] pci_bus 0000:2f: busn_res: [bus 2f-3a] is released
<6>[   10.046370] irq/18-pciehp (138) used greatest stack depth: 3801 bytes left
<3>[   10.046397] ==================================================================
<3>[   10.046405] BUG: KASAN: slab-use-after-free in pci_slot_release+0x33e/0x3f0
<3>[   10.046426] Read of size 8 at addr ffff8881095256d8 by task irq/156-pciehp/134
<3>[   10.046435] 
<3>[   10.046440] CPU: 12 PID: 134 Comm: irq/156-pciehp Tainted: G                T   6.8.12-grsec+ #22
<3>[   10.046451] Hardware name: LENOVO 21LVS1CV00/21LVS1CV00, BIOS N45ET18W (1.08 ) 07/08/2024
<3>[   10.046459] Call Trace:
<3>[   10.046462]  <TASK>
<3>[   10.046469]  [<ffffffff84c4628c>] dump_stack_lvl+0x7c/0xe0 ffffc90000dbf5f8
<3>[   10.046490]  [<ffffffff81bf3275>] print_report+0xc5/0x5f0 ffffc90000dbf608
<3>[   10.046508]  [<ffffffff8243138e>] ? pci_slot_release+0x33e/0x3f0 ffffc90000dbf670
<3>[   10.046520]  [<ffffffff81bf3a5f>] kasan_report+0xaf/0xf0 ffffc90000dbf678
<3>[   10.046534]  [<ffffffff8243138e>] ? pci_slot_release+0x33e/0x3f0 ffffc90000dbf6a8
<3>[   10.046547]  [<ffffffff8243138e>] ? pci_slot_release+0x33e/0x3f0 ffffc90000dbf728
<3>[   10.046558]  [<ffffffff84c4cf74>] ? kobject_put+0x194/0x4f0 ffffc90000dbf770
<3>[   10.046569]  [<ffffffff82431d0a>] ? pci_destroy_slot+0x2a/0x120 ffffc90000dbf7a8
<3>[   10.046581]  [<ffffffff8244828c>] ? pciehp_remove+0x4c/0x60 ffffc90000dbf7c8
<3>[   10.046592]  [<ffffffff8242420f>] ? pcie_port_remove_service+0x6f/0xb0 ffffc90000dbf7e0
<3>[   10.046605]  [<ffffffff82f5fe04>] ? __device_release_driver+0x1b4/0x330 ffffc90000dbf7f8
<3>[   10.046619]  [<ffffffff82f5ffb7>] ? device_release_driver+0x27/0x40 ffffc90000dbf848
<3>[   10.046629]  [<ffffffff82f5d4b6>] ? bus_remove_device+0x1f6/0x410 ffffc90000dbf860
<3>[   10.046638]  [<ffffffff82f4d186>] ? device_del+0x3a6/0xa00 ffffc90000dbf8a8
<3>[   10.046638]  [<ffffffff82f4cde0>] ? __pfx_device_del+0x10/0x10 ffffc90000dbf8f8
<3>[   10.046638]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000dbf928
<3>[   10.046638]  [<ffffffff82f4d808>] ? device_unregister+0x18/0xb0 ffffc90000dbf978
<3>[   10.046638]  [<ffffffff82424449>] ? remove_iter+0x49/0x60 ffffc90000dbf988
<3>[   10.046638]  [<ffffffff82424400>] ? __pfx_remove_iter+0x10/0x10 ffffc90000dbf990
<3>[   10.046638]  [<ffffffff82f4a5ea>] ? device_for_each_child+0xfa/0x180 ffffc90000dbf998
<3>[   10.046638]  [<ffffffff82f4a4f0>] ? __pfx_device_for_each_child+0x10/0x10 ffffc90000dbf9b8
<3>[   10.046638]  [<ffffffff81dad758>] ? kernfs_name_hash+0x18/0xc0 ffffc90000dbf9e0
<3>[   10.046638]  [<ffffffff824244a3>] ? pcie_portdrv_remove+0x33/0x80 ffffc90000dbfa38
<3>[   10.046638]  [<ffffffff824013b2>] ? pci_device_remove+0xb2/0x1f0 ffffc90000dbfa50
<3>[   10.046638]  [<ffffffff82f5fe04>] ? __device_release_driver+0x1b4/0x330 ffffc90000dbfa80
<3>[   10.046638]  [<ffffffff82f5ffb7>] ? device_release_driver+0x27/0x40 ffffc90000dbfad0
<3>[   10.046638]  [<ffffffff82f5d4b6>] ? bus_remove_device+0x1f6/0x410 ffffc90000dbfae8
<3>[   10.046638]  [<ffffffff82f4d186>] ? device_del+0x3a6/0xa00 ffffc90000dbfb30
<3>[   10.046638]  [<ffffffff81baeef8>] ? kfree+0xd8/0x3b0 ffffc90000dbfb68
<3>[   10.046638]  [<ffffffff82f4cde0>] ? __pfx_device_del+0x10/0x10 ffffc90000dbfb80
<3>[   10.046638]  [<ffffffff823e51a3>] ? pci_remove_bus_device+0x143/0x3b0 ffffc90000dbfc00
<3>[   10.046638]  [<ffffffff84c4cf8a>] ? kobject_put+0x1aa/0x4f0 ffffc90000dbfc08
<3>[   10.046638]  [<ffffffff823e5130>] ? pci_remove_bus_device+0xd0/0x3b0 ffffc90000dbfc40
<3>[   10.046638]  [<ffffffff8244c454>] ? pciehp_unconfigure_device+0x1b4/0x430 ffffc90000dbfc80
<3>[   10.046638]  [<ffffffff8244c2a0>] ? __pfx_pciehp_unconfigure_device+0x10/0x10 ffffc90000dbfcb0
<3>[   10.046638]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000dbfcd8
<3>[   10.046638]  [<ffffffff8244951e>] ? pciehp_disable_slot+0xfe/0x380 ffffc90000dbfd30
<3>[   10.046638]  [<ffffffff82449420>] ? __pfx_pciehp_disable_slot+0x10/0x10 ffffc90000dbfd48
<3>[   10.046638]  [<ffffffff84cdfb00>] ? __mutex_unlock_slowpath.constprop.0+0x280/0x2c0 ffffc90000dbfd58
<3>[   10.046638]  [<ffffffff8244a5a4>] ? pciehp_handle_presence_or_link_change+0x554/0x1070 ffffc90000dbfdb8
<3>[   10.046638]  [<ffffffff84ce4c9d>] ? down_read+0x14d/0x250 ffffc90000dbfdc8
<3>[   10.046638]  [<ffffffff81682070>] ? __pfx___synchronize_hardirq+0x10/0x10 ffffc90000dbfdd0
<3>[   10.046638]  [<ffffffff8244a050>] ? __pfx_pciehp_handle_presence_or_link_change+0x10/0x10 ffffc90000dbfde8
<3>[   10.046638]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000dbfe00
<3>[   10.046638]  [<ffffffff8244f530>] ? pciehp_ist+0x2e0/0x370 ffffc90000dbfe68
<3>[   10.046638]  [<ffffffff8167c510>] ? irq_thread_fn+0x90/0x180 ffffc90000dbfea8
<3>[   10.046638]  [<ffffffff81680af1>] ? irq_thread+0x1e1/0x3a0 ffffc90000dbfed8
<3>[   10.046638]  [<ffffffff8167c480>] ? __pfx_irq_thread_fn+0x10/0x10 ffffc90000dbfee0
<3>[   10.046638]  [<ffffffff84cef1d0>] ? __pfx__raw_spin_lock_irqsave+0x10/0x10 ffffc90000dbfee8
<3>[   10.046638]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000dbff10
<3>[   10.046638]  [<ffffffff81680cc0>] ? __pfx_irq_thread_dtor+0x10/0x10 ffffc90000dbff28
<3>[   10.046638]  [<ffffffff815b75bd>] ? __kthread_parkme+0x8d/0x160 ffffc90000dbff50
<3>[   10.046638]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000dbff78
<3>[   10.046638]  [<ffffffff815bbbd0>] ? kthread+0x2d0/0x3c0 ffffc90000dbff90
<3>[   10.046638]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000dbff98
<3>[   10.046638]  [<ffffffff8148f8ac>] ? ret_from_fork+0x3c/0x80 ffffc90000dbffc8
<3>[   10.046638]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000dbffd0
<3>[   10.046638]  [<ffffffff814031fb>] ? ret_from_fork_asm+0x2b/0x50 ffffc90000dbffe8
<3>[   10.046638]  </TASK>
<3>[   10.046638] 
<3>[   10.046638] Freed by task 134 on cpu 12 at 10.045696s:
<4>[   10.046638]  kasan_save_stack+0x35/0x60
<4>[   10.046638]  kasan_save_track+0x19/0x70
<4>[   10.046638]  kasan_save_free_info+0x4a/0x90
<4>[   10.046638]  poison_slab_object+0x101/0x1a0
<4>[   10.046638]  __kasan_slab_free+0x16/0x40
<4>[   10.046638]  kfree+0xd8/0x3b0
<4>[   10.046638]  device_release+0xa6/0x230
<4>[   10.046638]  kobject_put+0x194/0x4f0
<4>[   10.046638]  pci_remove_bus_device+0xdd/0x3b0
<4>[   10.046638]  pci_remove_bus_device+0xd0/0x3b0
<4>[   10.046638]  pciehp_unconfigure_device+0x1b4/0x430
<4>[   10.046638]  pciehp_disable_slot+0xfe/0x380
<4>[   10.046638]  pciehp_handle_presence_or_link_change+0x554/0x1070
<4>[   10.046638]  pciehp_ist+0x2e0/0x370
<4>[   10.046638]  irq_thread_fn+0x90/0x180
<4>[   10.046638]  irq_thread+0x1e1/0x3a0
<4>[   10.046638]  kthread+0x2d0/0x3c0
<4>[   10.046638]  ret_from_fork+0x3c/0x80
<4>[   10.046638]  ret_from_fork_asm+0x2b/0x50
<3>[   10.046638] 
<3>[   10.046638] The buggy address belongs to the object at ffff8881095256b0
<3>[   10.046638]  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.046638] The buggy address is located 40 bytes inside of
<3>[   10.046638]  freed 1040+0-byte region [ffff8881095256b0, ffff888109525ac0)
<3>[   10.046638] 
<3>[   10.046638] The buggy address belongs to the physical page:
<4>[   10.046638] page:ffffea0004254800 refcount:1 mapcount:0 mapping:0000000000000000 index:0x0 pfn:0x109520
<4>[   10.046638] head:ffffea0004254800 order:3 entire_mapcount:0 nr_pages_mapped:0 pincount:0
<4>[   10.046638] flags: 0x8000000000000840(slab|head|zone=2)
<4>[   10.046638] page_type: 0xffffffff()
<4>[   10.046638] raw: 8000000000000840 ffff888100524ec0 ffffffffffffff04 0000000000000000
<4>[   10.046638] raw: 0000000000000000 0000003800000039 00000001ffffffff 0000000000000000
<4>[   10.046638] page dumped because: kasan: bad access detected
<3>[   10.046638] 
<3>[   10.046638] Memory state around the buggy address:
<3>[   10.046638]  ffff888109525580: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
<3>[   10.046638]  ffff888109525600: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
<3>[   10.046638] >ffff888109525680: fc fc fc fc fc fc fa fb fb fb fb fb fb fb fb fb
<3>[   10.046638]                                                     ^
<3>[   10.046638]  ffff888109525700: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
<3>[   10.046638]  ffff888109525780: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
<3>[   10.046638] ==================================================================
<4>[   10.047505] general protection fault, probably for non-canonical address 0xffdfdbdfdfdfdfe6: 0000 [#1] PREEMPT SMP KASAN NOPTI
<1>[   10.047531] KASAN: maybe wild-memory-access in range [0xfefefefefefeff30-0xfefefefefefeff37]
<4>[   10.047546] CPU: 12 PID: 134 Comm: irq/156-pciehp Tainted: G    B           T   6.8.12-grsec+ #22
<4>[   10.047563] Hardware name: LENOVO 21LVS1CV00/21LVS1CV00, BIOS N45ET18W (1.08 ) 07/08/2024
<4>[   10.047575] RIP: 0010:[<ffffffff82431116>] pci_slot_release+0xc6/0x3f0
<4>[   10.047591] Code: c1 e8 03 42 80 3c 30 00 0f 85 3f 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 ff 01 00 00 8b 6b 38 41 0f
<4>[   10.047615] RSP: 0000:ffffc90000dbf730 EFLAGS: 00010203
<4>[   10.047630] RAX: 1fdfdfdfdfdfdfe6 RBX: fefefefefefefefe RCX: ffffffff81542b9c
<4>[   10.047643] RDX: ffff888109a64020 RSI: 0000000000000008 RDI: fefefefefefeff36
<4>[   10.047654] RBP: ffff8881095256d8 R08: 0000000000000001 R09: fffffbfff0d26128
<4>[   10.047665] R10: ffffffff86930947 R11: ffffffff86974f30 R12: ffff888109a64028
<4>[   10.047676] R13: ffff888109a64000 R14: dffffc0000000000 R15: ffffed102134c804
<4>[   10.047699] RCX: add_taint+0x2c/0xa0
<4>[   10.047711] RDX: autoslab_const_M_slot_P_drivers_pci_slot_258_9_258_9_S_104_A_8_n_83+0x20/0x68 [slab object]
<4>[   10.047730] 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.047750] RSP: vmalloc[kernel_clone]+0xdf/0x770
<4>[   10.047767] R09: kasan shadow of tainted_mask+0x0/0x40
<4>[   10.047781] R10: tainted_mask+0x7/0x40
<4>[   10.047793] R11: printk_rb_static+0x10/0x80
<4>[   10.047803] R12: autoslab_const_M_slot_P_drivers_pci_slot_258_9_258_9_S_104_A_8_n_83+0x28/0x68 [slab object]
<4>[   10.047818] R13: autoslab_const_M_slot_P_drivers_pci_slot_258_9_258_9_S_104_A_8_n_83+0x0/0x68 [slab object]
<4>[   10.047833] R14: kasan shadow of 0x0
<4>[   10.047844] R15: kasan shadow of autoslab_const_M_slot_P_drivers_pci_slot_258_9_258_9_S_104_A_8_n_83+0x20/0x68 [slab object]
<4>[   10.047858] FS:  0000000000000000(0000) GS:ffff88880e400000(0000) knlGS:0000000000000000
<4>[   10.047872] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[   10.047884] CR2: 0000000000000000 CR3: 000000000e454001 CR4: 0000000000f60ef0 shadow CR4: 0000000000f60ef0
<4>[   10.047900] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
<4>[   10.047911] DR3: 0000000000000000 DR6: 00000000ffff07f0 DR7: 0000000000000400
<4>[   10.047923] PKRU: 55555554
<4>[   10.047930] ASID: 0000
<4>[   10.047937] Stack:
<4>[   10.047944]  ffff888114033c28 dffffc0000000000 ffff888109a64028 ffff888109a64064
<4>[   10.047966]  ffffffff851cc140 dffffc0000000000 ffff8881098c9600 ffff888102d1b298
<4>[   10.047986]  ffffffff84c4cf74 ffff888109a64000 ffff888113bdba50 dffffc0000000000
<4>[   10.048007] Call Trace:
<4>[   10.048014]  <TASK>
<4>[   10.048022]  [<ffffffff84c4cf74>] kobject_put+0x194/0x4f0 ffffc90000dbf770
<4>[   10.048042]  [<ffffffff82431d0a>] pci_destroy_slot+0x2a/0x120 ffffc90000dbf7a8
<4>[   10.048061]  [<ffffffff8244828c>] pciehp_remove+0x4c/0x60 ffffc90000dbf7c8
<4>[   10.048077]  [<ffffffff8242420f>] pcie_port_remove_service+0x6f/0xb0 ffffc90000dbf7e0
<4>[   10.048097]  [<ffffffff82f5fe04>] __device_release_driver+0x1b4/0x330 ffffc90000dbf7f8
<4>[   10.048116]  [<ffffffff82f5ffb7>] device_release_driver+0x27/0x40 ffffc90000dbf848
<4>[   10.048133]  [<ffffffff82f5d4b6>] bus_remove_device+0x1f6/0x410 ffffc90000dbf860
<4>[   10.048154]  [<ffffffff82f4d186>] device_del+0x3a6/0xa00 ffffc90000dbf8a8
<4>[   10.048170]  [<ffffffff82f4cde0>] ? __pfx_device_del+0x10/0x10 ffffc90000dbf8f8
<4>[   10.048187]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000dbf928
<4>[   10.048206]  [<ffffffff82f4d808>] device_unregister+0x18/0xb0 ffffc90000dbf978
<4>[   10.048222]  [<ffffffff82424449>] remove_iter+0x49/0x60 ffffc90000dbf988
<4>[   10.048239]  [<ffffffff82424400>] ? __pfx_remove_iter+0x10/0x10 ffffc90000dbf990
<4>[   10.048257]  [<ffffffff82f4a5ea>] device_for_each_child+0xfa/0x180 ffffc90000dbf998
<4>[   10.048278]  [<ffffffff82f4a4f0>] ? __pfx_device_for_each_child+0x10/0x10 ffffc90000dbf9b8
<4>[   10.048299]  [<ffffffff81dad758>] ? kernfs_name_hash+0x18/0xc0 ffffc90000dbf9e0
<4>[   10.048318]  [<ffffffff824244a3>] pcie_portdrv_remove+0x33/0x80 ffffc90000dbfa38
<4>[   10.048337]  [<ffffffff824013b2>] pci_device_remove+0xb2/0x1f0 ffffc90000dbfa50
<4>[   10.048356]  [<ffffffff82f5fe04>] __device_release_driver+0x1b4/0x330 ffffc90000dbfa80
<4>[   10.048374]  [<ffffffff82f5ffb7>] device_release_driver+0x27/0x40 ffffc90000dbfad0
<4>[   10.048391]  [<ffffffff82f5d4b6>] bus_remove_device+0x1f6/0x410 ffffc90000dbfae8
<4>[   10.048412]  [<ffffffff82f4d186>] device_del+0x3a6/0xa00 ffffc90000dbfb30
<4>[   10.048428]  [<ffffffff81baeef8>] ? kfree+0xd8/0x3b0 ffffc90000dbfb68
<4>[   10.048443]  [<ffffffff82f4cde0>] ? __pfx_device_del+0x10/0x10 ffffc90000dbfb80
<4>[   10.048461]  [<ffffffff823e51a3>] pci_remove_bus_device+0x143/0x3b0 ffffc90000dbfc00
<4>[   10.048473]  [<ffffffff84c4cf8a>] ? kobject_put+0x1aa/0x4f0 ffffc90000dbfc08
<4>[   10.048473]  [<ffffffff823e5130>] pci_remove_bus_device+0xd0/0x3b0 ffffc90000dbfc40
<4>[   10.048473]  [<ffffffff8244c454>] pciehp_unconfigure_device+0x1b4/0x430 ffffc90000dbfc80
<4>[   10.048473]  [<ffffffff8244c2a0>] ? __pfx_pciehp_unconfigure_device+0x10/0x10 ffffc90000dbfcb0
<4>[   10.048473]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000dbfcd8
<4>[   10.048473]  [<ffffffff8244951e>] pciehp_disable_slot+0xfe/0x380 ffffc90000dbfd30
<4>[   10.048473]  [<ffffffff82449420>] ? __pfx_pciehp_disable_slot+0x10/0x10 ffffc90000dbfd48
<4>[   10.048473]  [<ffffffff84cdfb00>] ? __mutex_unlock_slowpath.constprop.0+0x280/0x2c0 ffffc90000dbfd58
<4>[   10.048473]  [<ffffffff8244a5a4>] pciehp_handle_presence_or_link_change+0x554/0x1070 ffffc90000dbfdb8
<4>[   10.048473]  [<ffffffff84ce4c9d>] ? down_read+0x14d/0x250 ffffc90000dbfdc8
<4>[   10.048473]  [<ffffffff81682070>] ? __pfx___synchronize_hardirq+0x10/0x10 ffffc90000dbfdd0
<4>[   10.048473]  [<ffffffff8244a050>] ? __pfx_pciehp_handle_presence_or_link_change+0x10/0x10 ffffc90000dbfde8
<4>[   10.048473]  [<ffffffff8182e7bf>] ? trace_hardirqs_on+0x2f/0xf0 ffffc90000dbfe00
<4>[   10.048473]  [<ffffffff8244f530>] pciehp_ist+0x2e0/0x370 ffffc90000dbfe68
<4>[   10.048473]  [<ffffffff8167c510>] irq_thread_fn+0x90/0x180 ffffc90000dbfea8
<4>[   10.048473]  [<ffffffff81680af1>] irq_thread+0x1e1/0x3a0 ffffc90000dbfed8
<4>[   10.048473]  [<ffffffff8167c480>] ? __pfx_irq_thread_fn+0x10/0x10 ffffc90000dbfee0
<4>[   10.048473]  [<ffffffff84cef1d0>] ? __pfx__raw_spin_lock_irqsave+0x10/0x10 ffffc90000dbfee8
<4>[   10.048473]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000dbff10
<4>[   10.048473]  [<ffffffff81680cc0>] ? __pfx_irq_thread_dtor+0x10/0x10 ffffc90000dbff28
<4>[   10.048473]  [<ffffffff815b75bd>] ? __kthread_parkme+0x8d/0x160 ffffc90000dbff50
<4>[   10.048473]  [<ffffffff81680910>] ? __pfx_irq_thread+0x10/0x10 ffffc90000dbff78
<4>[   10.048473]  [<ffffffff815bbbd0>] kthread+0x2d0/0x3c0 ffffc90000dbff90
<4>[   10.048473]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000dbff98
<4>[   10.048473]  [<ffffffff8148f8ac>] ret_from_fork+0x3c/0x80 ffffc90000dbffc8
<4>[   10.048473]  [<ffffffff815bb900>] ? __pfx_kthread+0x10/0x10 ffffc90000dbffd0
<4>[   10.048473]  [<ffffffff814031fb>] ret_from_fork_asm+0x2b/0x50 ffffc90000dbffe8
<4>[   10.048473]  </TASK>
<4>[   10.048473] Modules linked in:
<4>[   10.049245] ---[ 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