Re: Bug#1131025: [6.12.y regression] Regression with 58130e7ce6cb ("PCI/ERR: Ensure error recoverability at all times"): echo vfio-pci >driver_override does not work for DVB Adapter
From: Bernd Schumacher
Date: Sat Apr 04 2026 - 05:55:32 EST
Am Freitag, dem 03.04.2026 um 16:58 +0200 schrieb Lukas Wunner:
> If you cherry-pick these two upstream commits onto v6.12.73,
> does the issue go away?
>
> 4d4c10f763d7 ("PCI: Explicitly put devices into D0 when
> initializing")
> 907a7a2e5bf4 ("PCI/PM: Set up runtime PM even for devices without
> PCI PM")
>
Yes, with the two patches together it works!!!
The diff of the two patches together is:
diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c
index a00a2ce01045..4941f7ff95cb 100644
--- a/drivers/pci/pci-driver.c
+++ b/drivers/pci/pci-driver.c
@@ -555,12 +555,6 @@ static void pci_pm_default_resume(struct pci_dev
*pci_dev)
pci_enable_wake(pci_dev, PCI_D0, false);
}
-static void pci_pm_power_up_and_verify_state(struct pci_dev *pci_dev)
-{
- pci_power_up(pci_dev);
- pci_update_current_state(pci_dev, PCI_D0);
-}
-
static void pci_pm_default_resume_early(struct pci_dev *pci_dev)
{
pci_pm_power_up_and_verify_state(pci_dev);
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 963436edea1c..9a083e63675c 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -3191,6 +3191,12 @@ void pci_d3cold_disable(struct pci_dev *dev)
}
EXPORT_SYMBOL_GPL(pci_d3cold_disable);
+void pci_pm_power_up_and_verify_state(struct pci_dev *pci_dev)
+{
+ pci_power_up(pci_dev);
+ pci_update_current_state(pci_dev, PCI_D0);
+}
+
/**
* pci_pm_init - Initialize PM functions of given PCI device
* @dev: PCI device to handle.
@@ -3201,9 +3207,6 @@ void pci_pm_init(struct pci_dev *dev)
u16 status;
u16 pmc;
- pm_runtime_forbid(&dev->dev);
- pm_runtime_set_active(&dev->dev);
- pm_runtime_enable(&dev->dev);
device_enable_async_suspend(&dev->dev);
dev->wakeup_prepared = false;
@@ -3213,14 +3216,14 @@ void pci_pm_init(struct pci_dev *dev)
/* find PCI PM capability in list */
pm = pci_find_capability(dev, PCI_CAP_ID_PM);
if (!pm)
- return;
+ goto poweron;
/* Check device's ability to generate PME# */
pci_read_config_word(dev, pm + PCI_PM_PMC, &pmc);
if ((pmc & PCI_PM_CAP_VER_MASK) > 3) {
pci_err(dev, "unsupported PM cap regs version (%u)\n",
pmc & PCI_PM_CAP_VER_MASK);
- return;
+ goto poweron;
}
dev->pm_cap = pm;
@@ -3265,6 +3268,11 @@ void pci_pm_init(struct pci_dev *dev)
pci_read_config_word(dev, PCI_STATUS, &status);
if (status & PCI_STATUS_IMM_READY)
dev->imm_ready = 1;
+poweron:
+ pci_pm_power_up_and_verify_state(dev);
+ pm_runtime_forbid(&dev->dev);
+ pm_runtime_set_active(&dev->dev);
+ pm_runtime_enable(&dev->dev);
}
static unsigned long pci_ea_flags(struct pci_dev *dev, u8 prop)
diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h
index c951f861a69b..303000841a53 100644
--- a/drivers/pci/pci.h
+++ b/drivers/pci/pci.h
@@ -146,6 +146,7 @@ void pci_dev_adjust_pme(struct pci_dev *dev);
void pci_dev_complete_resume(struct pci_dev *pci_dev);
void pci_config_pm_runtime_get(struct pci_dev *dev);
void pci_config_pm_runtime_put(struct pci_dev *dev);
+void pci_pm_power_up_and_verify_state(struct pci_dev *pci_dev);
void pci_pm_init(struct pci_dev *dev);
void pci_ea_init(struct pci_dev *dev);
void pci_msi_init(struct pci_dev *dev);
I am not sure, if you need the dmesg. But I have attached it.
Thanks!
Bernd
[ 0.000000] Linux version 6.12.73-dirty (bs@obelix-trixie) (gcc (Debian 14.2.0-19) 14.2.0, GNU ld (GNU Binutils for Debian) 2.44) #23 SMP PREEMPT_DYNAMIC Sat Apr 4 11:34:52 CEST 2026
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.12.73-dirty root=/dev/mapper/vg00-lvroot2 ro "dyndbg=file drivers/pci/* +p" log_buf_len=16M quiet
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009afefff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000009aff000-0x0000000009ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000000a20d000-0x00000000b916cfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000b916d000-0x00000000ba8adfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ba8ae000-0x00000000ba911fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000ba912000-0x00000000bc006fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000bc007000-0x00000000bcffefff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bcfff000-0x00000000bdffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000be000000-0x00000000bfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fd400000-0x00000000fd4fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000101e2fffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000101e300000-0x000000103fffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0xb51de018-0xb51fc457] usable ==> usable
[ 0.000000] e820: update [mem 0xb51bf018-0xb51dd457] usable ==> usable
[ 0.000000] e820: update [mem 0xb51b1018-0xb51be857] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009afefff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000009aff000-0x0000000009ffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000000a20d000-0x00000000b51b1017] usable
[ 0.000000] reserve setup_data: [mem 0x00000000b51b1018-0x00000000b51be857] usable
[ 0.000000] reserve setup_data: [mem 0x00000000b51be858-0x00000000b51bf017] usable
[ 0.000000] reserve setup_data: [mem 0x00000000b51bf018-0x00000000b51dd457] usable
[ 0.000000] reserve setup_data: [mem 0x00000000b51dd458-0x00000000b51de017] usable
[ 0.000000] reserve setup_data: [mem 0x00000000b51de018-0x00000000b51fc457] usable
[ 0.000000] reserve setup_data: [mem 0x00000000b51fc458-0x00000000b916cfff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000b916d000-0x00000000ba8adfff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ba8ae000-0x00000000ba911fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x00000000ba912000-0x00000000bc006fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x00000000bc007000-0x00000000bcffefff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000bcfff000-0x00000000bdffffff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000be000000-0x00000000bfffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fd400000-0x00000000fd4fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000101e2fffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000101e300000-0x000000103fffffff] reserved
[ 0.000000] efi: EFI v2.7 by American Megatrends
[ 0.000000] efi: ACPI=0xbbfee000 ACPI 2.0=0xbbfee014 TPMFinalLog=0xbafb8000 SMBIOS=0xbce23000 SMBIOS 3.0=0xbce22000 MEMATTR=0xb5c00018 ESRT=0xb7d2f598 INITRD=0xb531fe98 RNG=0xba8c1018 TPMEventLog=0xba8b8018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem291: MMIO range=[0xf0000000-0xf7ffffff] (128MB) from e820 map
[ 0.000000] e820: remove [mem 0xf0000000-0xf7ffffff] reserved
[ 0.000000] efi: Remove mem292: MMIO range=[0xfd200000-0xfd2fffff] (1MB) from e820 map
[ 0.000000] e820: remove [mem 0xfd200000-0xfd2fffff] reserved
[ 0.000000] efi: Remove mem293: MMIO range=[0xfd400000-0xfd4fffff] (1MB) from e820 map
[ 0.000000] e820: remove [mem 0xfd400000-0xfd4fffff] reserved
[ 0.000000] efi: Not removing mem294: MMIO range=[0xfea00000-0xfea0ffff] (64KB) from e820 map
[ 0.000000] efi: Remove mem295: MMIO range=[0xfeb80000-0xfec01fff] (0MB) from e820 map
[ 0.000000] e820: remove [mem 0xfeb80000-0xfec01fff] reserved
[ 0.000000] efi: Not removing mem296: MMIO range=[0xfec10000-0xfec10fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem297: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem298: MMIO range=[0xfed40000-0xfed44fff] (20KB) from e820 map
[ 0.000000] efi: Not removing mem299: MMIO range=[0xfed80000-0xfed8ffff] (64KB) from e820 map
[ 0.000000] efi: Not removing mem300: MMIO range=[0xfedc2000-0xfedcffff] (56KB) from e820 map
[ 0.000000] efi: Not removing mem301: MMIO range=[0xfedd4000-0xfedd5fff] (8KB) from e820 map
[ 0.000000] efi: Remove mem302: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.2.0 present.
[ 0.000000] DMI: To Be Filled By O.E.M. X570S PG Riptide/X570S PG Riptide, BIOS P5.41 09/07/2023
[ 0.000000] DMI: Memory slots populated: 2/4
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 3900.040 MHz processor
[ 0.000127] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000128] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000135] last_pfn = 0x101e300 max_arch_pfn = 0x400000000
[ 0.000139] MTRR map: 6 entries (4 fixed + 2 variable; max 21), built from 9 variable MTRRs
[ 0.000140] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000270] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[ 0.000274] last_pfn = 0xbe000 max_arch_pfn = 0x400000000
[ 0.003085] esrt: Reserving ESRT space from 0x00000000b7d2f598 to 0x00000000b7d2f620.
[ 0.003093] e820: update [mem 0xb7d2f000-0xb7d2ffff] usable ==> reserved
[ 0.003117] Using GB pages for direct mapping
[ 0.010887] printk: log_buf_len: 16777216 bytes
[ 0.010888] printk: early log buf free: 123120(93%)
[ 0.010889] Secure boot disabled
[ 0.010889] RAMDISK: [mem 0xab747000-0xad836fff]
[ 0.010917] ACPI: Early table checksum verification disabled
[ 0.010921] ACPI: RSDP 0x00000000BBFEE014 000024 (v02 ALASKA)
[ 0.010924] ACPI: XSDT 0x00000000BBFED728 0000D4 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.010928] ACPI: FACP 0x00000000BA903000 000114 (v06 ALASKA A M I 01072009 AMI 00010013)
[ 0.010931] ACPI: DSDT 0x00000000BA8FC000 0067AC (v02 ALASKA A M I 01072009 INTL 20120913)
[ 0.010932] ACPI: FACS 0x00000000BAFE8000 000040
[ 0.010933] ACPI: IVRS 0x00000000BA911000 0000D0 (v02 AMD AmdTable 00000001 AMD 00000001)
[ 0.010935] ACPI: SSDT 0x00000000BA909000 0072B0 (v02 AMD QOGIR 00000002 MSFT 04000000)
[ 0.010936] ACPI: SSDT 0x00000000BA905000 003B48 (v02 AMD AMD AOD 00000001 INTL 20120913)
[ 0.010938] ACPI: SSDT 0x00000000BA904000 0000C8 (v02 ALASKA CPUSSDT 01072009 AMI 01072009)
[ 0.010939] ACPI: FIDT 0x00000000BA8FB000 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.010940] ACPI: MCFG 0x00000000BA8FA000 00003C (v01 ALASKA A M I 01072009 MSFT 00010013)
[ 0.010942] ACPI: AAFT 0x00000000BA8F9000 0000F1 (v01 ALASKA OEMAAFT 01072009 MSFT 00000097)
[ 0.010943] ACPI: HPET 0x00000000BA8F8000 000038 (v01 ALASKA A M I 01072009 AMI 00000005)
[ 0.010944] ACPI: SSDT 0x00000000BA8F7000 000024 (v01 AMD BIXBY 00001000 INTL 20120913)
[ 0.010945] ACPI: VFCT 0x00000000BA8D3000 023CBC (v01 ALASKA A M I 00000001 AMD 31504F47)
[ 0.010947] ACPI: BGRT 0x00000000BA8D2000 000038 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.010948] ACPI: TPM2 0x00000000BA8D1000 00004C (v04 ALASKA A M I 00000001 AMI 00000000)
[ 0.010949] ACPI: SSDT 0x00000000BA8CE000 002808 (v02 AMD AmdTable 00000001 AMD 00000001)
[ 0.010951] ACPI: CRAT 0x00000000BA8CD000 000B68 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.010952] ACPI: CDIT 0x00000000BA8CC000 000029 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.010953] ACPI: SSDT 0x00000000BA8C8000 0037C4 (v02 AMD QOGIRN 00000001 INTL 20120913)
[ 0.010954] ACPI: WSMT 0x00000000BA8C7000 000028 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.010956] ACPI: APIC 0x00000000BA8C6000 00015E (v03 ALASKA A M I 01072009 AMI 00010013)
[ 0.010957] ACPI: SSDT 0x00000000BA8C5000 00049F (v02 AMD QOGIRPRN 00000001 INTL 20120913)
[ 0.010958] ACPI: SSDT 0x00000000BA8C3000 0010AF (v02 AMD QOGIRC 00000001 INTL 20120913)
[ 0.010960] ACPI: FPDT 0x00000000BA8C2000 000044 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.010961] ACPI: Reserving FACP table memory at [mem 0xba903000-0xba903113]
[ 0.010962] ACPI: Reserving DSDT table memory at [mem 0xba8fc000-0xba9027ab]
[ 0.010962] ACPI: Reserving FACS table memory at [mem 0xbafe8000-0xbafe803f]
[ 0.010963] ACPI: Reserving IVRS table memory at [mem 0xba911000-0xba9110cf]
[ 0.010963] ACPI: Reserving SSDT table memory at [mem 0xba909000-0xba9102af]
[ 0.010963] ACPI: Reserving SSDT table memory at [mem 0xba905000-0xba908b47]
[ 0.010964] ACPI: Reserving SSDT table memory at [mem 0xba904000-0xba9040c7]
[ 0.010964] ACPI: Reserving FIDT table memory at [mem 0xba8fb000-0xba8fb09b]
[ 0.010965] ACPI: Reserving MCFG table memory at [mem 0xba8fa000-0xba8fa03b]
[ 0.010965] ACPI: Reserving AAFT table memory at [mem 0xba8f9000-0xba8f90f0]
[ 0.010965] ACPI: Reserving HPET table memory at [mem 0xba8f8000-0xba8f8037]
[ 0.010966] ACPI: Reserving SSDT table memory at [mem 0xba8f7000-0xba8f7023]
[ 0.010966] ACPI: Reserving VFCT table memory at [mem 0xba8d3000-0xba8f6cbb]
[ 0.010966] ACPI: Reserving BGRT table memory at [mem 0xba8d2000-0xba8d2037]
[ 0.010967] ACPI: Reserving TPM2 table memory at [mem 0xba8d1000-0xba8d104b]
[ 0.010967] ACPI: Reserving SSDT table memory at [mem 0xba8ce000-0xba8d0807]
[ 0.010968] ACPI: Reserving CRAT table memory at [mem 0xba8cd000-0xba8cdb67]
[ 0.010968] ACPI: Reserving CDIT table memory at [mem 0xba8cc000-0xba8cc028]
[ 0.010968] ACPI: Reserving SSDT table memory at [mem 0xba8c8000-0xba8cb7c3]
[ 0.010969] ACPI: Reserving WSMT table memory at [mem 0xba8c7000-0xba8c7027]
[ 0.010969] ACPI: Reserving APIC table memory at [mem 0xba8c6000-0xba8c615d]
[ 0.010969] ACPI: Reserving SSDT table memory at [mem 0xba8c5000-0xba8c549e]
[ 0.010970] ACPI: Reserving SSDT table memory at [mem 0xba8c3000-0xba8c40ae]
[ 0.010970] ACPI: Reserving FPDT table memory at [mem 0xba8c2000-0xba8c2043]
[ 0.011024] No NUMA configuration found
[ 0.011025] Faking a node at [mem 0x0000000000000000-0x000000101e2fffff]
[ 0.011029] NODE_DATA(0) allocated [mem 0x1019ad5680-0x1019afffff]
[ 0.011194] Zone ranges:
[ 0.011194] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.011195] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.011196] Normal [mem 0x0000000100000000-0x000000101e2fffff]
[ 0.011196] Device empty
[ 0.011197] Movable zone start for each node
[ 0.011198] Early memory node ranges
[ 0.011198] node 0: [mem 0x0000000000001000-0x000000000009ffff]
[ 0.011199] node 0: [mem 0x0000000000100000-0x0000000009afefff]
[ 0.011199] node 0: [mem 0x000000000a000000-0x000000000a1fffff]
[ 0.011200] node 0: [mem 0x000000000a20d000-0x00000000b916cfff]
[ 0.011200] node 0: [mem 0x00000000bcfff000-0x00000000bdffffff]
[ 0.011201] node 0: [mem 0x0000000100000000-0x000000101e2fffff]
[ 0.011205] Initmem setup node 0 [mem 0x0000000000001000-0x000000101e2fffff]
[ 0.011209] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.011228] On node 0, zone DMA: 96 pages in unavailable ranges
[ 0.011477] On node 0, zone DMA32: 1281 pages in unavailable ranges
[ 0.014597] On node 0, zone DMA32: 13 pages in unavailable ranges
[ 0.014703] On node 0, zone DMA32: 16018 pages in unavailable ranges
[ 0.014893] On node 0, zone Normal: 8192 pages in unavailable ranges
[ 0.014934] On node 0, zone Normal: 7424 pages in unavailable ranges
[ 0.015132] ACPI: PM-Timer IO Port: 0x808
[ 0.015137] CPU topo: Ignoring hot-pluggable APIC ID 0 in present package.
[ 0.015140] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.015151] IOAPIC[0]: apic_id 13, version 33, address 0xfec00000, GSI 0-23
[ 0.015156] IOAPIC[1]: apic_id 14, version 33, address 0xfec01000, GSI 24-55
[ 0.015157] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.015158] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.015161] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.015161] ACPI: HPET id: 0x10228201 base: 0xfed00000
[ 0.015171] e820: update [mem 0xb5894000-0xb58d4fff] usable ==> reserved
[ 0.015184] CPU topo: Max. logical packages: 1
[ 0.015185] CPU topo: Max. logical dies: 1
[ 0.015185] CPU topo: Max. dies per package: 1
[ 0.015187] CPU topo: Max. threads per core: 2
[ 0.015188] CPU topo: Num. cores per package: 6
[ 0.015188] CPU topo: Num. threads per package: 12
[ 0.015188] CPU topo: Allowing 12 present CPUs plus 0 hotplug CPUs
[ 0.015189] CPU topo: Rejected CPUs 20
[ 0.015204] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.015205] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.015206] PM: hibernation: Registered nosave memory: [mem 0x09aff000-0x09ffffff]
[ 0.015207] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20cfff]
[ 0.015208] PM: hibernation: Registered nosave memory: [mem 0xb5894000-0xb58d4fff]
[ 0.015209] PM: hibernation: Registered nosave memory: [mem 0xb7d2f000-0xb7d2ffff]
[ 0.015210] PM: hibernation: Registered nosave memory: [mem 0xb916d000-0xbcffefff]
[ 0.015211] PM: hibernation: Registered nosave memory: [mem 0xbe000000-0xffffffff]
[ 0.015211] [mem 0xc0000000-0xfe9fffff] available for PCI devices
[ 0.015213] Booting paravirtualized kernel on bare hardware
[ 0.015214] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.018223] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
[ 0.018699] percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288
[ 0.018703] pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152
[ 0.018704] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
[ 0.018706] pcpu-alloc: [0] 08 09 10 11
[ 0.018717] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.12.73-dirty root=/dev/mapper/vg00-lvroot2 ro "dyndbg=file drivers/pci/* +p" log_buf_len=16M quiet
[ 0.022777] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[ 0.024786] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.024843] Fallback order for Node 0: 0
[ 0.024847] Built 1 zonelists, mobility grouping on. Total pages: 16613119
[ 0.024848] Policy zone: Normal
[ 0.024854] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.024888] software IO TLB: area num 16.
[ 0.040515] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[ 0.040547] ftrace: allocating 44672 entries in 175 pages
[ 0.047432] ftrace: allocated 175 pages with 6 groups
[ 0.047904] Dynamic Preempt: voluntary
[ 0.047944] rcu: Preemptible hierarchical RCU implementation.
[ 0.047945] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=12.
[ 0.047946] Trampoline variant of Tasks RCU enabled.
[ 0.047946] Rude variant of Tasks RCU enabled.
[ 0.047946] Tracing variant of Tasks RCU enabled.
[ 0.047947] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.047947] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[ 0.047954] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=12.
[ 0.047955] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=12.
[ 0.047957] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=12.
[ 0.050599] NR_IRQS: 524544, nr_irqs: 1064, preallocated irqs: 16
[ 0.050771] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.050832] Console: colour dummy device 80x25
[ 0.050833] printk: legacy console [tty0] enabled
[ 0.050859] ACPI: Core revision 20240827
[ 0.050971] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.050987] APIC: Switch to symmetric I/O mode setup
[ 0.051689] AMD-Vi: Using global IVHD EFR:0x206d73ef22254ade, EFR2:0x0
[ 0.051927] x2apic enabled
[ 0.051964] APIC: Switched APIC routing to: cluster x2apic
[ 0.052552] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.070992] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x706f00b716c, max_idle_ns: 881590678080 ns
[ 0.070995] Calibrating delay loop (skipped), value calculated using timer frequency.. 7800.08 BogoMIPS (lpj=15600160)
[ 0.071006] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.071025] LVT offset 1 assigned for vector 0xf9
[ 0.071082] LVT offset 2 assigned for vector 0xf4
[ 0.071097] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[ 0.071098] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[ 0.071100] process: using mwait in idle threads
[ 0.071101] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.071102] Spectre V2 : Mitigation: Retpolines
[ 0.071103] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[ 0.071103] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.071104] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.071105] Spectre V2 : User space: Mitigation: STIBP always-on protection
[ 0.071106] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.071106] active return thunk: srso_alias_return_thunk
[ 0.071109] Speculative Return Stack Overflow: Mitigation: Safe RET
[ 0.071109] Transient Scheduler Attacks: Vulnerable: Clear CPU buffers attempted, no microcode
[ 0.071110] VMSCAPE: Mitigation: IBPB before exit to userspace
[ 0.071113] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.071114] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.071114] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.071115] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.071115] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.071116] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.071117] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.071118] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
[ 0.071118] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[ 0.089884] Freeing SMP alternatives memory: 40K
[ 0.089887] pid_max: default: 32768 minimum: 301
[ 0.093423] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,tomoyo,bpf,ipe,ima,evm
[ 0.093490] landlock: Up and running.
[ 0.093491] Yama: becoming mindful.
[ 0.093569] AppArmor: AppArmor initialized
[ 0.093594] TOMOYO Linux initialized
[ 0.093793] LSM support for eBPF active
[ 0.093901] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.093961] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.202310] smpboot: CPU0: AMD Ryzen 5 5600G with Radeon Graphics (family: 0x19, model: 0x50, stepping: 0x0)
[ 0.202511] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[ 0.202530] ... version: 0
[ 0.202531] ... bit width: 48
[ 0.202532] ... generic registers: 6
[ 0.202533] ... value mask: 0000ffffffffffff
[ 0.202534] ... max period: 00007fffffffffff
[ 0.202535] ... fixed-purpose events: 0
[ 0.202536] ... event mask: 000000000000003f
[ 0.202610] signal: max sigframe size: 3376
[ 0.202653] rcu: Hierarchical SRCU implementation.
[ 0.202654] rcu: Max phase no-delay instances is 1000.
[ 0.202689] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[ 0.202994] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.203049] smp: Bringing up secondary CPUs ...
[ 0.203137] smpboot: x86: Booting SMP configuration:
[ 0.203139] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11
[ 0.216995] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[ 0.227027] smp: Brought up 1 node, 12 CPUs
[ 0.227027] smpboot: Total of 12 processors activated (93600.96 BogoMIPS)
[ 0.283083] node 0 deferred pages initialised in 56ms
[ 0.283089] Memory: 65074116K/66452476K available (16384K kernel code, 2469K rwdata, 11268K rodata, 4104K init, 5112K bss, 1362292K reserved, 0K cma-reserved)
[ 0.284030] devtmpfs: initialized
[ 0.284030] x86/mm: Memory block size: 2048MB
[ 0.284030] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20cfff] (53248 bytes)
[ 0.284030] ACPI: PM: Registering ACPI NVS region [mem 0xba912000-0xbc006fff] (24072192 bytes)
[ 0.284030] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.284030] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.284030] pinctrl core: initialized pinctrl subsystem
[ 0.287037] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.287395] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.287646] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.287899] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.287908] audit: initializing netlink subsys (disabled)
[ 0.287915] audit: type=2000 audit(1775295808.236:1): state=initialized audit_enabled=0 res=1
[ 0.287915] thermal_sys: Registered thermal governor 'fair_share'
[ 0.287915] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.287915] thermal_sys: Registered thermal governor 'step_wise'
[ 0.287915] thermal_sys: Registered thermal governor 'user_space'
[ 0.287915] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.287915] cpuidle: using governor ladder
[ 0.287915] cpuidle: using governor menu
[ 0.287915] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.287915] PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f]
[ 0.287915] PCI: Using configuration type 1 for base access
[ 0.287915] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.287915] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.287915] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.287915] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.287915] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.287915] ACPI: Added _OSI(Module Device)
[ 0.287915] ACPI: Added _OSI(Processor Device)
[ 0.287915] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.299168] ACPI: 9 ACPI AML tables successfully acquired and loaded
[ 0.300139] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.301089] ACPI: Interpreter enabled
[ 0.303003] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.303005] ACPI: Using IOAPIC for interrupt routing
[ 0.303370] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.303371] PCI: Ignoring E820 reservations for host bridge windows
[ 0.303714] ACPI: Enabled 4 GPEs in block 00 to 1F
[ 0.314690] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.314695] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.314822] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
[ 0.314832] acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf0000000-0xf7ffffff] for domain 0000 [bus 00-7f] only partially covers this bridge
[ 0.315198] PCI host bridge to bus 0000:00
[ 0.315201] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[ 0.315204] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[ 0.315206] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
[ 0.315207] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.315210] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[ 0.315212] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfcffffff window]
[ 0.315214] pci_bus 0000:00: root bus resource [mem 0x1040000000-0x7fffffffff window]
[ 0.315216] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.315219] pci_bus 0000:00: scanning bus
[ 0.315229] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000 conventional PCI endpoint
[ 0.315326] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600 conventional PCI endpoint
[ 0.315421] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
[ 0.315484] pci 0000:00:01.2: [1022:1634] type 01 class 0x060400 PCIe Root Port
[ 0.315498] pci 0000:00:01.2: PCI bridge to [bus 01-0f]
[ 0.315503] pci 0000:00:01.2: bridge window [io 0xa000-0xdfff]
[ 0.315505] pci 0000:00:01.2: bridge window [mem 0xfbb00000-0xfc6fffff]
[ 0.315511] pci 0000:00:01.2: bridge window [mem 0x7d00000000-0x7e102fffff 64bit pref]
[ 0.315518] pci 0000:00:01.2: enabling Extended Tags
[ 0.315552] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[ 0.315555] pci 0000:00:01.2: PME# disabled
[ 0.315690] pci 0000:00:01.3: [1022:1633] type 01 class 0x060400 PCIe Root Port
[ 0.315704] pci 0000:00:01.3: PCI bridge to [bus 10-12]
[ 0.315708] pci 0000:00:01.3: bridge window [io 0xf000-0xffff]
[ 0.315711] pci 0000:00:01.3: bridge window [mem 0xfcb00000-0xfcdfffff]
[ 0.315716] pci 0000:00:01.3: bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
[ 0.315754] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[ 0.315757] pci 0000:00:01.3: PME# disabled
[ 0.315856] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
[ 0.315916] pci 0000:00:02.1: [1022:1634] type 01 class 0x060400 PCIe Root Port
[ 0.315930] pci 0000:00:02.1: PCI bridge to [bus 13]
[ 0.315935] pci 0000:00:02.1: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.315946] pci 0000:00:02.1: enabling Extended Tags
[ 0.315979] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[ 0.315982] pci 0000:00:02.1: PME# disabled
[ 0.316084] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
[ 0.316144] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400 PCIe Root Port
[ 0.316158] pci 0000:00:08.1: PCI bridge to [bus 14]
[ 0.316162] pci 0000:00:08.1: bridge window [io 0xe000-0xefff]
[ 0.316164] pci 0000:00:08.1: bridge window [mem 0xfc700000-0xfcafffff]
[ 0.316169] pci 0000:00:08.1: bridge window [mem 0x7e20000000-0x7e301fffff 64bit pref]
[ 0.316175] pci 0000:00:08.1: enabling Extended Tags
[ 0.316208] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[ 0.316210] pci 0000:00:08.1: PME# disabled
[ 0.316329] pci 0000:00:08.2: [1022:1635] type 01 class 0x060400 PCIe Root Port
[ 0.316343] pci 0000:00:08.2: PCI bridge to [bus 15]
[ 0.316347] pci 0000:00:08.2: bridge window [mem 0xfce00000-0xfcefffff]
[ 0.316357] pci 0000:00:08.2: enabling Extended Tags
[ 0.316389] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
[ 0.316392] pci 0000:00:08.2: PME# disabled
[ 0.316512] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.316634] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[ 0.316770] pci 0000:00:18.0: [1022:166a] type 00 class 0x060000 conventional PCI endpoint
[ 0.316806] pci 0000:00:18.1: [1022:166b] type 00 class 0x060000 conventional PCI endpoint
[ 0.316841] pci 0000:00:18.2: [1022:166c] type 00 class 0x060000 conventional PCI endpoint
[ 0.316877] pci 0000:00:18.3: [1022:166d] type 00 class 0x060000 conventional PCI endpoint
[ 0.316912] pci 0000:00:18.4: [1022:166e] type 00 class 0x060000 conventional PCI endpoint
[ 0.316948] pci 0000:00:18.5: [1022:166f] type 00 class 0x060000 conventional PCI endpoint
[ 0.316986] pci 0000:00:18.6: [1022:1670] type 00 class 0x060000 conventional PCI endpoint
[ 0.317022] pci 0000:00:18.7: [1022:1671] type 00 class 0x060000 conventional PCI endpoint
[ 0.317062] pci_bus 0000:00: fixups for bus
[ 0.317065] pci 0000:00:01.2: scanning [bus 01-0f] behind bridge, pass 0
[ 0.317098] pci_bus 0000:01: scanning bus
[ 0.317122] pci 0000:01:00.0: [1022:57ad] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.317164] pci 0000:01:00.0: PCI bridge to [bus 02-0f]
[ 0.317173] pci 0000:01:00.0: bridge window [io 0xa000-0xdfff]
[ 0.317178] pci 0000:01:00.0: bridge window [mem 0xfbb00000-0xfc6fffff]
[ 0.317192] pci 0000:01:00.0: bridge window [mem 0x7d00000000-0x7e102fffff 64bit pref]
[ 0.317206] pci 0000:01:00.0: enabling Extended Tags
[ 0.317304] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.317340] pci 0000:01:00.0: PME# disabled
[ 0.317437] pci 0000:01:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
[ 0.317590] pci_bus 0000:01: fixups for bus
[ 0.317591] pci 0000:00:01.2: PCI bridge to [bus 01-0f]
[ 0.317599] pci 0000:01:00.0: scanning [bus 02-0f] behind bridge, pass 0
[ 0.317776] pci_bus 0000:02: scanning bus
[ 0.317839] pci 0000:02:00.0: [1022:57a3] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.317878] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.317889] pci 0000:02:00.0: bridge window [mem 0xfc600000-0xfc6fffff]
[ 0.317931] pci 0000:02:00.0: enabling Extended Tags
[ 0.318190] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.318194] pci 0000:02:00.0: PME# disabled
[ 0.318731] pci 0000:02:01.0: [1022:57a3] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.318770] pci 0000:02:01.0: PCI bridge to [bus 04-06]
[ 0.318778] pci 0000:02:01.0: bridge window [io 0xd000-0xdfff]
[ 0.318782] pci 0000:02:01.0: bridge window [mem 0xfbb00000-0xfbdfffff]
[ 0.318796] pci 0000:02:01.0: bridge window [mem 0x7d00000000-0x7e0fffffff 64bit pref]
[ 0.318825] pci 0000:02:01.0: enabling Extended Tags
[ 0.319087] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
[ 0.319097] pci 0000:02:01.0: PME# disabled
[ 0.319637] pci 0000:02:03.0: [1022:57a3] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.319676] pci 0000:02:03.0: PCI bridge to [bus 07]
[ 0.319687] pci 0000:02:03.0: bridge window [mem 0xfc500000-0xfc5fffff]
[ 0.319728] pci 0000:02:03.0: enabling Extended Tags
[ 0.320001] pci 0000:02:03.0: PME# supported from D0 D3hot D3cold
[ 0.320005] pci 0000:02:03.0: PME# disabled
[ 0.320526] pci 0000:02:05.0: [1022:57a3] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.320565] pci 0000:02:05.0: PCI bridge to [bus 08-0b]
[ 0.320573] pci 0000:02:05.0: bridge window [io 0xa000-0xbfff]
[ 0.320578] pci 0000:02:05.0: bridge window [mem 0xfc000000-0xfc1fffff]
[ 0.320591] pci 0000:02:05.0: bridge window [mem 0x7e10100000-0x7e102fffff 64bit pref]
[ 0.320621] pci 0000:02:05.0: enabling Extended Tags
[ 0.320892] pci 0000:02:05.0: PME# supported from D0 D3hot D3cold
[ 0.320897] pci 0000:02:05.0: PME# disabled
[ 0.321443] pci 0000:02:07.0: [1022:57a3] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.321482] pci 0000:02:07.0: PCI bridge to [bus 0c]
[ 0.321490] pci 0000:02:07.0: bridge window [io 0xc000-0xcfff]
[ 0.321494] pci 0000:02:07.0: bridge window [mem 0xfc400000-0xfc4fffff]
[ 0.321536] pci 0000:02:07.0: enabling Extended Tags
[ 0.321795] pci 0000:02:07.0: PME# supported from D0 D3hot D3cold
[ 0.321799] pci 0000:02:07.0: PME# disabled
[ 0.322328] pci 0000:02:08.0: [1022:57a4] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.322368] pci 0000:02:08.0: PCI bridge to [bus 0d]
[ 0.322379] pci 0000:02:08.0: bridge window [mem 0xfbe00000-0xfbffffff]
[ 0.322419] pci 0000:02:08.0: enabling Extended Tags
[ 0.322590] pci 0000:02:08.0: PME# supported from D0 D3hot D3cold
[ 0.322594] pci 0000:02:08.0: PME# disabled
[ 0.322882] pci 0000:02:09.0: [1022:57a4] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.322921] pci 0000:02:09.0: PCI bridge to [bus 0e]
[ 0.322932] pci 0000:02:09.0: bridge window [mem 0xfc300000-0xfc3fffff]
[ 0.322972] pci 0000:02:09.0: enabling Extended Tags
[ 0.323147] pci 0000:02:09.0: PME# supported from D0 D3hot D3cold
[ 0.323151] pci 0000:02:09.0: PME# disabled
[ 0.323400] pci 0000:02:0a.0: [1022:57a4] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.323440] pci 0000:02:0a.0: PCI bridge to [bus 0f]
[ 0.323451] pci 0000:02:0a.0: bridge window [mem 0xfc200000-0xfc2fffff]
[ 0.323490] pci 0000:02:0a.0: enabling Extended Tags
[ 0.323661] pci 0000:02:0a.0: PME# supported from D0 D3hot D3cold
[ 0.323666] pci 0000:02:0a.0: PME# disabled
[ 0.323920] pci_bus 0000:02: fixups for bus
[ 0.323921] pci 0000:01:00.0: PCI bridge to [bus 02-0f]
[ 0.323939] pci 0000:02:00.0: scanning [bus 03-03] behind bridge, pass 0
[ 0.324165] pci_bus 0000:03: scanning bus
[ 0.324192] pci 0000:03:00.0: [1d97:1602] type 00 class 0x010802 PCIe Endpoint
[ 0.324220] pci 0000:03:00.0: BAR 0 [mem 0xfc600000-0xfc603fff 64bit]
[ 0.324614] pci 0000:03:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 63.012 Gb/s with 16.0 GT/s PCIe x4 link)
[ 0.324850] pci_bus 0000:03: fixups for bus
[ 0.324851] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.324867] pci_bus 0000:03: bus scan returning with max=03
[ 0.324873] pci 0000:02:01.0: scanning [bus 04-06] behind bridge, pass 0
[ 0.324958] pci_bus 0000:04: scanning bus
[ 0.324988] pci 0000:04:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.325013] pci 0000:04:00.0: BAR 0 [mem 0xfbd00000-0xfbd03fff]
[ 0.325041] pci 0000:04:00.0: PCI bridge to [bus 05-06]
[ 0.325051] pci 0000:04:00.0: bridge window [io 0xd000-0xdfff]
[ 0.325056] pci 0000:04:00.0: bridge window [mem 0xfbb00000-0xfbcfffff]
[ 0.325073] pci 0000:04:00.0: bridge window [mem 0x7d00000000-0x7e0fffffff 64bit pref]
[ 0.325092] pci 0000:04:00.0: enabling Extended Tags
[ 0.325237] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[ 0.325242] pci 0000:04:00.0: PME# disabled
[ 0.325386] pci 0000:04:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 63.012 Gb/s with 16.0 GT/s PCIe x4 link)
[ 0.325579] pci_bus 0000:04: fixups for bus
[ 0.325580] pci 0000:02:01.0: PCI bridge to [bus 04-06]
[ 0.325597] pci 0000:04:00.0: scanning [bus 05-06] behind bridge, pass 0
[ 0.325648] pci_bus 0000:05: scanning bus
[ 0.325676] pci 0000:05:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.325727] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.325737] pci 0000:05:00.0: bridge window [io 0xd000-0xdfff]
[ 0.325742] pci 0000:05:00.0: bridge window [mem 0xfbb00000-0xfbcfffff]
[ 0.325759] pci 0000:05:00.0: bridge window [mem 0x7d00000000-0x7e0fffffff 64bit pref]
[ 0.325781] pci 0000:05:00.0: enabling Extended Tags
[ 0.325927] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
[ 0.325932] pci 0000:05:00.0: PME# disabled
[ 0.326239] pci_bus 0000:05: fixups for bus
[ 0.326240] pci 0000:04:00.0: PCI bridge to [bus 05-06]
[ 0.326261] pci 0000:05:00.0: scanning [bus 06-06] behind bridge, pass 0
[ 0.326311] pci_bus 0000:06: scanning bus
[ 0.326341] pci 0000:06:00.0: [1002:743f] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.326372] pci 0000:06:00.0: BAR 0 [mem 0x7d00000000-0x7dffffffff 64bit pref]
[ 0.326393] pci 0000:06:00.0: BAR 2 [mem 0x7e00000000-0x7e0fffffff 64bit pref]
[ 0.326407] pci 0000:06:00.0: BAR 4 [io 0xd000-0xd0ff]
[ 0.326420] pci 0000:06:00.0: BAR 5 [mem 0xfbb00000-0xfbbfffff]
[ 0.326434] pci 0000:06:00.0: ROM [mem 0xfbc00000-0xfbc1ffff pref]
[ 0.326446] pci 0000:06:00.0: enabling Extended Tags
[ 0.326618] pci 0000:06:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.326623] pci 0000:06:00.0: PME# disabled
[ 0.326790] pci 0000:06:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.326941] pci 0000:06:00.1: [1002:ab28] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.326962] pci 0000:06:00.1: BAR 0 [mem 0xfbc20000-0xfbc23fff]
[ 0.327030] pci 0000:06:00.1: enabling Extended Tags
[ 0.327146] pci 0000:06:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.327151] pci 0000:06:00.1: PME# disabled
[ 0.327380] pci_bus 0000:06: fixups for bus
[ 0.327382] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.327400] pci_bus 0000:06: bus scan returning with max=06
[ 0.327408] pci 0000:05:00.0: scanning [bus 06-06] behind bridge, pass 1
[ 0.327416] pci_bus 0000:05: bus scan returning with max=06
[ 0.327423] pci 0000:04:00.0: scanning [bus 05-06] behind bridge, pass 1
[ 0.327432] pci_bus 0000:04: bus scan returning with max=06
[ 0.327438] pci 0000:02:03.0: scanning [bus 07-07] behind bridge, pass 0
[ 0.327524] pci_bus 0000:07: scanning bus
[ 0.327562] pci 0000:07:00.0: [dd01:0003] type 00 class 0x048000 PCIe Endpoint
[ 0.327598] pci 0000:07:00.0: BAR 0 [mem 0xfffffffffc500000-0xfffffffffc50ffff 64bit]
[ 0.327927] pci_bus 0000:07: fixups for bus
[ 0.327928] pci 0000:02:03.0: PCI bridge to [bus 07]
[ 0.327943] pci_bus 0000:07: bus scan returning with max=07
[ 0.327949] pci 0000:02:05.0: scanning [bus 08-0b] behind bridge, pass 0
[ 0.328034] pci_bus 0000:08: scanning bus
[ 0.328064] pci 0000:08:00.0: [1b21:1182] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.328115] pci 0000:08:00.0: PCI bridge to [bus 09-0b]
[ 0.328125] pci 0000:08:00.0: bridge window [io 0xa000-0xbfff]
[ 0.328130] pci 0000:08:00.0: bridge window [mem 0xfc000000-0xfc1fffff]
[ 0.328147] pci 0000:08:00.0: bridge window [mem 0x7e10100000-0x7e102fffff 64bit pref]
[ 0.328169] pci 0000:08:00.0: enabling Extended Tags
[ 0.328273] pci 0000:08:00.0: PME# supported from D0 D3hot D3cold
[ 0.328278] pci 0000:08:00.0: PME# disabled
[ 0.328534] pci_bus 0000:08: fixups for bus
[ 0.328536] pci 0000:02:05.0: PCI bridge to [bus 08-0b]
[ 0.328553] pci 0000:08:00.0: scanning [bus 09-0b] behind bridge, pass 0
[ 0.328603] pci_bus 0000:09: scanning bus
[ 0.328639] pci 0000:09:03.0: [1b21:1182] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.328690] pci 0000:09:03.0: PCI bridge to [bus 0a]
[ 0.328701] pci 0000:09:03.0: bridge window [io 0xb000-0xbfff]
[ 0.328706] pci 0000:09:03.0: bridge window [mem 0xfc100000-0xfc1fffff]
[ 0.328723] pci 0000:09:03.0: bridge window [mem 0x7e10200000-0x7e102fffff 64bit pref]
[ 0.328747] pci 0000:09:03.0: enabling Extended Tags
[ 0.328849] pci 0000:09:03.0: PME# supported from D0 D3hot D3cold
[ 0.328854] pci 0000:09:03.0: PME# disabled
[ 0.329018] pci 0000:09:07.0: [1b21:1182] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.329070] pci 0000:09:07.0: PCI bridge to [bus 0b]
[ 0.329080] pci 0000:09:07.0: bridge window [io 0xa000-0xafff]
[ 0.329085] pci 0000:09:07.0: bridge window [mem 0xfc000000-0xfc0fffff]
[ 0.329102] pci 0000:09:07.0: bridge window [mem 0x7e10100000-0x7e101fffff 64bit pref]
[ 0.329126] pci 0000:09:07.0: enabling Extended Tags
[ 0.329227] pci 0000:09:07.0: PME# supported from D0 D3hot D3cold
[ 0.329233] pci 0000:09:07.0: PME# disabled
[ 0.329407] pci_bus 0000:09: fixups for bus
[ 0.329409] pci 0000:08:00.0: PCI bridge to [bus 09-0b]
[ 0.329429] pci 0000:09:03.0: scanning [bus 0a-0a] behind bridge, pass 0
[ 0.329479] pci_bus 0000:0a: scanning bus
[ 0.329523] pci 0000:0a:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[ 0.329554] pci 0000:0a:00.0: BAR 0 [io 0xb000-0xb0ff]
[ 0.329592] pci 0000:0a:00.0: BAR 2 [mem 0xfc100000-0xfc100fff 64bit]
[ 0.329617] pci 0000:0a:00.0: BAR 4 [mem 0x7e10200000-0x7e10203fff 64bit pref]
[ 0.329799] pci 0000:0a:00.0: supports D1 D2
[ 0.329800] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.329807] pci 0000:0a:00.0: PME# disabled
[ 0.330066] pci_bus 0000:0a: fixups for bus
[ 0.330068] pci 0000:09:03.0: PCI bridge to [bus 0a]
[ 0.330087] pci_bus 0000:0a: bus scan returning with max=0a
[ 0.330094] pci 0000:09:07.0: scanning [bus 0b-0b] behind bridge, pass 0
[ 0.330144] pci_bus 0000:0b: scanning bus
[ 0.330187] pci 0000:0b:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[ 0.330218] pci 0000:0b:00.0: BAR 0 [io 0xa000-0xa0ff]
[ 0.330255] pci 0000:0b:00.0: BAR 2 [mem 0xfc000000-0xfc000fff 64bit]
[ 0.330280] pci 0000:0b:00.0: BAR 4 [mem 0x7e10100000-0x7e10103fff 64bit pref]
[ 0.330459] pci 0000:0b:00.0: supports D1 D2
[ 0.330461] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.330468] pci 0000:0b:00.0: PME# disabled
[ 0.330724] pci_bus 0000:0b: fixups for bus
[ 0.330725] pci 0000:09:07.0: PCI bridge to [bus 0b]
[ 0.330744] pci_bus 0000:0b: bus scan returning with max=0b
[ 0.330751] pci 0000:09:03.0: scanning [bus 0a-0a] behind bridge, pass 1
[ 0.330761] pci 0000:09:07.0: scanning [bus 0b-0b] behind bridge, pass 1
[ 0.330770] pci_bus 0000:09: bus scan returning with max=0b
[ 0.330777] pci 0000:08:00.0: scanning [bus 09-0b] behind bridge, pass 1
[ 0.330786] pci_bus 0000:08: bus scan returning with max=0b
[ 0.330791] pci 0000:02:07.0: scanning [bus 0c-0c] behind bridge, pass 0
[ 0.330877] pci_bus 0000:0c: scanning bus
[ 0.330910] pci 0000:0c:00.0: [10ec:3000] type 00 class 0x020000 PCIe Endpoint
[ 0.330933] pci 0000:0c:00.0: BAR 0 [io 0xc000-0xc0ff]
[ 0.330961] pci 0000:0c:00.0: BAR 2 [mem 0xfc400000-0xfc40ffff 64bit]
[ 0.330980] pci 0000:0c:00.0: BAR 4 [mem 0xfc410000-0xfc413fff 64bit]
[ 0.331147] pci 0000:0c:00.0: supports D1 D2
[ 0.331149] pci 0000:0c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.331154] pci 0000:0c:00.0: PME# disabled
[ 0.331521] pci_bus 0000:0c: fixups for bus
[ 0.331522] pci 0000:02:07.0: PCI bridge to [bus 0c]
[ 0.331537] pci_bus 0000:0c: bus scan returning with max=0c
[ 0.331543] pci 0000:02:08.0: scanning [bus 0d-0d] behind bridge, pass 0
[ 0.331642] pci_bus 0000:0d: scanning bus
[ 0.331668] pci 0000:0d:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[ 0.331738] pci 0000:0d:00.0: enabling Extended Tags
[ 0.331926] pci 0000:0d:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.332187] pci 0000:0d:00.1: [1022:149c] type 00 class 0x0c0330 PCIe Endpoint
[ 0.332516] pci 0000:0d:00.1: BAR 0 [mem 0xfbf00000-0xfbffffff 64bit]
[ 0.333252] pci 0000:0d:00.1: enabling Extended Tags
[ 0.333789] pci 0000:0d:00.1: PME# supported from D0 D3hot D3cold
[ 0.333828] pci 0000:0d:00.1: PME# disabled
[ 0.334256] pci 0000:0d:00.3: [1022:149c] type 00 class 0x0c0330 PCIe Endpoint
[ 0.334283] pci 0000:0d:00.3: BAR 0 [mem 0xfbe00000-0xfbefffff 64bit]
[ 0.334345] pci 0000:0d:00.3: enabling Extended Tags
[ 0.334424] pci 0000:0d:00.3: PME# supported from D0 D3hot D3cold
[ 0.334428] pci 0000:0d:00.3: PME# disabled
[ 0.334608] pci_bus 0000:0d: fixups for bus
[ 0.334610] pci 0000:02:08.0: PCI bridge to [bus 0d]
[ 0.334625] pci_bus 0000:0d: bus scan returning with max=0d
[ 0.334631] pci 0000:02:09.0: scanning [bus 0e-0e] behind bridge, pass 0
[ 0.334708] pci_bus 0000:0e: scanning bus
[ 0.334734] pci 0000:0e:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[ 0.334807] pci 0000:0e:00.0: BAR 5 [mem 0xfc300000-0xfc3007ff]
[ 0.334828] pci 0000:0e:00.0: enabling Extended Tags
[ 0.334936] pci 0000:0e:00.0: PME# supported from D3hot D3cold
[ 0.334941] pci 0000:0e:00.0: PME# disabled
[ 0.335039] pci 0000:0e:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.335155] pci_bus 0000:0e: fixups for bus
[ 0.335156] pci 0000:02:09.0: PCI bridge to [bus 0e]
[ 0.335171] pci_bus 0000:0e: bus scan returning with max=0e
[ 0.335177] pci 0000:02:0a.0: scanning [bus 0f-0f] behind bridge, pass 0
[ 0.335252] pci_bus 0000:0f: scanning bus
[ 0.335278] pci 0000:0f:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[ 0.335351] pci 0000:0f:00.0: BAR 5 [mem 0xfc200000-0xfc2007ff]
[ 0.335372] pci 0000:0f:00.0: enabling Extended Tags
[ 0.335480] pci 0000:0f:00.0: PME# supported from D3hot D3cold
[ 0.335484] pci 0000:0f:00.0: PME# disabled
[ 0.335579] pci 0000:0f:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.335693] pci_bus 0000:0f: fixups for bus
[ 0.335695] pci 0000:02:0a.0: PCI bridge to [bus 0f]
[ 0.335710] pci_bus 0000:0f: bus scan returning with max=0f
[ 0.335715] pci 0000:02:00.0: scanning [bus 03-03] behind bridge, pass 1
[ 0.335724] pci 0000:02:01.0: scanning [bus 04-06] behind bridge, pass 1
[ 0.335733] pci 0000:02:03.0: scanning [bus 07-07] behind bridge, pass 1
[ 0.335741] pci 0000:02:05.0: scanning [bus 08-0b] behind bridge, pass 1
[ 0.335749] pci 0000:02:07.0: scanning [bus 0c-0c] behind bridge, pass 1
[ 0.335758] pci 0000:02:08.0: scanning [bus 0d-0d] behind bridge, pass 1
[ 0.335766] pci 0000:02:09.0: scanning [bus 0e-0e] behind bridge, pass 1
[ 0.335775] pci 0000:02:0a.0: scanning [bus 0f-0f] behind bridge, pass 1
[ 0.335782] pci_bus 0000:02: bus scan returning with max=0f
[ 0.335788] pci 0000:01:00.0: scanning [bus 02-0f] behind bridge, pass 1
[ 0.335795] pci_bus 0000:01: bus scan returning with max=0f
[ 0.335798] pci 0000:00:01.3: scanning [bus 10-12] behind bridge, pass 0
[ 0.335835] pci_bus 0000:10: scanning bus
[ 0.335851] pci 0000:10:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.335864] pci 0000:10:00.0: BAR 0 [mem 0xfcd00000-0xfcd03fff]
[ 0.335879] pci 0000:10:00.0: PCI bridge to [bus 11-12]
[ 0.335885] pci 0000:10:00.0: bridge window [io 0xf000-0xffff]
[ 0.335888] pci 0000:10:00.0: bridge window [mem 0xfcb00000-0xfccfffff]
[ 0.335897] pci 0000:10:00.0: bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
[ 0.335977] pci 0000:10:00.0: PME# supported from D0 D3hot D3cold
[ 0.335981] pci 0000:10:00.0: PME# disabled
[ 0.336049] pci 0000:10:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.3 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
[ 0.336134] pci_bus 0000:10: fixups for bus
[ 0.336135] pci 0000:00:01.3: PCI bridge to [bus 10-12]
[ 0.336142] pci 0000:10:00.0: scanning [bus 11-12] behind bridge, pass 0
[ 0.336173] pci_bus 0000:11: scanning bus
[ 0.336188] pci 0000:11:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.336214] pci 0000:11:00.0: PCI bridge to [bus 12]
[ 0.336219] pci 0000:11:00.0: bridge window [io 0xf000-0xffff]
[ 0.336223] pci 0000:11:00.0: bridge window [mem 0xfcb00000-0xfccfffff]
[ 0.336232] pci 0000:11:00.0: bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
[ 0.336311] pci 0000:11:00.0: PME# supported from D0 D3hot D3cold
[ 0.336315] pci 0000:11:00.0: PME# disabled
[ 0.336466] pci_bus 0000:11: fixups for bus
[ 0.336468] pci 0000:10:00.0: PCI bridge to [bus 11-12]
[ 0.336479] pci 0000:11:00.0: scanning [bus 12-12] behind bridge, pass 0
[ 0.336508] pci_bus 0000:12: scanning bus
[ 0.336524] pci 0000:12:00.0: [1002:73ff] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.336540] pci 0000:12:00.0: BAR 0 [mem 0x7a00000000-0x7bffffffff 64bit pref]
[ 0.336551] pci 0000:12:00.0: BAR 2 [mem 0x7c00000000-0x7c0fffffff 64bit pref]
[ 0.336559] pci 0000:12:00.0: BAR 4 [io 0xf000-0xf0ff]
[ 0.336566] pci 0000:12:00.0: BAR 5 [mem 0xfcb00000-0xfcbfffff]
[ 0.336574] pci 0000:12:00.0: ROM [mem 0xfcc00000-0xfcc1ffff pref]
[ 0.336660] pci 0000:12:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.336663] pci 0000:12:00.0: PME# disabled
[ 0.336738] pci 0000:12:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.3 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.336823] pci 0000:12:00.1: [1002:ab28] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.336834] pci 0000:12:00.1: BAR 0 [mem 0xfcc20000-0xfcc23fff]
[ 0.336917] pci 0000:12:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.336920] pci 0000:12:00.1: PME# disabled
[ 0.337043] pci_bus 0000:12: fixups for bus
[ 0.337045] pci 0000:11:00.0: PCI bridge to [bus 12]
[ 0.337055] pci_bus 0000:12: bus scan returning with max=12
[ 0.337059] pci 0000:11:00.0: scanning [bus 12-12] behind bridge, pass 1
[ 0.337064] pci_bus 0000:11: bus scan returning with max=12
[ 0.337068] pci 0000:10:00.0: scanning [bus 11-12] behind bridge, pass 1
[ 0.337073] pci_bus 0000:10: bus scan returning with max=12
[ 0.337076] pci 0000:00:02.1: scanning [bus 13-13] behind bridge, pass 0
[ 0.337137] pci_bus 0000:13: scanning bus
[ 0.337153] pci 0000:13:00.0: [1d97:1602] type 00 class 0x010802 PCIe Endpoint
[ 0.337169] pci 0000:13:00.0: BAR 0 [mem 0xfcf00000-0xfcf03fff 64bit]
[ 0.337369] pci 0000:13:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:02.1 (capable of 63.012 Gb/s with 16.0 GT/s PCIe x4 link)
[ 0.337474] pci_bus 0000:13: fixups for bus
[ 0.337475] pci 0000:00:02.1: PCI bridge to [bus 13]
[ 0.337482] pci_bus 0000:13: bus scan returning with max=13
[ 0.337485] pci 0000:00:08.1: scanning [bus 14-14] behind bridge, pass 0
[ 0.337543] pci_bus 0000:14: scanning bus
[ 0.337555] pci 0000:14:00.0: [1002:1638] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.337566] pci 0000:14:00.0: BAR 0 [mem 0x7e20000000-0x7e2fffffff 64bit pref]
[ 0.337574] pci 0000:14:00.0: BAR 2 [mem 0x7e30000000-0x7e301fffff 64bit pref]
[ 0.337580] pci 0000:14:00.0: BAR 4 [io 0xe000-0xe0ff]
[ 0.337585] pci 0000:14:00.0: BAR 5 [mem 0xfca00000-0xfca7ffff]
[ 0.337594] pci 0000:14:00.0: enabling Extended Tags
[ 0.337643] pci 0000:14:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.337646] pci 0000:14:00.0: PME# disabled
[ 0.337767] pci 0000:14:00.1: [1002:1637] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.337775] pci 0000:14:00.1: BAR 0 [mem 0xfca88000-0xfca8bfff]
[ 0.337796] pci 0000:14:00.1: enabling Extended Tags
[ 0.337826] pci 0000:14:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.337829] pci 0000:14:00.1: PME# disabled
[ 0.337909] pci 0000:14:00.2: [1022:15df] type 00 class 0x108000 PCIe Endpoint
[ 0.337922] pci 0000:14:00.2: BAR 2 [mem 0xfc900000-0xfc9fffff]
[ 0.337931] pci 0000:14:00.2: BAR 5 [mem 0xfca8c000-0xfca8dfff]
[ 0.337939] pci 0000:14:00.2: enabling Extended Tags
[ 0.338046] pci 0000:14:00.3: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint
[ 0.338058] pci 0000:14:00.3: BAR 0 [mem 0xfc800000-0xfc8fffff 64bit]
[ 0.338081] pci 0000:14:00.3: enabling Extended Tags
[ 0.338113] pci 0000:14:00.3: PME# supported from D0 D3hot D3cold
[ 0.338115] pci 0000:14:00.3: PME# disabled
[ 0.338205] pci 0000:14:00.4: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint
[ 0.338216] pci 0000:14:00.4: BAR 0 [mem 0xfc700000-0xfc7fffff 64bit]
[ 0.338239] pci 0000:14:00.4: enabling Extended Tags
[ 0.338271] pci 0000:14:00.4: PME# supported from D0 D3hot D3cold
[ 0.338273] pci 0000:14:00.4: PME# disabled
[ 0.338359] pci 0000:14:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint
[ 0.338366] pci 0000:14:00.6: BAR 0 [mem 0xfca80000-0xfca87fff]
[ 0.338387] pci 0000:14:00.6: enabling Extended Tags
[ 0.338417] pci 0000:14:00.6: PME# supported from D0 D3hot D3cold
[ 0.338419] pci 0000:14:00.6: PME# disabled
[ 0.338422] pci 0000:14:00.6: power state changed by ACPI to D0
[ 0.338424] pci 0000:14:00.6: ACPI _REG connect evaluation failed (5)
[ 0.338519] pci_bus 0000:14: fixups for bus
[ 0.338520] pci 0000:00:08.1: PCI bridge to [bus 14]
[ 0.338526] pci_bus 0000:14: bus scan returning with max=14
[ 0.338529] pci 0000:00:08.2: scanning [bus 15-15] behind bridge, pass 0
[ 0.338563] pci_bus 0000:15: scanning bus
[ 0.338574] pci 0000:15:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[ 0.338602] pci 0000:15:00.0: BAR 5 [mem 0xfce01000-0xfce017ff]
[ 0.338610] pci 0000:15:00.0: enabling Extended Tags
[ 0.338755] pci 0000:15:00.1: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[ 0.338783] pci 0000:15:00.1: BAR 5 [mem 0xfce00000-0xfce007ff]
[ 0.338791] pci 0000:15:00.1: enabling Extended Tags
[ 0.338902] pci_bus 0000:15: fixups for bus
[ 0.338904] pci 0000:00:08.2: PCI bridge to [bus 15]
[ 0.338910] pci_bus 0000:15: bus scan returning with max=15
[ 0.338913] pci 0000:00:01.2: scanning [bus 01-0f] behind bridge, pass 1
[ 0.338917] pci 0000:00:01.3: scanning [bus 10-12] behind bridge, pass 1
[ 0.338921] pci 0000:00:02.1: scanning [bus 13-13] behind bridge, pass 1
[ 0.338925] pci 0000:00:08.1: scanning [bus 14-14] behind bridge, pass 1
[ 0.338929] pci 0000:00:08.2: scanning [bus 15-15] behind bridge, pass 1
[ 0.338932] pci_bus 0000:00: bus scan returning with max=15
[ 0.338945] pci 0000:00:00.0: save config 0x00: 0x16301022
[ 0.338948] pci 0000:00:00.0: save config 0x04: 0x00000000
[ 0.338950] pci 0000:00:00.0: save config 0x08: 0x06000000
[ 0.338952] pci 0000:00:00.0: save config 0x0c: 0x00800000
[ 0.338954] pci 0000:00:00.0: save config 0x10: 0x00000000
[ 0.338956] pci 0000:00:00.0: save config 0x14: 0x00000000
[ 0.338958] pci 0000:00:00.0: save config 0x18: 0x00000000
[ 0.338960] pci 0000:00:00.0: save config 0x1c: 0x00000000
[ 0.338962] pci 0000:00:00.0: save config 0x20: 0x00000000
[ 0.338963] pci 0000:00:00.0: save config 0x24: 0x00000000
[ 0.338965] pci 0000:00:00.0: save config 0x28: 0x00000000
[ 0.338967] pci 0000:00:00.0: save config 0x2c: 0x16301022
[ 0.338969] pci 0000:00:00.0: save config 0x30: 0x00000000
[ 0.338971] pci 0000:00:00.0: save config 0x34: 0x00000000
[ 0.338973] pci 0000:00:00.0: save config 0x38: 0x00000000
[ 0.338975] pci 0000:00:00.0: save config 0x3c: 0x00000000
[ 0.338980] pci 0000:00:00.2: save config 0x00: 0x16311022
[ 0.338982] pci 0000:00:00.2: save config 0x04: 0x00100004
[ 0.338984] pci 0000:00:00.2: save config 0x08: 0x08060000
[ 0.338986] pci 0000:00:00.2: save config 0x0c: 0x00800000
[ 0.338987] pci 0000:00:00.2: save config 0x10: 0x00000000
[ 0.338989] pci 0000:00:00.2: save config 0x14: 0x00000000
[ 0.338991] pci 0000:00:00.2: save config 0x18: 0x00000000
[ 0.338996] pci 0000:00:00.2: save config 0x1c: 0x00000000
[ 0.338998] pci 0000:00:00.2: save config 0x20: 0x00000000
[ 0.339000] pci 0000:00:00.2: save config 0x24: 0x00000000
[ 0.339002] pci 0000:00:00.2: save config 0x28: 0x00000000
[ 0.339004] pci 0000:00:00.2: save config 0x2c: 0x16311022
[ 0.339005] pci 0000:00:00.2: save config 0x30: 0x00000000
[ 0.339007] pci 0000:00:00.2: save config 0x34: 0x00000040
[ 0.339009] pci 0000:00:00.2: save config 0x38: 0x00000000
[ 0.339011] pci 0000:00:00.2: save config 0x3c: 0x000001ff
[ 0.339016] pci 0000:00:01.0: save config 0x00: 0x16321022
[ 0.339018] pci 0000:00:01.0: save config 0x04: 0x00000000
[ 0.339020] pci 0000:00:01.0: save config 0x08: 0x06000000
[ 0.339022] pci 0000:00:01.0: save config 0x0c: 0x00800000
[ 0.339024] pci 0000:00:01.0: save config 0x10: 0x00000000
[ 0.339026] pci 0000:00:01.0: save config 0x14: 0x00000000
[ 0.339027] pci 0000:00:01.0: save config 0x18: 0x00000000
[ 0.339029] pci 0000:00:01.0: save config 0x1c: 0x00000000
[ 0.339031] pci 0000:00:01.0: save config 0x20: 0x00000000
[ 0.339033] pci 0000:00:01.0: save config 0x24: 0x00000000
[ 0.339035] pci 0000:00:01.0: save config 0x28: 0x00000000
[ 0.339037] pci 0000:00:01.0: save config 0x2c: 0x00000000
[ 0.339039] pci 0000:00:01.0: save config 0x30: 0x00000000
[ 0.339040] pci 0000:00:01.0: save config 0x34: 0x00000000
[ 0.339042] pci 0000:00:01.0: save config 0x38: 0x00000000
[ 0.339044] pci 0000:00:01.0: save config 0x3c: 0x00000000
[ 0.339048] pci 0000:00:01.2: save config 0x00: 0x16341022
[ 0.339050] pci 0000:00:01.2: save config 0x04: 0x00100007
[ 0.339052] pci 0000:00:01.2: save config 0x08: 0x06040000
[ 0.339054] pci 0000:00:01.2: save config 0x0c: 0x00810010
[ 0.339056] pci 0000:00:01.2: save config 0x10: 0x00000000
[ 0.339058] pci 0000:00:01.2: save config 0x14: 0x00000000
[ 0.339059] pci 0000:00:01.2: save config 0x18: 0x000f0100
[ 0.339061] pci 0000:00:01.2: save config 0x1c: 0x0000d1a1
[ 0.339063] pci 0000:00:01.2: save config 0x20: 0xfc60fbb0
[ 0.339065] pci 0000:00:01.2: save config 0x24: 0x10210001
[ 0.339067] pci 0000:00:01.2: save config 0x28: 0x0000007d
[ 0.339069] pci 0000:00:01.2: save config 0x2c: 0x0000007e
[ 0.339071] pci 0000:00:01.2: save config 0x30: 0x00000000
[ 0.339073] pci 0000:00:01.2: save config 0x34: 0x00000050
[ 0.339075] pci 0000:00:01.2: save config 0x38: 0x00000000
[ 0.339077] pci 0000:00:01.2: save config 0x3c: 0x001200ff
[ 0.339091] pci 0000:00:01.3: save config 0x00: 0x16331022
[ 0.339093] pci 0000:00:01.3: save config 0x04: 0x00100007
[ 0.339095] pci 0000:00:01.3: save config 0x08: 0x06040000
[ 0.339097] pci 0000:00:01.3: save config 0x0c: 0x00810010
[ 0.339099] pci 0000:00:01.3: save config 0x10: 0x00000000
[ 0.339101] pci 0000:00:01.3: save config 0x14: 0x00000000
[ 0.339103] pci 0000:00:01.3: save config 0x18: 0x00121000
[ 0.339105] pci 0000:00:01.3: save config 0x1c: 0x0000f1f1
[ 0.339107] pci 0000:00:01.3: save config 0x20: 0xfcd0fcb0
[ 0.339108] pci 0000:00:01.3: save config 0x24: 0x0ff10001
[ 0.339110] pci 0000:00:01.3: save config 0x28: 0x0000007a
[ 0.339112] pci 0000:00:01.3: save config 0x2c: 0x0000007c
[ 0.339114] pci 0000:00:01.3: save config 0x30: 0x00000000
[ 0.339116] pci 0000:00:01.3: save config 0x34: 0x00000050
[ 0.339118] pci 0000:00:01.3: save config 0x38: 0x00000000
[ 0.339120] pci 0000:00:01.3: save config 0x3c: 0x001200ff
[ 0.339134] pci 0000:00:02.0: save config 0x00: 0x16321022
[ 0.339136] pci 0000:00:02.0: save config 0x04: 0x00000000
[ 0.339138] pci 0000:00:02.0: save config 0x08: 0x06000000
[ 0.339139] pci 0000:00:02.0: save config 0x0c: 0x00800000
[ 0.339141] pci 0000:00:02.0: save config 0x10: 0x00000000
[ 0.339143] pci 0000:00:02.0: save config 0x14: 0x00000000
[ 0.339145] pci 0000:00:02.0: save config 0x18: 0x00000000
[ 0.339147] pci 0000:00:02.0: save config 0x1c: 0x00000000
[ 0.339149] pci 0000:00:02.0: save config 0x20: 0x00000000
[ 0.339151] pci 0000:00:02.0: save config 0x24: 0x00000000
[ 0.339153] pci 0000:00:02.0: save config 0x28: 0x00000000
[ 0.339154] pci 0000:00:02.0: save config 0x2c: 0x00000000
[ 0.339156] pci 0000:00:02.0: save config 0x30: 0x00000000
[ 0.339158] pci 0000:00:02.0: save config 0x34: 0x00000000
[ 0.339160] pci 0000:00:02.0: save config 0x38: 0x00000000
[ 0.339162] pci 0000:00:02.0: save config 0x3c: 0x00000000
[ 0.339166] pci 0000:00:02.1: save config 0x00: 0x16341022
[ 0.339168] pci 0000:00:02.1: save config 0x04: 0x00100007
[ 0.339170] pci 0000:00:02.1: save config 0x08: 0x06040000
[ 0.339171] pci 0000:00:02.1: save config 0x0c: 0x00810010
[ 0.339173] pci 0000:00:02.1: save config 0x10: 0x00000000
[ 0.339175] pci 0000:00:02.1: save config 0x14: 0x00000000
[ 0.339177] pci 0000:00:02.1: save config 0x18: 0x00131300
[ 0.339179] pci 0000:00:02.1: save config 0x1c: 0x000001f1
[ 0.339181] pci 0000:00:02.1: save config 0x20: 0xfcf0fcf0
[ 0.339183] pci 0000:00:02.1: save config 0x24: 0x0001fff1
[ 0.339185] pci 0000:00:02.1: save config 0x28: 0x00000000
[ 0.339187] pci 0000:00:02.1: save config 0x2c: 0x00000000
[ 0.339189] pci 0000:00:02.1: save config 0x30: 0x000000ff
[ 0.339191] pci 0000:00:02.1: save config 0x34: 0x00000050
[ 0.339192] pci 0000:00:02.1: save config 0x38: 0x00000000
[ 0.339194] pci 0000:00:02.1: save config 0x3c: 0x001200ff
[ 0.339208] pci 0000:00:08.0: save config 0x00: 0x16321022
[ 0.339210] pci 0000:00:08.0: save config 0x04: 0x00000000
[ 0.339212] pci 0000:00:08.0: save config 0x08: 0x06000000
[ 0.339214] pci 0000:00:08.0: save config 0x0c: 0x00800000
[ 0.339216] pci 0000:00:08.0: save config 0x10: 0x00000000
[ 0.339218] pci 0000:00:08.0: save config 0x14: 0x00000000
[ 0.339220] pci 0000:00:08.0: save config 0x18: 0x00000000
[ 0.339221] pci 0000:00:08.0: save config 0x1c: 0x00000000
[ 0.339223] pci 0000:00:08.0: save config 0x20: 0x00000000
[ 0.339225] pci 0000:00:08.0: save config 0x24: 0x00000000
[ 0.339227] pci 0000:00:08.0: save config 0x28: 0x00000000
[ 0.339229] pci 0000:00:08.0: save config 0x2c: 0x00000000
[ 0.339231] pci 0000:00:08.0: save config 0x30: 0x00000000
[ 0.339233] pci 0000:00:08.0: save config 0x34: 0x00000000
[ 0.339234] pci 0000:00:08.0: save config 0x38: 0x00000000
[ 0.339236] pci 0000:00:08.0: save config 0x3c: 0x00000000
[ 0.339240] pci 0000:00:08.1: save config 0x00: 0x16351022
[ 0.339242] pci 0000:00:08.1: save config 0x04: 0x00100007
[ 0.339244] pci 0000:00:08.1: save config 0x08: 0x06040000
[ 0.339246] pci 0000:00:08.1: save config 0x0c: 0x00810010
[ 0.339248] pci 0000:00:08.1: save config 0x10: 0x00000000
[ 0.339249] pci 0000:00:08.1: save config 0x14: 0x00000000
[ 0.339251] pci 0000:00:08.1: save config 0x18: 0x00141400
[ 0.339253] pci 0000:00:08.1: save config 0x1c: 0x0000e1e1
[ 0.339255] pci 0000:00:08.1: save config 0x20: 0xfca0fc70
[ 0.339257] pci 0000:00:08.1: save config 0x24: 0x30112001
[ 0.339259] pci 0000:00:08.1: save config 0x28: 0x0000007e
[ 0.339261] pci 0000:00:08.1: save config 0x2c: 0x0000007e
[ 0.339262] pci 0000:00:08.1: save config 0x30: 0x00000000
[ 0.339264] pci 0000:00:08.1: save config 0x34: 0x00000050
[ 0.339266] pci 0000:00:08.1: save config 0x38: 0x00000000
[ 0.339268] pci 0000:00:08.1: save config 0x3c: 0x001201ff
[ 0.339283] pci 0000:00:08.2: save config 0x00: 0x16351022
[ 0.339285] pci 0000:00:08.2: save config 0x04: 0x00100007
[ 0.339287] pci 0000:00:08.2: save config 0x08: 0x06040000
[ 0.339288] pci 0000:00:08.2: save config 0x0c: 0x00810010
[ 0.339290] pci 0000:00:08.2: save config 0x10: 0x00000000
[ 0.339292] pci 0000:00:08.2: save config 0x14: 0x00000000
[ 0.339294] pci 0000:00:08.2: save config 0x18: 0x00151500
[ 0.339296] pci 0000:00:08.2: save config 0x1c: 0x000001f1
[ 0.339298] pci 0000:00:08.2: save config 0x20: 0xfce0fce0
[ 0.339300] pci 0000:00:08.2: save config 0x24: 0x0001fff1
[ 0.339301] pci 0000:00:08.2: save config 0x28: 0x00000000
[ 0.339303] pci 0000:00:08.2: save config 0x2c: 0x00000000
[ 0.339305] pci 0000:00:08.2: save config 0x30: 0x000000ff
[ 0.339307] pci 0000:00:08.2: save config 0x34: 0x00000050
[ 0.339309] pci 0000:00:08.2: save config 0x38: 0x00000000
[ 0.339311] pci 0000:00:08.2: save config 0x3c: 0x001201ff
[ 0.339326] pci 0000:00:14.0: save config 0x00: 0x790b1022
[ 0.339329] pci 0000:00:14.0: save config 0x04: 0x02200403
[ 0.339331] pci 0000:00:14.0: save config 0x08: 0x0c050051
[ 0.339334] pci 0000:00:14.0: save config 0x0c: 0x00800000
[ 0.339337] pci 0000:00:14.0: save config 0x10: 0x00000000
[ 0.339339] pci 0000:00:14.0: save config 0x14: 0x00000000
[ 0.339342] pci 0000:00:14.0: save config 0x18: 0x00000000
[ 0.339344] pci 0000:00:14.0: save config 0x1c: 0x00000000
[ 0.339347] pci 0000:00:14.0: save config 0x20: 0x00000000
[ 0.339349] pci 0000:00:14.0: save config 0x24: 0x00000000
[ 0.339352] pci 0000:00:14.0: save config 0x28: 0x00000000
[ 0.339355] pci 0000:00:14.0: save config 0x2c: 0xffff1849
[ 0.339357] pci 0000:00:14.0: save config 0x30: 0x00000000
[ 0.339360] pci 0000:00:14.0: save config 0x34: 0x00000000
[ 0.339362] pci 0000:00:14.0: save config 0x38: 0x00000000
[ 0.339365] pci 0000:00:14.0: save config 0x3c: 0x00000000
[ 0.339369] pci 0000:00:14.3: save config 0x00: 0x790e1022
[ 0.339372] pci 0000:00:14.3: save config 0x04: 0x0220000f
[ 0.339374] pci 0000:00:14.3: save config 0x08: 0x06010051
[ 0.339377] pci 0000:00:14.3: save config 0x0c: 0x00800000
[ 0.339379] pci 0000:00:14.3: save config 0x10: 0x00000000
[ 0.339382] pci 0000:00:14.3: save config 0x14: 0x00000000
[ 0.339384] pci 0000:00:14.3: save config 0x18: 0x00000000
[ 0.339387] pci 0000:00:14.3: save config 0x1c: 0x00000000
[ 0.339390] pci 0000:00:14.3: save config 0x20: 0x00000000
[ 0.339392] pci 0000:00:14.3: save config 0x24: 0x00000000
[ 0.339395] pci 0000:00:14.3: save config 0x28: 0x00000000
[ 0.339398] pci 0000:00:14.3: save config 0x2c: 0xffff1849
[ 0.339400] pci 0000:00:14.3: save config 0x30: 0x00000000
[ 0.339403] pci 0000:00:14.3: save config 0x34: 0x00000000
[ 0.339405] pci 0000:00:14.3: save config 0x38: 0x00000000
[ 0.339408] pci 0000:00:14.3: save config 0x3c: 0x00000000
[ 0.339411] pci 0000:00:18.0: save config 0x00: 0x166a1022
[ 0.339413] pci 0000:00:18.0: save config 0x04: 0x00000000
[ 0.339415] pci 0000:00:18.0: save config 0x08: 0x06000000
[ 0.339416] pci 0000:00:18.0: save config 0x0c: 0x00800000
[ 0.339418] pci 0000:00:18.0: save config 0x10: 0x00000000
[ 0.339419] pci 0000:00:18.0: save config 0x14: 0x00000000
[ 0.339421] pci 0000:00:18.0: save config 0x18: 0x00000000
[ 0.339423] pci 0000:00:18.0: save config 0x1c: 0x00000000
[ 0.339424] pci 0000:00:18.0: save config 0x20: 0x00000000
[ 0.339426] pci 0000:00:18.0: save config 0x24: 0x00000000
[ 0.339427] pci 0000:00:18.0: save config 0x28: 0x00000000
[ 0.339429] pci 0000:00:18.0: save config 0x2c: 0x00000000
[ 0.339431] pci 0000:00:18.0: save config 0x30: 0x00000000
[ 0.339432] pci 0000:00:18.0: save config 0x34: 0x00000000
[ 0.339434] pci 0000:00:18.0: save config 0x38: 0x00000000
[ 0.339436] pci 0000:00:18.0: save config 0x3c: 0x00000000
[ 0.339438] pci 0000:00:18.1: save config 0x00: 0x166b1022
[ 0.339440] pci 0000:00:18.1: save config 0x04: 0x00000000
[ 0.339441] pci 0000:00:18.1: save config 0x08: 0x06000000
[ 0.339443] pci 0000:00:18.1: save config 0x0c: 0x00800000
[ 0.339445] pci 0000:00:18.1: save config 0x10: 0x00000000
[ 0.339446] pci 0000:00:18.1: save config 0x14: 0x00000000
[ 0.339448] pci 0000:00:18.1: save config 0x18: 0x00000000
[ 0.339449] pci 0000:00:18.1: save config 0x1c: 0x00000000
[ 0.339451] pci 0000:00:18.1: save config 0x20: 0x00000000
[ 0.339453] pci 0000:00:18.1: save config 0x24: 0x00000000
[ 0.339454] pci 0000:00:18.1: save config 0x28: 0x00000000
[ 0.339456] pci 0000:00:18.1: save config 0x2c: 0x00000000
[ 0.339457] pci 0000:00:18.1: save config 0x30: 0x00000000
[ 0.339459] pci 0000:00:18.1: save config 0x34: 0x00000000
[ 0.339461] pci 0000:00:18.1: save config 0x38: 0x00000000
[ 0.339462] pci 0000:00:18.1: save config 0x3c: 0x00000000
[ 0.339465] pci 0000:00:18.2: save config 0x00: 0x166c1022
[ 0.339466] pci 0000:00:18.2: save config 0x04: 0x00000000
[ 0.339468] pci 0000:00:18.2: save config 0x08: 0x06000000
[ 0.339470] pci 0000:00:18.2: save config 0x0c: 0x00800000
[ 0.339471] pci 0000:00:18.2: save config 0x10: 0x00000000
[ 0.339473] pci 0000:00:18.2: save config 0x14: 0x00000000
[ 0.339475] pci 0000:00:18.2: save config 0x18: 0x00000000
[ 0.339476] pci 0000:00:18.2: save config 0x1c: 0x00000000
[ 0.339478] pci 0000:00:18.2: save config 0x20: 0x00000000
[ 0.339479] pci 0000:00:18.2: save config 0x24: 0x00000000
[ 0.339481] pci 0000:00:18.2: save config 0x28: 0x00000000
[ 0.339483] pci 0000:00:18.2: save config 0x2c: 0x00000000
[ 0.339484] pci 0000:00:18.2: save config 0x30: 0x00000000
[ 0.339486] pci 0000:00:18.2: save config 0x34: 0x00000000
[ 0.339487] pci 0000:00:18.2: save config 0x38: 0x00000000
[ 0.339489] pci 0000:00:18.2: save config 0x3c: 0x00000000
[ 0.339491] pci 0000:00:18.3: save config 0x00: 0x166d1022
[ 0.339493] pci 0000:00:18.3: save config 0x04: 0x00000000
[ 0.339495] pci 0000:00:18.3: save config 0x08: 0x06000000
[ 0.339496] pci 0000:00:18.3: save config 0x0c: 0x00800000
[ 0.339498] pci 0000:00:18.3: save config 0x10: 0x00000000
[ 0.339500] pci 0000:00:18.3: save config 0x14: 0x00000000
[ 0.339501] pci 0000:00:18.3: save config 0x18: 0x00000000
[ 0.339503] pci 0000:00:18.3: save config 0x1c: 0x00000000
[ 0.339505] pci 0000:00:18.3: save config 0x20: 0x00000000
[ 0.339506] pci 0000:00:18.3: save config 0x24: 0x00000000
[ 0.339508] pci 0000:00:18.3: save config 0x28: 0x00000000
[ 0.339509] pci 0000:00:18.3: save config 0x2c: 0x00000000
[ 0.339511] pci 0000:00:18.3: save config 0x30: 0x00000000
[ 0.339513] pci 0000:00:18.3: save config 0x34: 0x00000000
[ 0.339514] pci 0000:00:18.3: save config 0x38: 0x00000000
[ 0.339516] pci 0000:00:18.3: save config 0x3c: 0x00000000
[ 0.339518] pci 0000:00:18.4: save config 0x00: 0x166e1022
[ 0.339520] pci 0000:00:18.4: save config 0x04: 0x00000000
[ 0.339522] pci 0000:00:18.4: save config 0x08: 0x06000000
[ 0.339523] pci 0000:00:18.4: save config 0x0c: 0x00800000
[ 0.339525] pci 0000:00:18.4: save config 0x10: 0x00000000
[ 0.339526] pci 0000:00:18.4: save config 0x14: 0x00000000
[ 0.339528] pci 0000:00:18.4: save config 0x18: 0x00000000
[ 0.339530] pci 0000:00:18.4: save config 0x1c: 0x00000000
[ 0.339531] pci 0000:00:18.4: save config 0x20: 0x00000000
[ 0.339533] pci 0000:00:18.4: save config 0x24: 0x00000000
[ 0.339534] pci 0000:00:18.4: save config 0x28: 0x00000000
[ 0.339536] pci 0000:00:18.4: save config 0x2c: 0x00000000
[ 0.339538] pci 0000:00:18.4: save config 0x30: 0x00000000
[ 0.339539] pci 0000:00:18.4: save config 0x34: 0x00000000
[ 0.339541] pci 0000:00:18.4: save config 0x38: 0x00000000
[ 0.339543] pci 0000:00:18.4: save config 0x3c: 0x00000000
[ 0.339545] pci 0000:00:18.5: save config 0x00: 0x166f1022
[ 0.339547] pci 0000:00:18.5: save config 0x04: 0x00000000
[ 0.339548] pci 0000:00:18.5: save config 0x08: 0x06000000
[ 0.339550] pci 0000:00:18.5: save config 0x0c: 0x00800000
[ 0.339551] pci 0000:00:18.5: save config 0x10: 0x00000000
[ 0.339553] pci 0000:00:18.5: save config 0x14: 0x00000000
[ 0.339555] pci 0000:00:18.5: save config 0x18: 0x00000000
[ 0.339556] pci 0000:00:18.5: save config 0x1c: 0x00000000
[ 0.339558] pci 0000:00:18.5: save config 0x20: 0x00000000
[ 0.339560] pci 0000:00:18.5: save config 0x24: 0x00000000
[ 0.339561] pci 0000:00:18.5: save config 0x28: 0x00000000
[ 0.339563] pci 0000:00:18.5: save config 0x2c: 0x00000000
[ 0.339564] pci 0000:00:18.5: save config 0x30: 0x00000000
[ 0.339566] pci 0000:00:18.5: save config 0x34: 0x00000000
[ 0.339568] pci 0000:00:18.5: save config 0x38: 0x00000000
[ 0.339569] pci 0000:00:18.5: save config 0x3c: 0x00000000
[ 0.339572] pci 0000:00:18.6: save config 0x00: 0x16701022
[ 0.339573] pci 0000:00:18.6: save config 0x04: 0x00000000
[ 0.339575] pci 0000:00:18.6: save config 0x08: 0x06000000
[ 0.339577] pci 0000:00:18.6: save config 0x0c: 0x00800000
[ 0.339578] pci 0000:00:18.6: save config 0x10: 0x00000000
[ 0.339580] pci 0000:00:18.6: save config 0x14: 0x00000000
[ 0.339582] pci 0000:00:18.6: save config 0x18: 0x00000000
[ 0.339583] pci 0000:00:18.6: save config 0x1c: 0x00000000
[ 0.339585] pci 0000:00:18.6: save config 0x20: 0x00000000
[ 0.339586] pci 0000:00:18.6: save config 0x24: 0x00000000
[ 0.339588] pci 0000:00:18.6: save config 0x28: 0x00000000
[ 0.339590] pci 0000:00:18.6: save config 0x2c: 0x00000000
[ 0.339591] pci 0000:00:18.6: save config 0x30: 0x00000000
[ 0.339593] pci 0000:00:18.6: save config 0x34: 0x00000000
[ 0.339594] pci 0000:00:18.6: save config 0x38: 0x00000000
[ 0.339596] pci 0000:00:18.6: save config 0x3c: 0x00000000
[ 0.339598] pci 0000:00:18.7: save config 0x00: 0x16711022
[ 0.339600] pci 0000:00:18.7: save config 0x04: 0x00000000
[ 0.339602] pci 0000:00:18.7: save config 0x08: 0x06000000
[ 0.339603] pci 0000:00:18.7: save config 0x0c: 0x00800000
[ 0.339605] pci 0000:00:18.7: save config 0x10: 0x00000000
[ 0.339607] pci 0000:00:18.7: save config 0x14: 0x00000000
[ 0.339608] pci 0000:00:18.7: save config 0x18: 0x00000000
[ 0.339610] pci 0000:00:18.7: save config 0x1c: 0x00000000
[ 0.339611] pci 0000:00:18.7: save config 0x20: 0x00000000
[ 0.339613] pci 0000:00:18.7: save config 0x24: 0x00000000
[ 0.339615] pci 0000:00:18.7: save config 0x28: 0x00000000
[ 0.339616] pci 0000:00:18.7: save config 0x2c: 0x00000000
[ 0.339618] pci 0000:00:18.7: save config 0x30: 0x00000000
[ 0.339620] pci 0000:00:18.7: save config 0x34: 0x00000000
[ 0.339621] pci 0000:00:18.7: save config 0x38: 0x00000000
[ 0.339623] pci 0000:00:18.7: save config 0x3c: 0x00000000
[ 0.339627] pci 0000:01:00.0: save config 0x00: 0x57ad1022
[ 0.339629] pci 0000:01:00.0: save config 0x04: 0x00100007
[ 0.339632] pci 0000:01:00.0: save config 0x08: 0x06040000
[ 0.339635] pci 0000:01:00.0: save config 0x0c: 0x00010010
[ 0.339638] pci 0000:01:00.0: save config 0x10: 0x00000000
[ 0.339641] pci 0000:01:00.0: save config 0x14: 0x00000000
[ 0.339644] pci 0000:01:00.0: save config 0x18: 0x000f0201
[ 0.339647] pci 0000:01:00.0: save config 0x1c: 0x0000d1a1
[ 0.339650] pci 0000:01:00.0: save config 0x20: 0xfc60fbb0
[ 0.339653] pci 0000:01:00.0: save config 0x24: 0x10210001
[ 0.339656] pci 0000:01:00.0: save config 0x28: 0x0000007d
[ 0.339658] pci 0000:01:00.0: save config 0x2c: 0x0000007e
[ 0.339661] pci 0000:01:00.0: save config 0x30: 0x00000000
[ 0.339664] pci 0000:01:00.0: save config 0x34: 0x00000050
[ 0.339667] pci 0000:01:00.0: save config 0x38: 0x00000000
[ 0.339670] pci 0000:01:00.0: save config 0x3c: 0x001201ff
[ 0.339728] pci 0000:02:00.0: save config 0x00: 0x57a31022
[ 0.339731] pci 0000:02:00.0: save config 0x04: 0x00100007
[ 0.339734] pci 0000:02:00.0: save config 0x08: 0x06040000
[ 0.339737] pci 0000:02:00.0: save config 0x0c: 0x00810010
[ 0.339739] pci 0000:02:00.0: save config 0x10: 0x00000000
[ 0.339742] pci 0000:02:00.0: save config 0x14: 0x00000000
[ 0.339745] pci 0000:02:00.0: save config 0x18: 0x00030302
[ 0.339748] pci 0000:02:00.0: save config 0x1c: 0x000001f1
[ 0.339751] pci 0000:02:00.0: save config 0x20: 0xfc60fc60
[ 0.339753] pci 0000:02:00.0: save config 0x24: 0x0001fff1
[ 0.339756] pci 0000:02:00.0: save config 0x28: 0x00000000
[ 0.339759] pci 0000:02:00.0: save config 0x2c: 0x00000000
[ 0.339762] pci 0000:02:00.0: save config 0x30: 0x000000ff
[ 0.339765] pci 0000:02:00.0: save config 0x34: 0x00000050
[ 0.339767] pci 0000:02:00.0: save config 0x38: 0x00000000
[ 0.339770] pci 0000:02:00.0: save config 0x3c: 0x001200ff
[ 0.339913] pci 0000:02:01.0: save config 0x00: 0x57a31022
[ 0.339916] pci 0000:02:01.0: save config 0x04: 0x00100007
[ 0.339919] pci 0000:02:01.0: save config 0x08: 0x06040000
[ 0.339922] pci 0000:02:01.0: save config 0x0c: 0x00810010
[ 0.339925] pci 0000:02:01.0: save config 0x10: 0x00000000
[ 0.339927] pci 0000:02:01.0: save config 0x14: 0x00000000
[ 0.339930] pci 0000:02:01.0: save config 0x18: 0x00060402
[ 0.339933] pci 0000:02:01.0: save config 0x1c: 0x0000d1d1
[ 0.339936] pci 0000:02:01.0: save config 0x20: 0xfbd0fbb0
[ 0.339939] pci 0000:02:01.0: save config 0x24: 0x0ff10001
[ 0.339941] pci 0000:02:01.0: save config 0x28: 0x0000007d
[ 0.339944] pci 0000:02:01.0: save config 0x2c: 0x0000007e
[ 0.339947] pci 0000:02:01.0: save config 0x30: 0x00000000
[ 0.339950] pci 0000:02:01.0: save config 0x34: 0x00000050
[ 0.339953] pci 0000:02:01.0: save config 0x38: 0x00000000
[ 0.339955] pci 0000:02:01.0: save config 0x3c: 0x001200ff
[ 0.340098] pci 0000:02:03.0: save config 0x00: 0x57a31022
[ 0.340101] pci 0000:02:03.0: save config 0x04: 0x00100007
[ 0.340104] pci 0000:02:03.0: save config 0x08: 0x06040000
[ 0.340107] pci 0000:02:03.0: save config 0x0c: 0x00810010
[ 0.340110] pci 0000:02:03.0: save config 0x10: 0x00000000
[ 0.340112] pci 0000:02:03.0: save config 0x14: 0x00000000
[ 0.340115] pci 0000:02:03.0: save config 0x18: 0x00070702
[ 0.340118] pci 0000:02:03.0: save config 0x1c: 0x000001f1
[ 0.340121] pci 0000:02:03.0: save config 0x20: 0xfc50fc50
[ 0.340124] pci 0000:02:03.0: save config 0x24: 0x0001fff1
[ 0.340126] pci 0000:02:03.0: save config 0x28: 0x00000000
[ 0.340129] pci 0000:02:03.0: save config 0x2c: 0x00000000
[ 0.340132] pci 0000:02:03.0: save config 0x30: 0x000000ff
[ 0.340135] pci 0000:02:03.0: save config 0x34: 0x00000050
[ 0.340138] pci 0000:02:03.0: save config 0x38: 0x00000000
[ 0.340140] pci 0000:02:03.0: save config 0x3c: 0x001200ff
[ 0.340283] pci 0000:02:05.0: save config 0x00: 0x57a31022
[ 0.340286] pci 0000:02:05.0: save config 0x04: 0x00100007
[ 0.340289] pci 0000:02:05.0: save config 0x08: 0x06040000
[ 0.340292] pci 0000:02:05.0: save config 0x0c: 0x00810010
[ 0.340295] pci 0000:02:05.0: save config 0x10: 0x00000000
[ 0.340297] pci 0000:02:05.0: save config 0x14: 0x00000000
[ 0.340300] pci 0000:02:05.0: save config 0x18: 0x000b0802
[ 0.340303] pci 0000:02:05.0: save config 0x1c: 0x0000b1a1
[ 0.340306] pci 0000:02:05.0: save config 0x20: 0xfc10fc00
[ 0.340308] pci 0000:02:05.0: save config 0x24: 0x10211011
[ 0.340311] pci 0000:02:05.0: save config 0x28: 0x0000007e
[ 0.340314] pci 0000:02:05.0: save config 0x2c: 0x0000007e
[ 0.340317] pci 0000:02:05.0: save config 0x30: 0x00000000
[ 0.340320] pci 0000:02:05.0: save config 0x34: 0x00000050
[ 0.340322] pci 0000:02:05.0: save config 0x38: 0x00000000
[ 0.340325] pci 0000:02:05.0: save config 0x3c: 0x001200ff
[ 0.340469] pci 0000:02:07.0: save config 0x00: 0x57a31022
[ 0.340471] pci 0000:02:07.0: save config 0x04: 0x00100007
[ 0.340474] pci 0000:02:07.0: save config 0x08: 0x06040000
[ 0.340477] pci 0000:02:07.0: save config 0x0c: 0x00810010
[ 0.340480] pci 0000:02:07.0: save config 0x10: 0x00000000
[ 0.340483] pci 0000:02:07.0: save config 0x14: 0x00000000
[ 0.340485] pci 0000:02:07.0: save config 0x18: 0x000c0c02
[ 0.340488] pci 0000:02:07.0: save config 0x1c: 0x0000c1c1
[ 0.340491] pci 0000:02:07.0: save config 0x20: 0xfc40fc40
[ 0.340494] pci 0000:02:07.0: save config 0x24: 0x0001fff1
[ 0.340497] pci 0000:02:07.0: save config 0x28: 0x00000000
[ 0.340499] pci 0000:02:07.0: save config 0x2c: 0x00000000
[ 0.340502] pci 0000:02:07.0: save config 0x30: 0x00000000
[ 0.340505] pci 0000:02:07.0: save config 0x34: 0x00000050
[ 0.340508] pci 0000:02:07.0: save config 0x38: 0x00000000
[ 0.340511] pci 0000:02:07.0: save config 0x3c: 0x001200ff
[ 0.340653] pci 0000:02:08.0: save config 0x00: 0x57a41022
[ 0.340656] pci 0000:02:08.0: save config 0x04: 0x00100007
[ 0.340659] pci 0000:02:08.0: save config 0x08: 0x06040000
[ 0.340662] pci 0000:02:08.0: save config 0x0c: 0x00010010
[ 0.340665] pci 0000:02:08.0: save config 0x10: 0x00000000
[ 0.340667] pci 0000:02:08.0: save config 0x14: 0x00000000
[ 0.340670] pci 0000:02:08.0: save config 0x18: 0x000d0d02
[ 0.340673] pci 0000:02:08.0: save config 0x1c: 0x000001f1
[ 0.340676] pci 0000:02:08.0: save config 0x20: 0xfbf0fbe0
[ 0.340679] pci 0000:02:08.0: save config 0x24: 0x0001fff1
[ 0.340681] pci 0000:02:08.0: save config 0x28: 0x00000000
[ 0.340684] pci 0000:02:08.0: save config 0x2c: 0x00000000
[ 0.340687] pci 0000:02:08.0: save config 0x30: 0x000000ff
[ 0.340690] pci 0000:02:08.0: save config 0x34: 0x00000050
[ 0.340692] pci 0000:02:08.0: save config 0x38: 0x00000000
[ 0.340695] pci 0000:02:08.0: save config 0x3c: 0x001201ff
[ 0.340767] pci 0000:02:09.0: save config 0x00: 0x57a41022
[ 0.340770] pci 0000:02:09.0: save config 0x04: 0x00100007
[ 0.340773] pci 0000:02:09.0: save config 0x08: 0x06040000
[ 0.340776] pci 0000:02:09.0: save config 0x0c: 0x00010010
[ 0.340779] pci 0000:02:09.0: save config 0x10: 0x00000000
[ 0.340781] pci 0000:02:09.0: save config 0x14: 0x00000000
[ 0.340784] pci 0000:02:09.0: save config 0x18: 0x000e0e02
[ 0.340787] pci 0000:02:09.0: save config 0x1c: 0x000001f1
[ 0.340790] pci 0000:02:09.0: save config 0x20: 0xfc30fc30
[ 0.340793] pci 0000:02:09.0: save config 0x24: 0x0001fff1
[ 0.340795] pci 0000:02:09.0: save config 0x28: 0x00000000
[ 0.340798] pci 0000:02:09.0: save config 0x2c: 0x00000000
[ 0.340801] pci 0000:02:09.0: save config 0x30: 0x000000ff
[ 0.340804] pci 0000:02:09.0: save config 0x34: 0x00000050
[ 0.340806] pci 0000:02:09.0: save config 0x38: 0x00000000
[ 0.340809] pci 0000:02:09.0: save config 0x3c: 0x001201ff
[ 0.340881] pci 0000:02:0a.0: save config 0x00: 0x57a41022
[ 0.340884] pci 0000:02:0a.0: save config 0x04: 0x00100007
[ 0.340887] pci 0000:02:0a.0: save config 0x08: 0x06040000
[ 0.340890] pci 0000:02:0a.0: save config 0x0c: 0x00010010
[ 0.340892] pci 0000:02:0a.0: save config 0x10: 0x00000000
[ 0.340895] pci 0000:02:0a.0: save config 0x14: 0x00000000
[ 0.340898] pci 0000:02:0a.0: save config 0x18: 0x000f0f02
[ 0.340901] pci 0000:02:0a.0: save config 0x1c: 0x000001f1
[ 0.340904] pci 0000:02:0a.0: save config 0x20: 0xfc20fc20
[ 0.340906] pci 0000:02:0a.0: save config 0x24: 0x0001fff1
[ 0.340909] pci 0000:02:0a.0: save config 0x28: 0x00000000
[ 0.340912] pci 0000:02:0a.0: save config 0x2c: 0x00000000
[ 0.340915] pci 0000:02:0a.0: save config 0x30: 0x000000ff
[ 0.340917] pci 0000:02:0a.0: save config 0x34: 0x00000050
[ 0.340920] pci 0000:02:0a.0: save config 0x38: 0x00000000
[ 0.340923] pci 0000:02:0a.0: save config 0x3c: 0x001201ff
[ 0.341133] pci 0000:03:00.0: save config 0x00: 0x16021d97
[ 0.341136] pci 0000:03:00.0: save config 0x04: 0x00100006
[ 0.341139] pci 0000:03:00.0: save config 0x08: 0x01080201
[ 0.341142] pci 0000:03:00.0: save config 0x0c: 0x00000010
[ 0.341145] pci 0000:03:00.0: save config 0x10: 0xfc600004
[ 0.341148] pci 0000:03:00.0: save config 0x14: 0x00000000
[ 0.341151] pci 0000:03:00.0: save config 0x18: 0x00000000
[ 0.341154] pci 0000:03:00.0: save config 0x1c: 0x00000000
[ 0.341157] pci 0000:03:00.0: save config 0x20: 0x00000000
[ 0.341160] pci 0000:03:00.0: save config 0x24: 0x00000000
[ 0.341163] pci 0000:03:00.0: save config 0x28: 0x00000000
[ 0.341166] pci 0000:03:00.0: save config 0x2c: 0x16021d97
[ 0.341169] pci 0000:03:00.0: save config 0x30: 0x00000000
[ 0.341172] pci 0000:03:00.0: save config 0x34: 0x00000040
[ 0.341174] pci 0000:03:00.0: save config 0x38: 0x00000000
[ 0.341177] pci 0000:03:00.0: save config 0x3c: 0x000001ff
[ 0.341272] pci 0000:04:00.0: save config 0x00: 0x14781002
[ 0.341275] pci 0000:04:00.0: save config 0x04: 0x00100007
[ 0.341278] pci 0000:04:00.0: save config 0x08: 0x060400c7
[ 0.341281] pci 0000:04:00.0: save config 0x0c: 0x00010010
[ 0.341284] pci 0000:04:00.0: save config 0x10: 0xfbd00000
[ 0.341288] pci 0000:04:00.0: save config 0x14: 0x00000000
[ 0.341291] pci 0000:04:00.0: save config 0x18: 0x00060504
[ 0.341294] pci 0000:04:00.0: save config 0x1c: 0x0000d1d1
[ 0.341297] pci 0000:04:00.0: save config 0x20: 0xfbc0fbb0
[ 0.341300] pci 0000:04:00.0: save config 0x24: 0x0ff10001
[ 0.341303] pci 0000:04:00.0: save config 0x28: 0x0000007d
[ 0.341307] pci 0000:04:00.0: save config 0x2c: 0x0000007e
[ 0.341310] pci 0000:04:00.0: save config 0x30: 0x00000000
[ 0.341313] pci 0000:04:00.0: save config 0x34: 0x00000048
[ 0.341316] pci 0000:04:00.0: save config 0x38: 0x00000000
[ 0.341319] pci 0000:04:00.0: save config 0x3c: 0x001201ff
[ 0.341389] pci 0000:05:00.0: save config 0x00: 0x14791002
[ 0.341393] pci 0000:05:00.0: save config 0x04: 0x00100007
[ 0.341396] pci 0000:05:00.0: save config 0x08: 0x06040000
[ 0.341399] pci 0000:05:00.0: save config 0x0c: 0x00010010
[ 0.341402] pci 0000:05:00.0: save config 0x10: 0x00000000
[ 0.341405] pci 0000:05:00.0: save config 0x14: 0x00000000
[ 0.341408] pci 0000:05:00.0: save config 0x18: 0x00060605
[ 0.341412] pci 0000:05:00.0: save config 0x1c: 0x0000d1d1
[ 0.341415] pci 0000:05:00.0: save config 0x20: 0xfbc0fbb0
[ 0.341418] pci 0000:05:00.0: save config 0x24: 0x0ff10001
[ 0.341421] pci 0000:05:00.0: save config 0x28: 0x0000007d
[ 0.341424] pci 0000:05:00.0: save config 0x2c: 0x0000007e
[ 0.341427] pci 0000:05:00.0: save config 0x30: 0x00000000
[ 0.341431] pci 0000:05:00.0: save config 0x34: 0x00000050
[ 0.341434] pci 0000:05:00.0: save config 0x38: 0x00000000
[ 0.341437] pci 0000:05:00.0: save config 0x3c: 0x001201ff
[ 0.341509] pci 0000:06:00.0: save config 0x00: 0x743f1002
[ 0.341512] pci 0000:06:00.0: save config 0x04: 0x00100006
[ 0.341515] pci 0000:06:00.0: save config 0x08: 0x030000c7
[ 0.341518] pci 0000:06:00.0: save config 0x0c: 0x00800010
[ 0.341521] pci 0000:06:00.0: save config 0x10: 0x0000000c
[ 0.341525] pci 0000:06:00.0: save config 0x14: 0x0000007d
[ 0.341528] pci 0000:06:00.0: save config 0x18: 0x0000000c
[ 0.341531] pci 0000:06:00.0: save config 0x1c: 0x0000007e
[ 0.341534] pci 0000:06:00.0: save config 0x20: 0x0000d001
[ 0.341537] pci 0000:06:00.0: save config 0x24: 0xfbb00000
[ 0.341540] pci 0000:06:00.0: save config 0x28: 0x00000000
[ 0.341544] pci 0000:06:00.0: save config 0x2c: 0xe4581da2
[ 0.341547] pci 0000:06:00.0: save config 0x30: 0xfbc00000
[ 0.341550] pci 0000:06:00.0: save config 0x34: 0x00000048
[ 0.341554] pci 0000:06:00.0: save config 0x38: 0x00000000
[ 0.341557] pci 0000:06:00.0: save config 0x3c: 0x000001ff
[ 0.341647] pci 0000:06:00.1: save config 0x00: 0xab281002
[ 0.341650] pci 0000:06:00.1: save config 0x04: 0x00100000
[ 0.341653] pci 0000:06:00.1: save config 0x08: 0x04030000
[ 0.341656] pci 0000:06:00.1: save config 0x0c: 0x00800010
[ 0.341659] pci 0000:06:00.1: save config 0x10: 0xfbc20000
[ 0.341663] pci 0000:06:00.1: save config 0x14: 0x00000000
[ 0.341666] pci 0000:06:00.1: save config 0x18: 0x00000000
[ 0.341669] pci 0000:06:00.1: save config 0x1c: 0x00000000
[ 0.341672] pci 0000:06:00.1: save config 0x20: 0x00000000
[ 0.341675] pci 0000:06:00.1: save config 0x24: 0x00000000
[ 0.341678] pci 0000:06:00.1: save config 0x28: 0x00000000
[ 0.341682] pci 0000:06:00.1: save config 0x2c: 0xab281002
[ 0.341685] pci 0000:06:00.1: save config 0x30: 0x00000000
[ 0.341688] pci 0000:06:00.1: save config 0x34: 0x00000048
[ 0.341691] pci 0000:06:00.1: save config 0x38: 0x00000000
[ 0.341694] pci 0000:06:00.1: save config 0x3c: 0x000002ff
[ 0.341741] pci 0000:07:00.0: save config 0x00: 0x0003dd01
[ 0.341745] pci 0000:07:00.0: save config 0x04: 0x00100000
[ 0.341749] pci 0000:07:00.0: save config 0x08: 0x04800000
[ 0.341752] pci 0000:07:00.0: save config 0x0c: 0x00000010
[ 0.341756] pci 0000:07:00.0: save config 0x10: 0xfc500004
[ 0.341760] pci 0000:07:00.0: save config 0x14: 0xffffffff
[ 0.341763] pci 0000:07:00.0: save config 0x18: 0x00000000
[ 0.341767] pci 0000:07:00.0: save config 0x1c: 0x00000000
[ 0.341771] pci 0000:07:00.0: save config 0x20: 0x00000000
[ 0.341774] pci 0000:07:00.0: save config 0x24: 0x00000000
[ 0.341778] pci 0000:07:00.0: save config 0x28: 0x00000000
[ 0.341782] pci 0000:07:00.0: save config 0x2c: 0x0020dd01
[ 0.341785] pci 0000:07:00.0: save config 0x30: 0x00000000
[ 0.341789] pci 0000:07:00.0: save config 0x34: 0x00000050
[ 0.341793] pci 0000:07:00.0: save config 0x38: 0x00000000
[ 0.341796] pci 0000:07:00.0: save config 0x3c: 0x000001ff
[ 0.341828] pci 0000:08:00.0: save config 0x00: 0x11821b21
[ 0.341832] pci 0000:08:00.0: save config 0x04: 0x00100007
[ 0.341835] pci 0000:08:00.0: save config 0x08: 0x06040000
[ 0.341838] pci 0000:08:00.0: save config 0x0c: 0x00010010
[ 0.341841] pci 0000:08:00.0: save config 0x10: 0x00000000
[ 0.341844] pci 0000:08:00.0: save config 0x14: 0x00000000
[ 0.341847] pci 0000:08:00.0: save config 0x18: 0x000b0908
[ 0.341851] pci 0000:08:00.0: save config 0x1c: 0x0000b1a1
[ 0.341854] pci 0000:08:00.0: save config 0x20: 0xfc10fc00
[ 0.341857] pci 0000:08:00.0: save config 0x24: 0x10211011
[ 0.341860] pci 0000:08:00.0: save config 0x28: 0x0000007e
[ 0.341863] pci 0000:08:00.0: save config 0x2c: 0x0000007e
[ 0.341866] pci 0000:08:00.0: save config 0x30: 0x00000000
[ 0.341870] pci 0000:08:00.0: save config 0x34: 0x00000050
[ 0.341873] pci 0000:08:00.0: save config 0x38: 0x00000000
[ 0.341876] pci 0000:08:00.0: save config 0x3c: 0x001201ff
[ 0.341929] pci 0000:09:03.0: save config 0x00: 0x11821b21
[ 0.341932] pci 0000:09:03.0: save config 0x04: 0x00100007
[ 0.341935] pci 0000:09:03.0: save config 0x08: 0x06040000
[ 0.341939] pci 0000:09:03.0: save config 0x0c: 0x00010010
[ 0.341942] pci 0000:09:03.0: save config 0x10: 0x00000000
[ 0.341945] pci 0000:09:03.0: save config 0x14: 0x00000000
[ 0.341948] pci 0000:09:03.0: save config 0x18: 0x000a0a09
[ 0.341951] pci 0000:09:03.0: save config 0x1c: 0x0000b1b1
[ 0.341955] pci 0000:09:03.0: save config 0x20: 0xfc10fc10
[ 0.341958] pci 0000:09:03.0: save config 0x24: 0x10211021
[ 0.341961] pci 0000:09:03.0: save config 0x28: 0x0000007e
[ 0.341964] pci 0000:09:03.0: save config 0x2c: 0x0000007e
[ 0.341967] pci 0000:09:03.0: save config 0x30: 0x00000000
[ 0.341970] pci 0000:09:03.0: save config 0x34: 0x00000050
[ 0.341974] pci 0000:09:03.0: save config 0x38: 0x00000000
[ 0.341977] pci 0000:09:03.0: save config 0x3c: 0x001201ff
[ 0.342028] pci 0000:09:07.0: save config 0x00: 0x11821b21
[ 0.342031] pci 0000:09:07.0: save config 0x04: 0x00100007
[ 0.342034] pci 0000:09:07.0: save config 0x08: 0x06040000
[ 0.342037] pci 0000:09:07.0: save config 0x0c: 0x00010010
[ 0.342041] pci 0000:09:07.0: save config 0x10: 0x00000000
[ 0.342044] pci 0000:09:07.0: save config 0x14: 0x00000000
[ 0.342047] pci 0000:09:07.0: save config 0x18: 0x000b0b09
[ 0.342050] pci 0000:09:07.0: save config 0x1c: 0x0000a1a1
[ 0.342053] pci 0000:09:07.0: save config 0x20: 0xfc00fc00
[ 0.342057] pci 0000:09:07.0: save config 0x24: 0x10111011
[ 0.342060] pci 0000:09:07.0: save config 0x28: 0x0000007e
[ 0.342063] pci 0000:09:07.0: save config 0x2c: 0x0000007e
[ 0.342066] pci 0000:09:07.0: save config 0x30: 0x00000000
[ 0.342069] pci 0000:09:07.0: save config 0x34: 0x00000050
[ 0.342073] pci 0000:09:07.0: save config 0x38: 0x00000000
[ 0.342076] pci 0000:09:07.0: save config 0x3c: 0x001201ff
[ 0.342128] pci 0000:0a:00.0: save config 0x00: 0x816810ec
[ 0.342132] pci 0000:0a:00.0: save config 0x04: 0x00100000
[ 0.342136] pci 0000:0a:00.0: save config 0x08: 0x02000006
[ 0.342140] pci 0000:0a:00.0: save config 0x0c: 0x00000010
[ 0.342144] pci 0000:0a:00.0: save config 0x10: 0x0000b001
[ 0.342148] pci 0000:0a:00.0: save config 0x14: 0x00000000
[ 0.342152] pci 0000:0a:00.0: save config 0x18: 0xfc100004
[ 0.342156] pci 0000:0a:00.0: save config 0x1c: 0x00000000
[ 0.342160] pci 0000:0a:00.0: save config 0x20: 0x1020000c
[ 0.342164] pci 0000:0a:00.0: save config 0x24: 0x0000007e
[ 0.342168] pci 0000:0a:00.0: save config 0x28: 0x00000000
[ 0.342172] pci 0000:0a:00.0: save config 0x2c: 0x012310ec
[ 0.342176] pci 0000:0a:00.0: save config 0x30: 0x00000000
[ 0.342180] pci 0000:0a:00.0: save config 0x34: 0x00000040
[ 0.342184] pci 0000:0a:00.0: save config 0x38: 0x00000000
[ 0.342188] pci 0000:0a:00.0: save config 0x3c: 0x000001ff
[ 0.342273] pci 0000:0b:00.0: save config 0x00: 0x816810ec
[ 0.342277] pci 0000:0b:00.0: save config 0x04: 0x00100000
[ 0.342281] pci 0000:0b:00.0: save config 0x08: 0x02000009
[ 0.342285] pci 0000:0b:00.0: save config 0x0c: 0x00000010
[ 0.342289] pci 0000:0b:00.0: save config 0x10: 0x0000a001
[ 0.342293] pci 0000:0b:00.0: save config 0x14: 0x00000000
[ 0.342297] pci 0000:0b:00.0: save config 0x18: 0xfc000004
[ 0.342301] pci 0000:0b:00.0: save config 0x1c: 0x00000000
[ 0.342305] pci 0000:0b:00.0: save config 0x20: 0x1010000c
[ 0.342309] pci 0000:0b:00.0: save config 0x24: 0x0000007e
[ 0.342313] pci 0000:0b:00.0: save config 0x28: 0x00000000
[ 0.342317] pci 0000:0b:00.0: save config 0x2c: 0x012310ec
[ 0.342321] pci 0000:0b:00.0: save config 0x30: 0x00000000
[ 0.342325] pci 0000:0b:00.0: save config 0x34: 0x00000040
[ 0.342329] pci 0000:0b:00.0: save config 0x38: 0x00000000
[ 0.342333] pci 0000:0b:00.0: save config 0x3c: 0x000001ff
[ 0.342416] pci 0000:0c:00.0: save config 0x00: 0x300010ec
[ 0.342419] pci 0000:0c:00.0: save config 0x04: 0x00100000
[ 0.342423] pci 0000:0c:00.0: save config 0x08: 0x02000006
[ 0.342426] pci 0000:0c:00.0: save config 0x0c: 0x00000010
[ 0.342429] pci 0000:0c:00.0: save config 0x10: 0x0000c001
[ 0.342433] pci 0000:0c:00.0: save config 0x14: 0x00000000
[ 0.342436] pci 0000:0c:00.0: save config 0x18: 0xfc400004
[ 0.342439] pci 0000:0c:00.0: save config 0x1c: 0x00000000
[ 0.342443] pci 0000:0c:00.0: save config 0x20: 0xfc410004
[ 0.342446] pci 0000:0c:00.0: save config 0x24: 0x00000000
[ 0.342449] pci 0000:0c:00.0: save config 0x28: 0x00000000
[ 0.342453] pci 0000:0c:00.0: save config 0x2c: 0x30001849
[ 0.342456] pci 0000:0c:00.0: save config 0x30: 0x00000000
[ 0.342459] pci 0000:0c:00.0: save config 0x34: 0x00000040
[ 0.342463] pci 0000:0c:00.0: save config 0x38: 0x00000000
[ 0.342466] pci 0000:0c:00.0: save config 0x3c: 0x000001ff
[ 0.342554] pci 0000:0d:00.0: save config 0x00: 0x14851022
[ 0.342557] pci 0000:0d:00.0: save config 0x04: 0x00100000
[ 0.342560] pci 0000:0d:00.0: save config 0x08: 0x13000000
[ 0.342563] pci 0000:0d:00.0: save config 0x0c: 0x00800010
[ 0.342566] pci 0000:0d:00.0: save config 0x10: 0x00000000
[ 0.342569] pci 0000:0d:00.0: save config 0x14: 0x00000000
[ 0.342572] pci 0000:0d:00.0: save config 0x18: 0x00000000
[ 0.342575] pci 0000:0d:00.0: save config 0x1c: 0x00000000
[ 0.342577] pci 0000:0d:00.0: save config 0x20: 0x00000000
[ 0.342580] pci 0000:0d:00.0: save config 0x24: 0x00000000
[ 0.342583] pci 0000:0d:00.0: save config 0x28: 0x00000000
[ 0.342586] pci 0000:0d:00.0: save config 0x2c: 0x14851022
[ 0.342589] pci 0000:0d:00.0: save config 0x30: 0x00000000
[ 0.342592] pci 0000:0d:00.0: save config 0x34: 0x00000048
[ 0.342595] pci 0000:0d:00.0: save config 0x38: 0x00000000
[ 0.342598] pci 0000:0d:00.0: save config 0x3c: 0x000000ff
[ 0.342652] pci 0000:0d:00.1: save config 0x00: 0x149c1022
[ 0.342664] pci 0000:0d:00.1: save config 0x04: 0x00100007
[ 0.342675] pci 0000:0d:00.1: save config 0x08: 0x0c033000
[ 0.342687] pci 0000:0d:00.1: save config 0x0c: 0x00800010
[ 0.342698] pci 0000:0d:00.1: save config 0x10: 0xfbf00004
[ 0.342710] pci 0000:0d:00.1: save config 0x14: 0x00000000
[ 0.342721] pci 0000:0d:00.1: save config 0x18: 0x00000000
[ 0.342733] pci 0000:0d:00.1: save config 0x1c: 0x00000000
[ 0.342745] pci 0000:0d:00.1: save config 0x20: 0x00000000
[ 0.342756] pci 0000:0d:00.1: save config 0x24: 0x00000000
[ 0.342768] pci 0000:0d:00.1: save config 0x28: 0x00000000
[ 0.342780] pci 0000:0d:00.1: save config 0x2c: 0x14861022
[ 0.342792] pci 0000:0d:00.1: save config 0x30: 0x00000000
[ 0.342803] pci 0000:0d:00.1: save config 0x34: 0x00000048
[ 0.342815] pci 0000:0d:00.1: save config 0x38: 0x00000000
[ 0.342827] pci 0000:0d:00.1: save config 0x3c: 0x000001ff
[ 0.342980] pci 0000:0d:00.3: save config 0x00: 0x149c1022
[ 0.342983] pci 0000:0d:00.3: save config 0x04: 0x00100007
[ 0.342986] pci 0000:0d:00.3: save config 0x08: 0x0c033000
[ 0.342988] pci 0000:0d:00.3: save config 0x0c: 0x00800010
[ 0.342991] pci 0000:0d:00.3: save config 0x10: 0xfbe00004
[ 0.342997] pci 0000:0d:00.3: save config 0x14: 0x00000000
[ 0.343000] pci 0000:0d:00.3: save config 0x18: 0x00000000
[ 0.343003] pci 0000:0d:00.3: save config 0x1c: 0x00000000
[ 0.343006] pci 0000:0d:00.3: save config 0x20: 0x00000000
[ 0.343009] pci 0000:0d:00.3: save config 0x24: 0x00000000
[ 0.343012] pci 0000:0d:00.3: save config 0x28: 0x00000000
[ 0.343015] pci 0000:0d:00.3: save config 0x2c: 0x148c1022
[ 0.343017] pci 0000:0d:00.3: save config 0x30: 0x00000000
[ 0.343020] pci 0000:0d:00.3: save config 0x34: 0x00000048
[ 0.343023] pci 0000:0d:00.3: save config 0x38: 0x00000000
[ 0.343026] pci 0000:0d:00.3: save config 0x3c: 0x000003ff
[ 0.343051] pci 0000:0e:00.0: save config 0x00: 0x79011022
[ 0.343054] pci 0000:0e:00.0: save config 0x04: 0x00100007
[ 0.343057] pci 0000:0e:00.0: save config 0x08: 0x01060151
[ 0.343060] pci 0000:0e:00.0: save config 0x0c: 0x00000010
[ 0.343063] pci 0000:0e:00.0: save config 0x10: 0x00000000
[ 0.343066] pci 0000:0e:00.0: save config 0x14: 0x00000000
[ 0.343069] pci 0000:0e:00.0: save config 0x18: 0x00000000
[ 0.343072] pci 0000:0e:00.0: save config 0x1c: 0x00000000
[ 0.343075] pci 0000:0e:00.0: save config 0x20: 0x00000000
[ 0.343078] pci 0000:0e:00.0: save config 0x24: 0xfc300000
[ 0.343081] pci 0000:0e:00.0: save config 0x28: 0x00000000
[ 0.343084] pci 0000:0e:00.0: save config 0x2c: 0x79011022
[ 0.343086] pci 0000:0e:00.0: save config 0x30: 0x00000000
[ 0.343089] pci 0000:0e:00.0: save config 0x34: 0x00000048
[ 0.343092] pci 0000:0e:00.0: save config 0x38: 0x00000000
[ 0.343095] pci 0000:0e:00.0: save config 0x3c: 0x000001ff
[ 0.343142] pci 0000:0f:00.0: save config 0x00: 0x79011022
[ 0.343145] pci 0000:0f:00.0: save config 0x04: 0x00100007
[ 0.343148] pci 0000:0f:00.0: save config 0x08: 0x01060151
[ 0.343151] pci 0000:0f:00.0: save config 0x0c: 0x00000010
[ 0.343154] pci 0000:0f:00.0: save config 0x10: 0x00000000
[ 0.343157] pci 0000:0f:00.0: save config 0x14: 0x00000000
[ 0.343159] pci 0000:0f:00.0: save config 0x18: 0x00000000
[ 0.343162] pci 0000:0f:00.0: save config 0x1c: 0x00000000
[ 0.343165] pci 0000:0f:00.0: save config 0x20: 0x00000000
[ 0.343168] pci 0000:0f:00.0: save config 0x24: 0xfc200000
[ 0.343171] pci 0000:0f:00.0: save config 0x28: 0x00000000
[ 0.343174] pci 0000:0f:00.0: save config 0x2c: 0x79011022
[ 0.343177] pci 0000:0f:00.0: save config 0x30: 0x00000000
[ 0.343180] pci 0000:0f:00.0: save config 0x34: 0x00000048
[ 0.343183] pci 0000:0f:00.0: save config 0x38: 0x00000000
[ 0.343186] pci 0000:0f:00.0: save config 0x3c: 0x000001ff
[ 0.343236] pci 0000:10:00.0: save config 0x00: 0x14781002
[ 0.343238] pci 0000:10:00.0: save config 0x04: 0x00100007
[ 0.343240] pci 0000:10:00.0: save config 0x08: 0x060400c7
[ 0.343243] pci 0000:10:00.0: save config 0x0c: 0x00010010
[ 0.343245] pci 0000:10:00.0: save config 0x10: 0xfcd00000
[ 0.343247] pci 0000:10:00.0: save config 0x14: 0x00000000
[ 0.343250] pci 0000:10:00.0: save config 0x18: 0x00121110
[ 0.343252] pci 0000:10:00.0: save config 0x1c: 0x0000f1f1
[ 0.343254] pci 0000:10:00.0: save config 0x20: 0xfcc0fcb0
[ 0.343256] pci 0000:10:00.0: save config 0x24: 0x0ff10001
[ 0.343259] pci 0000:10:00.0: save config 0x28: 0x0000007a
[ 0.343261] pci 0000:10:00.0: save config 0x2c: 0x0000007c
[ 0.343263] pci 0000:10:00.0: save config 0x30: 0x00000000
[ 0.343266] pci 0000:10:00.0: save config 0x34: 0x00000048
[ 0.343268] pci 0000:10:00.0: save config 0x38: 0x00000000
[ 0.343270] pci 0000:10:00.0: save config 0x3c: 0x001201ff
[ 0.343304] pci 0000:11:00.0: save config 0x00: 0x14791002
[ 0.343307] pci 0000:11:00.0: save config 0x04: 0x00100007
[ 0.343309] pci 0000:11:00.0: save config 0x08: 0x06040000
[ 0.343311] pci 0000:11:00.0: save config 0x0c: 0x00010010
[ 0.343314] pci 0000:11:00.0: save config 0x10: 0x00000000
[ 0.343316] pci 0000:11:00.0: save config 0x14: 0x00000000
[ 0.343318] pci 0000:11:00.0: save config 0x18: 0x00121211
[ 0.343320] pci 0000:11:00.0: save config 0x1c: 0x0000f1f1
[ 0.343323] pci 0000:11:00.0: save config 0x20: 0xfcc0fcb0
[ 0.343325] pci 0000:11:00.0: save config 0x24: 0x0ff10001
[ 0.343327] pci 0000:11:00.0: save config 0x28: 0x0000007a
[ 0.343329] pci 0000:11:00.0: save config 0x2c: 0x0000007c
[ 0.343332] pci 0000:11:00.0: save config 0x30: 0x00000000
[ 0.343334] pci 0000:11:00.0: save config 0x34: 0x00000050
[ 0.343336] pci 0000:11:00.0: save config 0x38: 0x00000000
[ 0.343339] pci 0000:11:00.0: save config 0x3c: 0x001201ff
[ 0.343372] pci 0000:12:00.0: save config 0x00: 0x73ff1002
[ 0.343375] pci 0000:12:00.0: save config 0x04: 0x00100006
[ 0.343377] pci 0000:12:00.0: save config 0x08: 0x030000c7
[ 0.343379] pci 0000:12:00.0: save config 0x0c: 0x00800010
[ 0.343381] pci 0000:12:00.0: save config 0x10: 0x0000000c
[ 0.343384] pci 0000:12:00.0: save config 0x14: 0x0000007a
[ 0.343386] pci 0000:12:00.0: save config 0x18: 0x0000000c
[ 0.343388] pci 0000:12:00.0: save config 0x1c: 0x0000007c
[ 0.343391] pci 0000:12:00.0: save config 0x20: 0x0000f001
[ 0.343393] pci 0000:12:00.0: save config 0x24: 0xfcb00000
[ 0.343395] pci 0000:12:00.0: save config 0x28: 0x00000000
[ 0.343397] pci 0000:12:00.0: save config 0x2c: 0x65051eae
[ 0.343400] pci 0000:12:00.0: save config 0x30: 0xfcc00000
[ 0.343402] pci 0000:12:00.0: save config 0x34: 0x00000048
[ 0.343404] pci 0000:12:00.0: save config 0x38: 0x00000000
[ 0.343406] pci 0000:12:00.0: save config 0x3c: 0x000001ff
[ 0.343448] pci 0000:12:00.1: save config 0x00: 0xab281002
[ 0.343450] pci 0000:12:00.1: save config 0x04: 0x00100000
[ 0.343453] pci 0000:12:00.1: save config 0x08: 0x04030000
[ 0.343455] pci 0000:12:00.1: save config 0x0c: 0x00800010
[ 0.343457] pci 0000:12:00.1: save config 0x10: 0xfcc20000
[ 0.343459] pci 0000:12:00.1: save config 0x14: 0x00000000
[ 0.343462] pci 0000:12:00.1: save config 0x18: 0x00000000
[ 0.343464] pci 0000:12:00.1: save config 0x1c: 0x00000000
[ 0.343466] pci 0000:12:00.1: save config 0x20: 0x00000000
[ 0.343468] pci 0000:12:00.1: save config 0x24: 0x00000000
[ 0.343471] pci 0000:12:00.1: save config 0x28: 0x00000000
[ 0.343473] pci 0000:12:00.1: save config 0x2c: 0xab281002
[ 0.343475] pci 0000:12:00.1: save config 0x30: 0x00000000
[ 0.343478] pci 0000:12:00.1: save config 0x34: 0x00000048
[ 0.343480] pci 0000:12:00.1: save config 0x38: 0x00000000
[ 0.343482] pci 0000:12:00.1: save config 0x3c: 0x000002ff
[ 0.343532] pci 0000:13:00.0: save config 0x00: 0x16021d97
[ 0.343534] pci 0000:13:00.0: save config 0x04: 0x00100006
[ 0.343537] pci 0000:13:00.0: save config 0x08: 0x01080201
[ 0.343539] pci 0000:13:00.0: save config 0x0c: 0x00000010
[ 0.343541] pci 0000:13:00.0: save config 0x10: 0xfcf00004
[ 0.343543] pci 0000:13:00.0: save config 0x14: 0x00000000
[ 0.343546] pci 0000:13:00.0: save config 0x18: 0x00000000
[ 0.343548] pci 0000:13:00.0: save config 0x1c: 0x00000000
[ 0.343550] pci 0000:13:00.0: save config 0x20: 0x00000000
[ 0.343552] pci 0000:13:00.0: save config 0x24: 0x00000000
[ 0.343554] pci 0000:13:00.0: save config 0x28: 0x00000000
[ 0.343557] pci 0000:13:00.0: save config 0x2c: 0x16021d97
[ 0.343559] pci 0000:13:00.0: save config 0x30: 0x00000000
[ 0.343561] pci 0000:13:00.0: save config 0x34: 0x00000040
[ 0.343563] pci 0000:13:00.0: save config 0x38: 0x00000000
[ 0.343566] pci 0000:13:00.0: save config 0x3c: 0x000001ff
[ 0.343611] pci 0000:14:00.0: save config 0x00: 0x16381002
[ 0.343613] pci 0000:14:00.0: save config 0x04: 0x00100006
[ 0.343615] pci 0000:14:00.0: save config 0x08: 0x030000c9
[ 0.343617] pci 0000:14:00.0: save config 0x0c: 0x00800010
[ 0.343619] pci 0000:14:00.0: save config 0x10: 0x2000000c
[ 0.343621] pci 0000:14:00.0: save config 0x14: 0x0000007e
[ 0.343623] pci 0000:14:00.0: save config 0x18: 0x3000000c
[ 0.343625] pci 0000:14:00.0: save config 0x1c: 0x0000007e
[ 0.343627] pci 0000:14:00.0: save config 0x20: 0x0000e001
[ 0.343629] pci 0000:14:00.0: save config 0x24: 0xfca00000
[ 0.343631] pci 0000:14:00.0: save config 0x28: 0x00000000
[ 0.343633] pci 0000:14:00.0: save config 0x2c: 0x16361002
[ 0.343634] pci 0000:14:00.0: save config 0x30: 0x00000000
[ 0.343636] pci 0000:14:00.0: save config 0x34: 0x00000048
[ 0.343638] pci 0000:14:00.0: save config 0x38: 0x00000000
[ 0.343640] pci 0000:14:00.0: save config 0x3c: 0x000001ff
[ 0.343663] pci 0000:14:00.1: save config 0x00: 0x16371002
[ 0.343665] pci 0000:14:00.1: save config 0x04: 0x00100000
[ 0.343667] pci 0000:14:00.1: save config 0x08: 0x04030000
[ 0.343669] pci 0000:14:00.1: save config 0x0c: 0x00800010
[ 0.343671] pci 0000:14:00.1: save config 0x10: 0xfca88000
[ 0.343673] pci 0000:14:00.1: save config 0x14: 0x00000000
[ 0.343675] pci 0000:14:00.1: save config 0x18: 0x00000000
[ 0.343677] pci 0000:14:00.1: save config 0x1c: 0x00000000
[ 0.343679] pci 0000:14:00.1: save config 0x20: 0x00000000
[ 0.343681] pci 0000:14:00.1: save config 0x24: 0x00000000
[ 0.343683] pci 0000:14:00.1: save config 0x28: 0x00000000
[ 0.343685] pci 0000:14:00.1: save config 0x2c: 0x16371002
[ 0.343687] pci 0000:14:00.1: save config 0x30: 0x00000000
[ 0.343689] pci 0000:14:00.1: save config 0x34: 0x00000048
[ 0.343691] pci 0000:14:00.1: save config 0x38: 0x00000000
[ 0.343693] pci 0000:14:00.1: save config 0x3c: 0x000002ff
[ 0.343704] pci 0000:14:00.2: save config 0x00: 0x15df1022
[ 0.343706] pci 0000:14:00.2: save config 0x04: 0x00100000
[ 0.343708] pci 0000:14:00.2: save config 0x08: 0x10800000
[ 0.343710] pci 0000:14:00.2: save config 0x0c: 0x00800010
[ 0.343712] pci 0000:14:00.2: save config 0x10: 0x00000000
[ 0.343714] pci 0000:14:00.2: save config 0x14: 0x00000000
[ 0.343716] pci 0000:14:00.2: save config 0x18: 0xfc900000
[ 0.343717] pci 0000:14:00.2: save config 0x1c: 0x00000000
[ 0.343719] pci 0000:14:00.2: save config 0x20: 0x00000000
[ 0.343721] pci 0000:14:00.2: save config 0x24: 0xfca8c000
[ 0.343723] pci 0000:14:00.2: save config 0x28: 0x00000000
[ 0.343725] pci 0000:14:00.2: save config 0x2c: 0x15df1022
[ 0.343727] pci 0000:14:00.2: save config 0x30: 0x00000000
[ 0.343729] pci 0000:14:00.2: save config 0x34: 0x00000048
[ 0.343731] pci 0000:14:00.2: save config 0x38: 0x00000000
[ 0.343733] pci 0000:14:00.2: save config 0x3c: 0x000003ff
[ 0.343745] pci 0000:14:00.3: save config 0x00: 0x16391022
[ 0.343747] pci 0000:14:00.3: save config 0x04: 0x00100007
[ 0.343749] pci 0000:14:00.3: save config 0x08: 0x0c033000
[ 0.343751] pci 0000:14:00.3: save config 0x0c: 0x00800010
[ 0.343753] pci 0000:14:00.3: save config 0x10: 0xfc800004
[ 0.343754] pci 0000:14:00.3: save config 0x14: 0x00000000
[ 0.343756] pci 0000:14:00.3: save config 0x18: 0x00000000
[ 0.343758] pci 0000:14:00.3: save config 0x1c: 0x00000000
[ 0.343760] pci 0000:14:00.3: save config 0x20: 0x00000000
[ 0.343762] pci 0000:14:00.3: save config 0x24: 0x00000000
[ 0.343764] pci 0000:14:00.3: save config 0x28: 0x00000000
[ 0.343766] pci 0000:14:00.3: save config 0x2c: 0xffff1849
[ 0.343768] pci 0000:14:00.3: save config 0x30: 0x00000000
[ 0.343770] pci 0000:14:00.3: save config 0x34: 0x00000048
[ 0.343772] pci 0000:14:00.3: save config 0x38: 0x00000000
[ 0.343774] pci 0000:14:00.3: save config 0x3c: 0x000004ff
[ 0.343785] pci 0000:14:00.4: save config 0x00: 0x16391022
[ 0.343788] pci 0000:14:00.4: save config 0x04: 0x00100007
[ 0.343789] pci 0000:14:00.4: save config 0x08: 0x0c033000
[ 0.343791] pci 0000:14:00.4: save config 0x0c: 0x00800010
[ 0.343793] pci 0000:14:00.4: save config 0x10: 0xfc700004
[ 0.343795] pci 0000:14:00.4: save config 0x14: 0x00000000
[ 0.343797] pci 0000:14:00.4: save config 0x18: 0x00000000
[ 0.343799] pci 0000:14:00.4: save config 0x1c: 0x00000000
[ 0.343801] pci 0000:14:00.4: save config 0x20: 0x00000000
[ 0.343803] pci 0000:14:00.4: save config 0x24: 0x00000000
[ 0.343805] pci 0000:14:00.4: save config 0x28: 0x00000000
[ 0.343807] pci 0000:14:00.4: save config 0x2c: 0xffff1849
[ 0.343809] pci 0000:14:00.4: save config 0x30: 0x00000000
[ 0.343811] pci 0000:14:00.4: save config 0x34: 0x00000048
[ 0.343813] pci 0000:14:00.4: save config 0x38: 0x00000000
[ 0.343815] pci 0000:14:00.4: save config 0x3c: 0x000001ff
[ 0.343826] pci 0000:14:00.6: save config 0x00: 0x15e31022
[ 0.343828] pci 0000:14:00.6: save config 0x04: 0x00100000
[ 0.343830] pci 0000:14:00.6: save config 0x08: 0x04030000
[ 0.343832] pci 0000:14:00.6: save config 0x0c: 0x00800010
[ 0.343834] pci 0000:14:00.6: save config 0x10: 0xfca80000
[ 0.343836] pci 0000:14:00.6: save config 0x14: 0x00000000
[ 0.343838] pci 0000:14:00.6: save config 0x18: 0x00000000
[ 0.343840] pci 0000:14:00.6: save config 0x1c: 0x00000000
[ 0.343842] pci 0000:14:00.6: save config 0x20: 0x00000000
[ 0.343844] pci 0000:14:00.6: save config 0x24: 0x00000000
[ 0.343846] pci 0000:14:00.6: save config 0x28: 0x00000000
[ 0.343848] pci 0000:14:00.6: save config 0x2c: 0x28971849
[ 0.343850] pci 0000:14:00.6: save config 0x30: 0x00000000
[ 0.343852] pci 0000:14:00.6: save config 0x34: 0x00000048
[ 0.343854] pci 0000:14:00.6: save config 0x38: 0x00000000
[ 0.343856] pci 0000:14:00.6: save config 0x3c: 0x000003ff
[ 0.343867] pci 0000:15:00.0: save config 0x00: 0x79011022
[ 0.343869] pci 0000:15:00.0: save config 0x04: 0x00100007
[ 0.343871] pci 0000:15:00.0: save config 0x08: 0x01060181
[ 0.343873] pci 0000:15:00.0: save config 0x0c: 0x00800010
[ 0.343875] pci 0000:15:00.0: save config 0x10: 0x00000000
[ 0.343877] pci 0000:15:00.0: save config 0x14: 0x00000000
[ 0.343879] pci 0000:15:00.0: save config 0x18: 0x00000000
[ 0.343880] pci 0000:15:00.0: save config 0x1c: 0x00000000
[ 0.343882] pci 0000:15:00.0: save config 0x20: 0x00000000
[ 0.343884] pci 0000:15:00.0: save config 0x24: 0xfce01000
[ 0.343886] pci 0000:15:00.0: save config 0x28: 0x00000000
[ 0.343888] pci 0000:15:00.0: save config 0x2c: 0xffff1849
[ 0.343890] pci 0000:15:00.0: save config 0x30: 0x00000000
[ 0.343892] pci 0000:15:00.0: save config 0x34: 0x00000048
[ 0.343894] pci 0000:15:00.0: save config 0x38: 0x00000000
[ 0.343896] pci 0000:15:00.0: save config 0x3c: 0x000001ff
[ 0.343914] pci 0000:15:00.1: save config 0x00: 0x79011022
[ 0.343916] pci 0000:15:00.1: save config 0x04: 0x00100007
[ 0.343918] pci 0000:15:00.1: save config 0x08: 0x01060181
[ 0.343920] pci 0000:15:00.1: save config 0x0c: 0x00800010
[ 0.343922] pci 0000:15:00.1: save config 0x10: 0x00000000
[ 0.343924] pci 0000:15:00.1: save config 0x14: 0x00000000
[ 0.343926] pci 0000:15:00.1: save config 0x18: 0x00000000
[ 0.343928] pci 0000:15:00.1: save config 0x1c: 0x00000000
[ 0.343930] pci 0000:15:00.1: save config 0x20: 0x00000000
[ 0.343932] pci 0000:15:00.1: save config 0x24: 0xfce00000
[ 0.343934] pci 0000:15:00.1: save config 0x28: 0x00000000
[ 0.343936] pci 0000:15:00.1: save config 0x2c: 0xffff1849
[ 0.343938] pci 0000:15:00.1: save config 0x30: 0x00000000
[ 0.343939] pci 0000:15:00.1: save config 0x34: 0x00000048
[ 0.343941] pci 0000:15:00.1: save config 0x38: 0x00000000
[ 0.343943] pci 0000:15:00.1: save config 0x3c: 0x000002ff
[ 0.344374] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.344420] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 0.344459] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.344506] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.344549] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.344585] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.344621] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.344657] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.345252] iommu: Default domain type: Translated
[ 0.345252] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.345252] pps_core: LinuxPPS API ver. 1 registered
[ 0.345252] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[ 0.345252] PTP clock support registered
[ 0.345252] EDAC MC: Ver: 3.0.0
[ 0.345252] efivars: Registered efivars operations
[ 0.345252] NetLabel: Initializing
[ 0.345252] NetLabel: domain hash size = 128
[ 0.345252] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.345252] NetLabel: unlabeled traffic allowed by default
[ 0.345252] PCI: Using ACPI for IRQ routing
[ 0.349566] PCI: pci_cache_line_size set to 64 bytes
[ 0.349699] pci 0000:07:00.0: BAR 0 [mem 0xfffffffffc500000-0xfffffffffc50ffff 64bit]: can't claim; no compatible bridge window
[ 0.349756] e820: reserve RAM buffer [mem 0x09aff000-0x0bffffff]
[ 0.349758] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[ 0.349759] e820: reserve RAM buffer [mem 0xb51b1018-0xb7ffffff]
[ 0.349761] e820: reserve RAM buffer [mem 0xb51bf018-0xb7ffffff]
[ 0.349762] e820: reserve RAM buffer [mem 0xb51de018-0xb7ffffff]
[ 0.349763] e820: reserve RAM buffer [mem 0xb5894000-0xb7ffffff]
[ 0.349765] e820: reserve RAM buffer [mem 0xb7d2f000-0xb7ffffff]
[ 0.349766] e820: reserve RAM buffer [mem 0xb916d000-0xbbffffff]
[ 0.349767] e820: reserve RAM buffer [mem 0xbe000000-0xbfffffff]
[ 0.349768] e820: reserve RAM buffer [mem 0x101e300000-0x101fffffff]
[ 0.349829] pci 0000:06:00.0: vgaarb: setting as boot VGA device
[ 0.349829] pci 0000:06:00.0: vgaarb: bridge control possible
[ 0.349829] pci 0000:06:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.349829] pci 0000:12:00.0: vgaarb: bridge control possible
[ 0.349829] pci 0000:12:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.349829] pci 0000:14:00.0: vgaarb: bridge control possible
[ 0.349829] pci 0000:14:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.349829] vgaarb: loaded
[ 0.349829] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.349829] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[ 0.351044] clocksource: Switched to clocksource tsc-early
[ 0.351162] VFS: Disk quotas dquot_6.6.0
[ 0.351171] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.351278] AppArmor: AppArmor Filesystem Enabled
[ 0.351294] pnp: PnP ACPI init
[ 0.351372] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[ 0.351442] system 00:01: [mem 0x1020000000-0x103fffffff window] has been reserved
[ 0.351697] system 00:03: [io 0x0280-0x028f] has been reserved
[ 0.351699] system 00:03: [io 0x0290-0x029f] has been reserved
[ 0.351701] system 00:03: [io 0x02a0-0x02af] has been reserved
[ 0.351703] system 00:03: [io 0x02b0-0x02bf] has been reserved
[ 0.351929] system 00:04: [io 0x04d0-0x04d1] has been reserved
[ 0.351931] system 00:04: [io 0x040b] has been reserved
[ 0.351933] system 00:04: [io 0x04d6] has been reserved
[ 0.351935] system 00:04: [io 0x0c00-0x0c01] has been reserved
[ 0.351936] system 00:04: [io 0x0c14] has been reserved
[ 0.351938] system 00:04: [io 0x0c50-0x0c51] has been reserved
[ 0.351940] system 00:04: [io 0x0c52] has been reserved
[ 0.351941] system 00:04: [io 0x0c6c] has been reserved
[ 0.351943] system 00:04: [io 0x0c6f] has been reserved
[ 0.351945] system 00:04: [io 0x0cd8-0x0cdf] has been reserved
[ 0.351946] system 00:04: [io 0x0800-0x089f] has been reserved
[ 0.351948] system 00:04: [io 0x0b00-0x0b0f] has been reserved
[ 0.351950] system 00:04: [io 0x0b20-0x0b3f] has been reserved
[ 0.351951] system 00:04: [io 0x0900-0x090f] has been reserved
[ 0.351953] system 00:04: [io 0x0910-0x091f] has been reserved
[ 0.351956] system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 0.351958] system 00:04: [mem 0xfec01000-0xfec01fff] could not be reserved
[ 0.351960] system 00:04: [mem 0xfedc0000-0xfedc0fff] has been reserved
[ 0.351962] system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved
[ 0.351964] system 00:04: [mem 0xfed80000-0xfed8ffff] could not be reserved
[ 0.351967] system 00:04: [mem 0xfec10000-0xfec10fff] has been reserved
[ 0.351969] system 00:04: [mem 0xff000000-0xffffffff] has been reserved
[ 0.352501] pnp: PnP ACPI: found 5 devices
[ 0.358367] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.358446] NET: Registered PF_INET protocol family
[ 0.358609] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.367914] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 0.367950] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.368184] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.368539] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.368623] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.368789] MPTCP token hash table entries: 65536 (order: 9, 1572864 bytes, linear)
[ 0.368889] UDP hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[ 0.368997] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[ 0.369095] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.369101] NET: Registered PF_XDP protocol family
[ 0.369123] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.369130] pci 0000:02:00.0: bridge window [mem 0xfc600000-0xfc6fffff]
[ 0.369142] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.369145] pci 0000:05:00.0: bridge window [io 0xd000-0xdfff]
[ 0.369152] pci 0000:05:00.0: bridge window [mem 0xfbb00000-0xfbcfffff]
[ 0.369157] pci 0000:05:00.0: bridge window [mem 0x7d00000000-0x7e0fffffff 64bit pref]
[ 0.369167] pci 0000:04:00.0: PCI bridge to [bus 05-06]
[ 0.369170] pci 0000:04:00.0: bridge window [io 0xd000-0xdfff]
[ 0.369177] pci 0000:04:00.0: bridge window [mem 0xfbb00000-0xfbcfffff]
[ 0.369182] pci 0000:04:00.0: bridge window [mem 0x7d00000000-0x7e0fffffff 64bit pref]
[ 0.369191] pci 0000:02:01.0: PCI bridge to [bus 04-06]
[ 0.369194] pci 0000:02:01.0: bridge window [io 0xd000-0xdfff]
[ 0.369199] pci 0000:02:01.0: bridge window [mem 0xfbb00000-0xfbdfffff]
[ 0.369204] pci 0000:02:01.0: bridge window [mem 0x7d00000000-0x7e0fffffff 64bit pref]
[ 0.369212] pci 0000:07:00.0: BAR 0 [mem 0xfc500000-0xfc50ffff 64bit]: assigned
[ 0.369230] pci 0000:02:03.0: PCI bridge to [bus 07]
[ 0.369236] pci 0000:02:03.0: bridge window [mem 0xfc500000-0xfc5fffff]
[ 0.369247] pci 0000:09:03.0: PCI bridge to [bus 0a]
[ 0.369250] pci 0000:09:03.0: bridge window [io 0xb000-0xbfff]
[ 0.369257] pci 0000:09:03.0: bridge window [mem 0xfc100000-0xfc1fffff]
[ 0.369262] pci 0000:09:03.0: bridge window [mem 0x7e10200000-0x7e102fffff 64bit pref]
[ 0.369271] pci 0000:09:07.0: PCI bridge to [bus 0b]
[ 0.369274] pci 0000:09:07.0: bridge window [io 0xa000-0xafff]
[ 0.369281] pci 0000:09:07.0: bridge window [mem 0xfc000000-0xfc0fffff]
[ 0.369286] pci 0000:09:07.0: bridge window [mem 0x7e10100000-0x7e101fffff 64bit pref]
[ 0.369295] pci 0000:08:00.0: PCI bridge to [bus 09-0b]
[ 0.369299] pci 0000:08:00.0: bridge window [io 0xa000-0xbfff]
[ 0.369305] pci 0000:08:00.0: bridge window [mem 0xfc000000-0xfc1fffff]
[ 0.369310] pci 0000:08:00.0: bridge window [mem 0x7e10100000-0x7e102fffff 64bit pref]
[ 0.369319] pci 0000:02:05.0: PCI bridge to [bus 08-0b]
[ 0.369322] pci 0000:02:05.0: bridge window [io 0xa000-0xbfff]
[ 0.369328] pci 0000:02:05.0: bridge window [mem 0xfc000000-0xfc1fffff]
[ 0.369332] pci 0000:02:05.0: bridge window [mem 0x7e10100000-0x7e102fffff 64bit pref]
[ 0.369339] pci 0000:02:07.0: PCI bridge to [bus 0c]
[ 0.369342] pci 0000:02:07.0: bridge window [io 0xc000-0xcfff]
[ 0.369348] pci 0000:02:07.0: bridge window [mem 0xfc400000-0xfc4fffff]
[ 0.369358] pci 0000:02:08.0: PCI bridge to [bus 0d]
[ 0.369364] pci 0000:02:08.0: bridge window [mem 0xfbe00000-0xfbffffff]
[ 0.369374] pci 0000:02:09.0: PCI bridge to [bus 0e]
[ 0.369379] pci 0000:02:09.0: bridge window [mem 0xfc300000-0xfc3fffff]
[ 0.369390] pci 0000:02:0a.0: PCI bridge to [bus 0f]
[ 0.369395] pci 0000:02:0a.0: bridge window [mem 0xfc200000-0xfc2fffff]
[ 0.369405] pci 0000:01:00.0: PCI bridge to [bus 02-0f]
[ 0.369408] pci 0000:01:00.0: bridge window [io 0xa000-0xdfff]
[ 0.369414] pci 0000:01:00.0: bridge window [mem 0xfbb00000-0xfc6fffff]
[ 0.369418] pci 0000:01:00.0: bridge window [mem 0x7d00000000-0x7e102fffff 64bit pref]
[ 0.369426] pci 0000:00:01.2: PCI bridge to [bus 01-0f]
[ 0.369428] pci 0000:00:01.2: bridge window [io 0xa000-0xdfff]
[ 0.369431] pci 0000:00:01.2: bridge window [mem 0xfbb00000-0xfc6fffff]
[ 0.369433] pci 0000:00:01.2: bridge window [mem 0x7d00000000-0x7e102fffff 64bit pref]
[ 0.369437] pci 0000:11:00.0: PCI bridge to [bus 12]
[ 0.369444] pci 0000:11:00.0: bridge window [io 0xf000-0xffff]
[ 0.369448] pci 0000:11:00.0: bridge window [mem 0xfcb00000-0xfccfffff]
[ 0.369451] pci 0000:11:00.0: bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
[ 0.369456] pci 0000:10:00.0: PCI bridge to [bus 11-12]
[ 0.369459] pci 0000:10:00.0: bridge window [io 0xf000-0xffff]
[ 0.369463] pci 0000:10:00.0: bridge window [mem 0xfcb00000-0xfccfffff]
[ 0.369466] pci 0000:10:00.0: bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
[ 0.369471] pci 0000:00:01.3: PCI bridge to [bus 10-12]
[ 0.369473] pci 0000:00:01.3: bridge window [io 0xf000-0xffff]
[ 0.369476] pci 0000:00:01.3: bridge window [mem 0xfcb00000-0xfcdfffff]
[ 0.369479] pci 0000:00:01.3: bridge window [mem 0x7a00000000-0x7c0fffffff 64bit pref]
[ 0.369482] pci 0000:00:02.1: PCI bridge to [bus 13]
[ 0.369485] pci 0000:00:02.1: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.369491] pci 0000:00:08.1: PCI bridge to [bus 14]
[ 0.369492] pci 0000:00:08.1: bridge window [io 0xe000-0xefff]
[ 0.369495] pci 0000:00:08.1: bridge window [mem 0xfc700000-0xfcafffff]
[ 0.369498] pci 0000:00:08.1: bridge window [mem 0x7e20000000-0x7e301fffff 64bit pref]
[ 0.369502] pci 0000:00:08.2: PCI bridge to [bus 15]
[ 0.369504] pci 0000:00:08.2: bridge window [mem 0xfce00000-0xfcefffff]
[ 0.369510] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
[ 0.369512] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
[ 0.369513] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
[ 0.369515] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 0.369517] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[ 0.369518] pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfcffffff window]
[ 0.369520] pci_bus 0000:00: resource 10 [mem 0x1040000000-0x7fffffffff window]
[ 0.369522] pci_bus 0000:01: resource 0 [io 0xa000-0xdfff]
[ 0.369523] pci_bus 0000:01: resource 1 [mem 0xfbb00000-0xfc6fffff]
[ 0.369525] pci_bus 0000:01: resource 2 [mem 0x7d00000000-0x7e102fffff 64bit pref]
[ 0.369527] pci_bus 0000:02: resource 0 [io 0xa000-0xdfff]
[ 0.369528] pci_bus 0000:02: resource 1 [mem 0xfbb00000-0xfc6fffff]
[ 0.369530] pci_bus 0000:02: resource 2 [mem 0x7d00000000-0x7e102fffff 64bit pref]
[ 0.369532] pci_bus 0000:03: resource 1 [mem 0xfc600000-0xfc6fffff]
[ 0.369533] pci_bus 0000:04: resource 0 [io 0xd000-0xdfff]
[ 0.369535] pci_bus 0000:04: resource 1 [mem 0xfbb00000-0xfbdfffff]
[ 0.369536] pci_bus 0000:04: resource 2 [mem 0x7d00000000-0x7e0fffffff 64bit pref]
[ 0.369538] pci_bus 0000:05: resource 0 [io 0xd000-0xdfff]
[ 0.369540] pci_bus 0000:05: resource 1 [mem 0xfbb00000-0xfbcfffff]
[ 0.369541] pci_bus 0000:05: resource 2 [mem 0x7d00000000-0x7e0fffffff 64bit pref]
[ 0.369543] pci_bus 0000:06: resource 0 [io 0xd000-0xdfff]
[ 0.369545] pci_bus 0000:06: resource 1 [mem 0xfbb00000-0xfbcfffff]
[ 0.369546] pci_bus 0000:06: resource 2 [mem 0x7d00000000-0x7e0fffffff 64bit pref]
[ 0.369548] pci_bus 0000:07: resource 1 [mem 0xfc500000-0xfc5fffff]
[ 0.369550] pci_bus 0000:08: resource 0 [io 0xa000-0xbfff]
[ 0.369551] pci_bus 0000:08: resource 1 [mem 0xfc000000-0xfc1fffff]
[ 0.369553] pci_bus 0000:08: resource 2 [mem 0x7e10100000-0x7e102fffff 64bit pref]
[ 0.369554] pci_bus 0000:09: resource 0 [io 0xa000-0xbfff]
[ 0.369556] pci_bus 0000:09: resource 1 [mem 0xfc000000-0xfc1fffff]
[ 0.369557] pci_bus 0000:09: resource 2 [mem 0x7e10100000-0x7e102fffff 64bit pref]
[ 0.369559] pci_bus 0000:0a: resource 0 [io 0xb000-0xbfff]
[ 0.369561] pci_bus 0000:0a: resource 1 [mem 0xfc100000-0xfc1fffff]
[ 0.369562] pci_bus 0000:0a: resource 2 [mem 0x7e10200000-0x7e102fffff 64bit pref]
[ 0.369564] pci_bus 0000:0b: resource 0 [io 0xa000-0xafff]
[ 0.369565] pci_bus 0000:0b: resource 1 [mem 0xfc000000-0xfc0fffff]
[ 0.369567] pci_bus 0000:0b: resource 2 [mem 0x7e10100000-0x7e101fffff 64bit pref]
[ 0.369569] pci_bus 0000:0c: resource 0 [io 0xc000-0xcfff]
[ 0.369570] pci_bus 0000:0c: resource 1 [mem 0xfc400000-0xfc4fffff]
[ 0.369572] pci_bus 0000:0d: resource 1 [mem 0xfbe00000-0xfbffffff]
[ 0.369573] pci_bus 0000:0e: resource 1 [mem 0xfc300000-0xfc3fffff]
[ 0.369575] pci_bus 0000:0f: resource 1 [mem 0xfc200000-0xfc2fffff]
[ 0.369577] pci_bus 0000:10: resource 0 [io 0xf000-0xffff]
[ 0.369578] pci_bus 0000:10: resource 1 [mem 0xfcb00000-0xfcdfffff]
[ 0.369580] pci_bus 0000:10: resource 2 [mem 0x7a00000000-0x7c0fffffff 64bit pref]
[ 0.369582] pci_bus 0000:11: resource 0 [io 0xf000-0xffff]
[ 0.369583] pci_bus 0000:11: resource 1 [mem 0xfcb00000-0xfccfffff]
[ 0.369585] pci_bus 0000:11: resource 2 [mem 0x7a00000000-0x7c0fffffff 64bit pref]
[ 0.369586] pci_bus 0000:12: resource 0 [io 0xf000-0xffff]
[ 0.369588] pci_bus 0000:12: resource 1 [mem 0xfcb00000-0xfccfffff]
[ 0.369589] pci_bus 0000:12: resource 2 [mem 0x7a00000000-0x7c0fffffff 64bit pref]
[ 0.369591] pci_bus 0000:13: resource 1 [mem 0xfcf00000-0xfcffffff]
[ 0.369593] pci_bus 0000:14: resource 0 [io 0xe000-0xefff]
[ 0.369594] pci_bus 0000:14: resource 1 [mem 0xfc700000-0xfcafffff]
[ 0.369596] pci_bus 0000:14: resource 2 [mem 0x7e20000000-0x7e301fffff 64bit pref]
[ 0.369598] pci_bus 0000:15: resource 1 [mem 0xfce00000-0xfcefffff]
[ 0.369881] pci 0000:06:00.1: D0 power state depends on 0000:06:00.0
[ 0.369934] pci 0000:06:00.1: save config 0x00: 0xab281002
[ 0.369938] pci 0000:06:00.1: save config 0x04: 0x00100000
[ 0.369941] pci 0000:06:00.1: save config 0x08: 0x04030000
[ 0.369944] pci 0000:06:00.1: save config 0x0c: 0x00800010
[ 0.369948] pci 0000:06:00.1: save config 0x10: 0xfbc20000
[ 0.369951] pci 0000:06:00.1: save config 0x14: 0x00000000
[ 0.369954] pci 0000:06:00.1: save config 0x18: 0x00000000
[ 0.369957] pci 0000:06:00.1: save config 0x1c: 0x00000000
[ 0.369960] pci 0000:06:00.1: save config 0x20: 0x00000000
[ 0.369964] pci 0000:06:00.1: save config 0x24: 0x00000000
[ 0.369967] pci 0000:06:00.1: save config 0x28: 0x00000000
[ 0.369970] pci 0000:06:00.1: save config 0x2c: 0xab281002
[ 0.369973] pci 0000:06:00.1: save config 0x30: 0x00000000
[ 0.369976] pci 0000:06:00.1: save config 0x34: 0x00000048
[ 0.369979] pci 0000:06:00.1: save config 0x38: 0x00000000
[ 0.369983] pci 0000:06:00.1: save config 0x3c: 0x000002ff
[ 0.370390] pci 0000:12:00.1: D0 power state depends on 0000:12:00.0
[ 0.370434] pci 0000:12:00.1: save config 0x00: 0xab281002
[ 0.370437] pci 0000:12:00.1: save config 0x04: 0x00100000
[ 0.370439] pci 0000:12:00.1: save config 0x08: 0x04030000
[ 0.370442] pci 0000:12:00.1: save config 0x0c: 0x00800010
[ 0.370444] pci 0000:12:00.1: save config 0x10: 0xfcc20000
[ 0.370446] pci 0000:12:00.1: save config 0x14: 0x00000000
[ 0.370449] pci 0000:12:00.1: save config 0x18: 0x00000000
[ 0.370451] pci 0000:12:00.1: save config 0x1c: 0x00000000
[ 0.370453] pci 0000:12:00.1: save config 0x20: 0x00000000
[ 0.370455] pci 0000:12:00.1: save config 0x24: 0x00000000
[ 0.370458] pci 0000:12:00.1: save config 0x28: 0x00000000
[ 0.370460] pci 0000:12:00.1: save config 0x2c: 0xab281002
[ 0.370462] pci 0000:12:00.1: save config 0x30: 0x00000000
[ 0.370464] pci 0000:12:00.1: save config 0x34: 0x00000048
[ 0.370467] pci 0000:12:00.1: save config 0x38: 0x00000000
[ 0.370469] pci 0000:12:00.1: save config 0x3c: 0x000002ff
[ 0.370504] pci 0000:14:00.1: D0 power state depends on 0000:14:00.0
[ 0.370510] pci 0000:14:00.3: extending delay after power-on from D3hot to 20 msec
[ 0.370516] pci 0000:14:00.1: save config 0x00: 0x16371002
[ 0.370518] pci 0000:14:00.1: save config 0x04: 0x00100000
[ 0.370520] pci 0000:14:00.1: save config 0x08: 0x04030000
[ 0.370522] pci 0000:14:00.1: save config 0x0c: 0x00800010
[ 0.370524] pci 0000:14:00.1: save config 0x10: 0xfca88000
[ 0.370526] pci 0000:14:00.1: save config 0x14: 0x00000000
[ 0.370528] pci 0000:14:00.1: save config 0x18: 0x00000000
[ 0.370530] pci 0000:14:00.1: save config 0x1c: 0x00000000
[ 0.370532] pci 0000:14:00.1: save config 0x20: 0x00000000
[ 0.370534] pci 0000:14:00.1: save config 0x24: 0x00000000
[ 0.370536] pci 0000:14:00.1: save config 0x28: 0x00000000
[ 0.370537] pci 0000:14:00.1: save config 0x2c: 0x16371002
[ 0.370539] pci 0000:14:00.1: save config 0x30: 0x00000000
[ 0.370541] pci 0000:14:00.1: save config 0x34: 0x00000048
[ 0.370543] pci 0000:14:00.1: save config 0x38: 0x00000000
[ 0.370545] pci 0000:14:00.1: save config 0x3c: 0x000002ff
[ 0.370651] pci 0000:14:00.4: extending delay after power-on from D3hot to 20 msec
[ 0.370717] PCI: CLS 64 bytes, default 64
[ 0.370729] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[ 0.370773] Unpacking initramfs...
[ 0.370785] pci 0000:00:01.0: Adding to iommu group 0
[ 0.370802] pci 0000:00:01.2: Adding to iommu group 1
[ 0.370821] pci 0000:00:01.3: Adding to iommu group 2
[ 0.370845] pci 0000:00:02.0: Adding to iommu group 3
[ 0.370862] pci 0000:00:02.1: Adding to iommu group 4
[ 0.370888] pci 0000:00:08.0: Adding to iommu group 5
[ 0.370906] pci 0000:00:08.1: Adding to iommu group 6
[ 0.370923] pci 0000:00:08.2: Adding to iommu group 7
[ 0.370955] pci 0000:00:14.0: Adding to iommu group 8
[ 0.370971] pci 0000:00:14.3: Adding to iommu group 8
[ 0.371056] pci 0000:00:18.0: Adding to iommu group 9
[ 0.371071] pci 0000:00:18.1: Adding to iommu group 9
[ 0.371086] pci 0000:00:18.2: Adding to iommu group 9
[ 0.371101] pci 0000:00:18.3: Adding to iommu group 9
[ 0.371117] pci 0000:00:18.4: Adding to iommu group 9
[ 0.371132] pci 0000:00:18.5: Adding to iommu group 9
[ 0.371147] pci 0000:00:18.6: Adding to iommu group 9
[ 0.371164] pci 0000:00:18.7: Adding to iommu group 9
[ 0.371180] pci 0000:01:00.0: Adding to iommu group 10
[ 0.371220] pci 0000:02:00.0: Adding to iommu group 11
[ 0.371259] pci 0000:02:01.0: Adding to iommu group 12
[ 0.371299] pci 0000:02:03.0: Adding to iommu group 13
[ 0.371344] pci 0000:02:05.0: Adding to iommu group 14
[ 0.371384] pci 0000:02:07.0: Adding to iommu group 15
[ 0.371401] pci 0000:02:08.0: Adding to iommu group 16
[ 0.371418] pci 0000:02:09.0: Adding to iommu group 17
[ 0.371436] pci 0000:02:0a.0: Adding to iommu group 18
[ 0.371475] pci 0000:03:00.0: Adding to iommu group 19
[ 0.371514] pci 0000:04:00.0: Adding to iommu group 20
[ 0.371553] pci 0000:05:00.0: Adding to iommu group 21
[ 0.371603] pci 0000:06:00.0: Adding to iommu group 22
[ 0.371649] pci 0000:06:00.1: Adding to iommu group 23
[ 0.371689] pci 0000:07:00.0: Adding to iommu group 24
[ 0.371728] pci 0000:08:00.0: Adding to iommu group 25
[ 0.371767] pci 0000:09:03.0: Adding to iommu group 26
[ 0.371806] pci 0000:09:07.0: Adding to iommu group 27
[ 0.371813] pci 0000:0a:00.0: Adding to iommu group 26
[ 0.371818] pci 0000:0b:00.0: Adding to iommu group 27
[ 0.371858] pci 0000:0c:00.0: Adding to iommu group 28
[ 0.371863] pci 0000:0d:00.0: Adding to iommu group 16
[ 0.371868] pci 0000:0d:00.1: Adding to iommu group 16
[ 0.371873] pci 0000:0d:00.3: Adding to iommu group 16
[ 0.371878] pci 0000:0e:00.0: Adding to iommu group 17
[ 0.371885] pci 0000:0f:00.0: Adding to iommu group 18
[ 0.371902] pci 0000:10:00.0: Adding to iommu group 29
[ 0.371918] pci 0000:11:00.0: Adding to iommu group 30
[ 0.371943] pci 0000:12:00.0: Adding to iommu group 31
[ 0.371963] pci 0000:12:00.1: Adding to iommu group 32
[ 0.371980] pci 0000:13:00.0: Adding to iommu group 33
[ 0.371999] pci 0000:14:00.0: Adding to iommu group 34
[ 0.372016] pci 0000:14:00.1: Adding to iommu group 35
[ 0.372036] pci 0000:14:00.2: Adding to iommu group 36
[ 0.372054] pci 0000:14:00.3: Adding to iommu group 37
[ 0.372071] pci 0000:14:00.4: Adding to iommu group 38
[ 0.372090] pci 0000:14:00.6: Adding to iommu group 39
[ 0.372111] pci 0000:15:00.0: Adding to iommu group 40
[ 0.372128] pci 0000:15:00.1: Adding to iommu group 41
[ 0.375042] AMD-Vi: Extended features (0x206d73ef22254ade, 0x0): PPR X2APIC NX GT IA GA PC GA_vAPIC
[ 0.375052] AMD-Vi: Interrupt remapping enabled
[ 0.375053] AMD-Vi: X2APIC enabled
[ 0.393518] AMD-Vi: Virtual APIC enabled
[ 0.393528] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.393529] software IO TLB: mapped [mem 0x00000000b11b1000-0x00000000b51b1000] (64MB)
[ 0.393579] LVT offset 0 assigned for vector 0x400
[ 0.397391] perf: AMD IBS detected (0x000003ff)
[ 0.397560] amd_uncore: 4 amd_df counters detected
[ 0.397565] amd_uncore: 6 amd_l3 counters detected
[ 0.397734] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[ 0.398288] Initialise system trusted keyrings
[ 0.398295] Key type blacklist registered
[ 0.398322] workingset: timestamp_bits=36 max_order=24 bucket_order=0
[ 0.398329] zbud: loaded
[ 0.398403] fuse: init (API version 7.41)
[ 0.398521] integrity: Platform Keyring initialized
[ 0.398523] integrity: Machine keyring initialized
[ 0.410403] Key type asymmetric registered
[ 0.410404] Asymmetric key parser 'x509' registered
[ 0.444177] Freeing initrd memory: 33728K
[ 0.448049] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.448082] io scheduler mq-deadline registered
[ 0.450091] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.450107] pciehp: pcie_port_service_register = 0
[ 0.450115] pcieport 0000:00:01.2: vgaarb: pci_notify
[ 0.450118] pcieport 0000:00:01.2: runtime IRQ mapping not provided by arch
[ 0.450197] pcieport 0000:00:01.2: PME: Signaling with IRQ 29
[ 0.450239] pcieport 0000:00:01.2: save config 0x00: 0x16341022
[ 0.450242] pcieport 0000:00:01.2: save config 0x04: 0x00100407
[ 0.450244] pcieport 0000:00:01.2: save config 0x08: 0x06040000
[ 0.450246] pcieport 0000:00:01.2: save config 0x0c: 0x00810010
[ 0.450248] pcieport 0000:00:01.2: save config 0x10: 0x00000000
[ 0.450250] pcieport 0000:00:01.2: save config 0x14: 0x00000000
[ 0.450252] pcieport 0000:00:01.2: save config 0x18: 0x000f0100
[ 0.450254] pcieport 0000:00:01.2: save config 0x1c: 0x0000d1a1
[ 0.450256] pcieport 0000:00:01.2: save config 0x20: 0xfc60fbb0
[ 0.450258] pcieport 0000:00:01.2: save config 0x24: 0x10210001
[ 0.450259] pcieport 0000:00:01.2: save config 0x28: 0x0000007d
[ 0.450261] pcieport 0000:00:01.2: save config 0x2c: 0x0000007e
[ 0.450263] pcieport 0000:00:01.2: save config 0x30: 0x00000000
[ 0.450265] pcieport 0000:00:01.2: save config 0x34: 0x00000050
[ 0.450267] pcieport 0000:00:01.2: save config 0x38: 0x00000000
[ 0.450269] pcieport 0000:00:01.2: save config 0x3c: 0x001200ff
[ 0.450288] pcieport 0000:00:01.2: vgaarb: pci_notify
[ 0.450293] pcieport 0000:00:01.3: vgaarb: pci_notify
[ 0.450296] pcieport 0000:00:01.3: runtime IRQ mapping not provided by arch
[ 0.450357] pcieport 0000:00:01.3: PME: Signaling with IRQ 30
[ 0.450374] pcieport 0000:00:01.3: save config 0x00: 0x16331022
[ 0.450376] pcieport 0000:00:01.3: save config 0x04: 0x00100407
[ 0.450378] pcieport 0000:00:01.3: save config 0x08: 0x06040000
[ 0.450380] pcieport 0000:00:01.3: save config 0x0c: 0x00810010
[ 0.450382] pcieport 0000:00:01.3: save config 0x10: 0x00000000
[ 0.450384] pcieport 0000:00:01.3: save config 0x14: 0x00000000
[ 0.450386] pcieport 0000:00:01.3: save config 0x18: 0x00121000
[ 0.450387] pcieport 0000:00:01.3: save config 0x1c: 0x0000f1f1
[ 0.450389] pcieport 0000:00:01.3: save config 0x20: 0xfcd0fcb0
[ 0.450391] pcieport 0000:00:01.3: save config 0x24: 0x0ff10001
[ 0.450393] pcieport 0000:00:01.3: save config 0x28: 0x0000007a
[ 0.450395] pcieport 0000:00:01.3: save config 0x2c: 0x0000007c
[ 0.450397] pcieport 0000:00:01.3: save config 0x30: 0x00000000
[ 0.450399] pcieport 0000:00:01.3: save config 0x34: 0x00000050
[ 0.450401] pcieport 0000:00:01.3: save config 0x38: 0x00000000
[ 0.450403] pcieport 0000:00:01.3: save config 0x3c: 0x001200ff
[ 0.450419] pcieport 0000:00:01.3: vgaarb: pci_notify
[ 0.450424] pcieport 0000:00:02.1: vgaarb: pci_notify
[ 0.450427] pcieport 0000:00:02.1: runtime IRQ mapping not provided by arch
[ 0.450488] pcieport 0000:00:02.1: PME: Signaling with IRQ 31
[ 0.450511] pcieport 0000:00:02.1: save config 0x00: 0x16341022
[ 0.450513] pcieport 0000:00:02.1: save config 0x04: 0x00100407
[ 0.450515] pcieport 0000:00:02.1: save config 0x08: 0x06040000
[ 0.450517] pcieport 0000:00:02.1: save config 0x0c: 0x00810010
[ 0.450519] pcieport 0000:00:02.1: save config 0x10: 0x00000000
[ 0.450521] pcieport 0000:00:02.1: save config 0x14: 0x00000000
[ 0.450523] pcieport 0000:00:02.1: save config 0x18: 0x00131300
[ 0.450524] pcieport 0000:00:02.1: save config 0x1c: 0x000001f1
[ 0.450526] pcieport 0000:00:02.1: save config 0x20: 0xfcf0fcf0
[ 0.450528] pcieport 0000:00:02.1: save config 0x24: 0x0001fff1
[ 0.450530] pcieport 0000:00:02.1: save config 0x28: 0x00000000
[ 0.450532] pcieport 0000:00:02.1: save config 0x2c: 0x00000000
[ 0.450534] pcieport 0000:00:02.1: save config 0x30: 0x00000000
[ 0.450536] pcieport 0000:00:02.1: save config 0x34: 0x00000050
[ 0.450538] pcieport 0000:00:02.1: save config 0x38: 0x00000000
[ 0.450540] pcieport 0000:00:02.1: save config 0x3c: 0x001200ff
[ 0.450556] pcieport 0000:00:02.1: vgaarb: pci_notify
[ 0.450561] pcieport 0000:00:08.1: vgaarb: pci_notify
[ 0.450564] pcieport 0000:00:08.1: runtime IRQ mapping not provided by arch
[ 0.450622] pcieport 0000:00:08.1: PME: Signaling with IRQ 32
[ 0.450644] pcieport 0000:00:08.1: save config 0x00: 0x16351022
[ 0.450646] pcieport 0000:00:08.1: save config 0x04: 0x00100407
[ 0.450648] pcieport 0000:00:08.1: save config 0x08: 0x06040000
[ 0.450650] pcieport 0000:00:08.1: save config 0x0c: 0x00810010
[ 0.450652] pcieport 0000:00:08.1: save config 0x10: 0x00000000
[ 0.450654] pcieport 0000:00:08.1: save config 0x14: 0x00000000
[ 0.450656] pcieport 0000:00:08.1: save config 0x18: 0x00141400
[ 0.450657] pcieport 0000:00:08.1: save config 0x1c: 0x0000e1e1
[ 0.450659] pcieport 0000:00:08.1: save config 0x20: 0xfca0fc70
[ 0.450661] pcieport 0000:00:08.1: save config 0x24: 0x30112001
[ 0.450663] pcieport 0000:00:08.1: save config 0x28: 0x0000007e
[ 0.450665] pcieport 0000:00:08.1: save config 0x2c: 0x0000007e
[ 0.450667] pcieport 0000:00:08.1: save config 0x30: 0x00000000
[ 0.450669] pcieport 0000:00:08.1: save config 0x34: 0x00000050
[ 0.450670] pcieport 0000:00:08.1: save config 0x38: 0x00000000
[ 0.450672] pcieport 0000:00:08.1: save config 0x3c: 0x001201ff
[ 0.450693] pcieport 0000:00:08.1: vgaarb: pci_notify
[ 0.450698] pcieport 0000:00:08.2: vgaarb: pci_notify
[ 0.450701] pcieport 0000:00:08.2: runtime IRQ mapping not provided by arch
[ 0.450813] pcieport 0000:00:08.2: PME: Signaling with IRQ 33
[ 0.450842] pcieport 0000:00:08.2: save config 0x00: 0x16351022
[ 0.450845] pcieport 0000:00:08.2: save config 0x04: 0x00100407
[ 0.450846] pcieport 0000:00:08.2: save config 0x08: 0x06040000
[ 0.450848] pcieport 0000:00:08.2: save config 0x0c: 0x00810010
[ 0.450850] pcieport 0000:00:08.2: save config 0x10: 0x00000000
[ 0.450852] pcieport 0000:00:08.2: save config 0x14: 0x00000000
[ 0.450854] pcieport 0000:00:08.2: save config 0x18: 0x00151500
[ 0.450856] pcieport 0000:00:08.2: save config 0x1c: 0x000001f1
[ 0.450858] pcieport 0000:00:08.2: save config 0x20: 0xfce0fce0
[ 0.450859] pcieport 0000:00:08.2: save config 0x24: 0x0001fff1
[ 0.450861] pcieport 0000:00:08.2: save config 0x28: 0x00000000
[ 0.450863] pcieport 0000:00:08.2: save config 0x2c: 0x00000000
[ 0.450865] pcieport 0000:00:08.2: save config 0x30: 0x00000000
[ 0.450867] pcieport 0000:00:08.2: save config 0x34: 0x00000050
[ 0.450869] pcieport 0000:00:08.2: save config 0x38: 0x00000000
[ 0.450871] pcieport 0000:00:08.2: save config 0x3c: 0x001201ff
[ 0.450888] pcieport 0000:00:08.2: vgaarb: pci_notify
[ 0.450895] pcieport 0000:01:00.0: vgaarb: pci_notify
[ 0.450898] pcieport 0000:01:00.0: runtime IRQ mapping not provided by arch
[ 0.450910] pcieport 0000:01:00.0: save config 0x00: 0x57ad1022
[ 0.450913] pcieport 0000:01:00.0: save config 0x04: 0x00100007
[ 0.450916] pcieport 0000:01:00.0: save config 0x08: 0x06040000
[ 0.450919] pcieport 0000:01:00.0: save config 0x0c: 0x00010010
[ 0.450922] pcieport 0000:01:00.0: save config 0x10: 0x00000000
[ 0.450925] pcieport 0000:01:00.0: save config 0x14: 0x00000000
[ 0.450928] pcieport 0000:01:00.0: save config 0x18: 0x000f0201
[ 0.450931] pcieport 0000:01:00.0: save config 0x1c: 0x0000d1a1
[ 0.450934] pcieport 0000:01:00.0: save config 0x20: 0xfc60fbb0
[ 0.450936] pcieport 0000:01:00.0: save config 0x24: 0x10210001
[ 0.450939] pcieport 0000:01:00.0: save config 0x28: 0x0000007d
[ 0.450942] pcieport 0000:01:00.0: save config 0x2c: 0x0000007e
[ 0.450945] pcieport 0000:01:00.0: save config 0x30: 0x00000000
[ 0.450948] pcieport 0000:01:00.0: save config 0x34: 0x00000050
[ 0.450951] pcieport 0000:01:00.0: save config 0x38: 0x00000000
[ 0.450954] pcieport 0000:01:00.0: save config 0x3c: 0x001201ff
[ 0.451008] pcieport 0000:01:00.0: vgaarb: pci_notify
[ 0.451013] pcieport 0000:02:00.0: vgaarb: pci_notify
[ 0.451017] pcieport 0000:02:00.0: runtime IRQ mapping not provided by arch
[ 0.451118] pcieport 0000:02:00.0: save config 0x00: 0x57a31022
[ 0.451121] pcieport 0000:02:00.0: save config 0x04: 0x00100407
[ 0.451124] pcieport 0000:02:00.0: save config 0x08: 0x06040000
[ 0.451127] pcieport 0000:02:00.0: save config 0x0c: 0x00810010
[ 0.451129] pcieport 0000:02:00.0: save config 0x10: 0x00000000
[ 0.451132] pcieport 0000:02:00.0: save config 0x14: 0x00000000
[ 0.451135] pcieport 0000:02:00.0: save config 0x18: 0x00030302
[ 0.451138] pcieport 0000:02:00.0: save config 0x1c: 0x000001f1
[ 0.451141] pcieport 0000:02:00.0: save config 0x20: 0xfc60fc60
[ 0.451144] pcieport 0000:02:00.0: save config 0x24: 0x0001fff1
[ 0.451147] pcieport 0000:02:00.0: save config 0x28: 0x00000000
[ 0.451149] pcieport 0000:02:00.0: save config 0x2c: 0x00000000
[ 0.451152] pcieport 0000:02:00.0: save config 0x30: 0x00000000
[ 0.451155] pcieport 0000:02:00.0: save config 0x34: 0x00000050
[ 0.451158] pcieport 0000:02:00.0: save config 0x38: 0x00000000
[ 0.451161] pcieport 0000:02:00.0: save config 0x3c: 0x001200ff
[ 0.451295] pcieport 0000:02:00.0: vgaarb: pci_notify
[ 0.451300] pcieport 0000:02:01.0: vgaarb: pci_notify
[ 0.451303] pcieport 0000:02:01.0: runtime IRQ mapping not provided by arch
[ 0.451418] pcieport 0000:02:01.0: save config 0x00: 0x57a31022
[ 0.451421] pcieport 0000:02:01.0: save config 0x04: 0x00100407
[ 0.451424] pcieport 0000:02:01.0: save config 0x08: 0x06040000
[ 0.451427] pcieport 0000:02:01.0: save config 0x0c: 0x00810010
[ 0.451429] pcieport 0000:02:01.0: save config 0x10: 0x00000000
[ 0.451432] pcieport 0000:02:01.0: save config 0x14: 0x00000000
[ 0.451435] pcieport 0000:02:01.0: save config 0x18: 0x00060402
[ 0.451438] pcieport 0000:02:01.0: save config 0x1c: 0x0000d1d1
[ 0.451441] pcieport 0000:02:01.0: save config 0x20: 0xfbd0fbb0
[ 0.451443] pcieport 0000:02:01.0: save config 0x24: 0x0ff10001
[ 0.451446] pcieport 0000:02:01.0: save config 0x28: 0x0000007d
[ 0.451449] pcieport 0000:02:01.0: save config 0x2c: 0x0000007e
[ 0.451452] pcieport 0000:02:01.0: save config 0x30: 0x00000000
[ 0.451455] pcieport 0000:02:01.0: save config 0x34: 0x00000050
[ 0.451457] pcieport 0000:02:01.0: save config 0x38: 0x00000000
[ 0.451460] pcieport 0000:02:01.0: save config 0x3c: 0x001200ff
[ 0.451594] pcieport 0000:02:01.0: vgaarb: pci_notify
[ 0.451599] pcieport 0000:02:03.0: vgaarb: pci_notify
[ 0.451602] pcieport 0000:02:03.0: runtime IRQ mapping not provided by arch
[ 0.451702] pcieport 0000:02:03.0: save config 0x00: 0x57a31022
[ 0.451705] pcieport 0000:02:03.0: save config 0x04: 0x00100407
[ 0.451708] pcieport 0000:02:03.0: save config 0x08: 0x06040000
[ 0.451711] pcieport 0000:02:03.0: save config 0x0c: 0x00810010
[ 0.451714] pcieport 0000:02:03.0: save config 0x10: 0x00000000
[ 0.451716] pcieport 0000:02:03.0: save config 0x14: 0x00000000
[ 0.451719] pcieport 0000:02:03.0: save config 0x18: 0x00070702
[ 0.451722] pcieport 0000:02:03.0: save config 0x1c: 0x000001f1
[ 0.451725] pcieport 0000:02:03.0: save config 0x20: 0xfc50fc50
[ 0.451728] pcieport 0000:02:03.0: save config 0x24: 0x0001fff1
[ 0.451730] pcieport 0000:02:03.0: save config 0x28: 0x00000000
[ 0.451733] pcieport 0000:02:03.0: save config 0x2c: 0x00000000
[ 0.451736] pcieport 0000:02:03.0: save config 0x30: 0x00000000
[ 0.451739] pcieport 0000:02:03.0: save config 0x34: 0x00000050
[ 0.451742] pcieport 0000:02:03.0: save config 0x38: 0x00000000
[ 0.451744] pcieport 0000:02:03.0: save config 0x3c: 0x001200ff
[ 0.451878] pcieport 0000:02:03.0: vgaarb: pci_notify
[ 0.451883] pcieport 0000:02:05.0: vgaarb: pci_notify
[ 0.451886] pcieport 0000:02:05.0: runtime IRQ mapping not provided by arch
[ 0.451990] pcieport 0000:02:05.0: save config 0x00: 0x57a31022
[ 0.451993] pcieport 0000:02:05.0: save config 0x04: 0x00100407
[ 0.451996] pcieport 0000:02:05.0: save config 0x08: 0x06040000
[ 0.451999] pcieport 0000:02:05.0: save config 0x0c: 0x00810010
[ 0.452001] pcieport 0000:02:05.0: save config 0x10: 0x00000000
[ 0.452004] pcieport 0000:02:05.0: save config 0x14: 0x00000000
[ 0.452007] pcieport 0000:02:05.0: save config 0x18: 0x000b0802
[ 0.452010] pcieport 0000:02:05.0: save config 0x1c: 0x0000b1a1
[ 0.452013] pcieport 0000:02:05.0: save config 0x20: 0xfc10fc00
[ 0.452015] pcieport 0000:02:05.0: save config 0x24: 0x10211011
[ 0.452018] pcieport 0000:02:05.0: save config 0x28: 0x0000007e
[ 0.452021] pcieport 0000:02:05.0: save config 0x2c: 0x0000007e
[ 0.452024] pcieport 0000:02:05.0: save config 0x30: 0x00000000
[ 0.452027] pcieport 0000:02:05.0: save config 0x34: 0x00000050
[ 0.452029] pcieport 0000:02:05.0: save config 0x38: 0x00000000
[ 0.452032] pcieport 0000:02:05.0: save config 0x3c: 0x001200ff
[ 0.452166] pcieport 0000:02:05.0: vgaarb: pci_notify
[ 0.452171] pcieport 0000:02:07.0: vgaarb: pci_notify
[ 0.452174] pcieport 0000:02:07.0: runtime IRQ mapping not provided by arch
[ 0.452274] pcieport 0000:02:07.0: save config 0x00: 0x57a31022
[ 0.452277] pcieport 0000:02:07.0: save config 0x04: 0x00100407
[ 0.452280] pcieport 0000:02:07.0: save config 0x08: 0x06040000
[ 0.452282] pcieport 0000:02:07.0: save config 0x0c: 0x00810010
[ 0.452285] pcieport 0000:02:07.0: save config 0x10: 0x00000000
[ 0.452288] pcieport 0000:02:07.0: save config 0x14: 0x00000000
[ 0.452291] pcieport 0000:02:07.0: save config 0x18: 0x000c0c02
[ 0.452294] pcieport 0000:02:07.0: save config 0x1c: 0x0000c1c1
[ 0.452296] pcieport 0000:02:07.0: save config 0x20: 0xfc40fc40
[ 0.452299] pcieport 0000:02:07.0: save config 0x24: 0x0001fff1
[ 0.452302] pcieport 0000:02:07.0: save config 0x28: 0x00000000
[ 0.452305] pcieport 0000:02:07.0: save config 0x2c: 0x00000000
[ 0.452308] pcieport 0000:02:07.0: save config 0x30: 0x00000000
[ 0.452310] pcieport 0000:02:07.0: save config 0x34: 0x00000050
[ 0.452313] pcieport 0000:02:07.0: save config 0x38: 0x00000000
[ 0.452316] pcieport 0000:02:07.0: save config 0x3c: 0x001200ff
[ 0.452451] pcieport 0000:02:07.0: vgaarb: pci_notify
[ 0.452456] pcieport 0000:02:08.0: vgaarb: pci_notify
[ 0.452459] pcieport 0000:02:08.0: runtime IRQ mapping not provided by arch
[ 0.452541] pcieport 0000:02:08.0: save config 0x00: 0x57a41022
[ 0.452544] pcieport 0000:02:08.0: save config 0x04: 0x00100407
[ 0.452546] pcieport 0000:02:08.0: save config 0x08: 0x06040000
[ 0.452549] pcieport 0000:02:08.0: save config 0x0c: 0x00010010
[ 0.452552] pcieport 0000:02:08.0: save config 0x10: 0x00000000
[ 0.452558] pcieport 0000:02:08.0: save config 0x14: 0x00000000
[ 0.452561] pcieport 0000:02:08.0: save config 0x18: 0x000d0d02
[ 0.452564] pcieport 0000:02:08.0: save config 0x1c: 0x000001f1
[ 0.452567] pcieport 0000:02:08.0: save config 0x20: 0xfbf0fbe0
[ 0.452570] pcieport 0000:02:08.0: save config 0x24: 0x0001fff1
[ 0.452572] pcieport 0000:02:08.0: save config 0x28: 0x00000000
[ 0.452575] pcieport 0000:02:08.0: save config 0x2c: 0x00000000
[ 0.452578] pcieport 0000:02:08.0: save config 0x30: 0x00000000
[ 0.452581] pcieport 0000:02:08.0: save config 0x34: 0x00000050
[ 0.452584] pcieport 0000:02:08.0: save config 0x38: 0x00000000
[ 0.452586] pcieport 0000:02:08.0: save config 0x3c: 0x001201ff
[ 0.452650] pcieport 0000:02:08.0: vgaarb: pci_notify
[ 0.452655] pcieport 0000:02:09.0: vgaarb: pci_notify
[ 0.452658] pcieport 0000:02:09.0: runtime IRQ mapping not provided by arch
[ 0.452774] pcieport 0000:02:09.0: save config 0x00: 0x57a41022
[ 0.452777] pcieport 0000:02:09.0: save config 0x04: 0x00100407
[ 0.452780] pcieport 0000:02:09.0: save config 0x08: 0x06040000
[ 0.452783] pcieport 0000:02:09.0: save config 0x0c: 0x00010010
[ 0.452786] pcieport 0000:02:09.0: save config 0x10: 0x00000000
[ 0.452789] pcieport 0000:02:09.0: save config 0x14: 0x00000000
[ 0.452791] pcieport 0000:02:09.0: save config 0x18: 0x000e0e02
[ 0.452794] pcieport 0000:02:09.0: save config 0x1c: 0x000001f1
[ 0.452797] pcieport 0000:02:09.0: save config 0x20: 0xfc30fc30
[ 0.452800] pcieport 0000:02:09.0: save config 0x24: 0x0001fff1
[ 0.452803] pcieport 0000:02:09.0: save config 0x28: 0x00000000
[ 0.452805] pcieport 0000:02:09.0: save config 0x2c: 0x00000000
[ 0.452808] pcieport 0000:02:09.0: save config 0x30: 0x00000000
[ 0.452811] pcieport 0000:02:09.0: save config 0x34: 0x00000050
[ 0.452814] pcieport 0000:02:09.0: save config 0x38: 0x00000000
[ 0.452816] pcieport 0000:02:09.0: save config 0x3c: 0x001201ff
[ 0.452879] pcieport 0000:02:09.0: vgaarb: pci_notify
[ 0.452884] pcieport 0000:02:0a.0: vgaarb: pci_notify
[ 0.452887] pcieport 0000:02:0a.0: runtime IRQ mapping not provided by arch
[ 0.453001] pcieport 0000:02:0a.0: save config 0x00: 0x57a41022
[ 0.453004] pcieport 0000:02:0a.0: save config 0x04: 0x00100407
[ 0.453007] pcieport 0000:02:0a.0: save config 0x08: 0x06040000
[ 0.453010] pcieport 0000:02:0a.0: save config 0x0c: 0x00010010
[ 0.453012] pcieport 0000:02:0a.0: save config 0x10: 0x00000000
[ 0.453015] pcieport 0000:02:0a.0: save config 0x14: 0x00000000
[ 0.453018] pcieport 0000:02:0a.0: save config 0x18: 0x000f0f02
[ 0.453021] pcieport 0000:02:0a.0: save config 0x1c: 0x000001f1
[ 0.453024] pcieport 0000:02:0a.0: save config 0x20: 0xfc20fc20
[ 0.453026] pcieport 0000:02:0a.0: save config 0x24: 0x0001fff1
[ 0.453029] pcieport 0000:02:0a.0: save config 0x28: 0x00000000
[ 0.453032] pcieport 0000:02:0a.0: save config 0x2c: 0x00000000
[ 0.453035] pcieport 0000:02:0a.0: save config 0x30: 0x00000000
[ 0.453038] pcieport 0000:02:0a.0: save config 0x34: 0x00000050
[ 0.453040] pcieport 0000:02:0a.0: save config 0x38: 0x00000000
[ 0.453043] pcieport 0000:02:0a.0: save config 0x3c: 0x001201ff
[ 0.453105] pcieport 0000:02:0a.0: vgaarb: pci_notify
[ 0.453110] pcieport 0000:04:00.0: vgaarb: pci_notify
[ 0.453113] pcieport 0000:04:00.0: runtime IRQ mapping not provided by arch
[ 0.453153] pcieport 0000:04:00.0: save config 0x00: 0x14781002
[ 0.453156] pcieport 0000:04:00.0: save config 0x04: 0x00100007
[ 0.453159] pcieport 0000:04:00.0: save config 0x08: 0x060400c7
[ 0.453162] pcieport 0000:04:00.0: save config 0x0c: 0x00010010
[ 0.453166] pcieport 0000:04:00.0: save config 0x10: 0xfbd00000
[ 0.453169] pcieport 0000:04:00.0: save config 0x14: 0x00000000
[ 0.453172] pcieport 0000:04:00.0: save config 0x18: 0x00060504
[ 0.453175] pcieport 0000:04:00.0: save config 0x1c: 0x0000d1d1
[ 0.453178] pcieport 0000:04:00.0: save config 0x20: 0xfbc0fbb0
[ 0.453182] pcieport 0000:04:00.0: save config 0x24: 0x0ff10001
[ 0.453185] pcieport 0000:04:00.0: save config 0x28: 0x0000007d
[ 0.453188] pcieport 0000:04:00.0: save config 0x2c: 0x0000007e
[ 0.453191] pcieport 0000:04:00.0: save config 0x30: 0x00000000
[ 0.453194] pcieport 0000:04:00.0: save config 0x34: 0x00000048
[ 0.453197] pcieport 0000:04:00.0: save config 0x38: 0x00000000
[ 0.453201] pcieport 0000:04:00.0: save config 0x3c: 0x001201ff
[ 0.453271] pcieport 0000:04:00.0: vgaarb: pci_notify
[ 0.453276] pcieport 0000:05:00.0: vgaarb: pci_notify
[ 0.453279] pcieport 0000:05:00.0: runtime IRQ mapping not provided by arch
[ 0.453382] pcieport 0000:05:00.0: save config 0x00: 0x14791002
[ 0.453386] pcieport 0000:05:00.0: save config 0x04: 0x00100407
[ 0.453389] pcieport 0000:05:00.0: save config 0x08: 0x06040000
[ 0.453392] pcieport 0000:05:00.0: save config 0x0c: 0x00010010
[ 0.453395] pcieport 0000:05:00.0: save config 0x10: 0x00000000
[ 0.453399] pcieport 0000:05:00.0: save config 0x14: 0x00000000
[ 0.453402] pcieport 0000:05:00.0: save config 0x18: 0x00060605
[ 0.453405] pcieport 0000:05:00.0: save config 0x1c: 0x0000d1d1
[ 0.453408] pcieport 0000:05:00.0: save config 0x20: 0xfbc0fbb0
[ 0.453411] pcieport 0000:05:00.0: save config 0x24: 0x0ff10001
[ 0.453414] pcieport 0000:05:00.0: save config 0x28: 0x0000007d
[ 0.453418] pcieport 0000:05:00.0: save config 0x2c: 0x0000007e
[ 0.453421] pcieport 0000:05:00.0: save config 0x30: 0x00000000
[ 0.453424] pcieport 0000:05:00.0: save config 0x34: 0x00000050
[ 0.453427] pcieport 0000:05:00.0: save config 0x38: 0x00000000
[ 0.453430] pcieport 0000:05:00.0: save config 0x3c: 0x001201ff
[ 0.453501] pcieport 0000:05:00.0: vgaarb: pci_notify
[ 0.453508] pcieport 0000:08:00.0: vgaarb: pci_notify
[ 0.453511] pcieport 0000:08:00.0: runtime IRQ mapping not provided by arch
[ 0.453543] pcieport 0000:08:00.0: save config 0x00: 0x11821b21
[ 0.453547] pcieport 0000:08:00.0: save config 0x04: 0x00100007
[ 0.453550] pcieport 0000:08:00.0: save config 0x08: 0x06040000
[ 0.453553] pcieport 0000:08:00.0: save config 0x0c: 0x00010010
[ 0.453556] pcieport 0000:08:00.0: save config 0x10: 0x00000000
[ 0.453559] pcieport 0000:08:00.0: save config 0x14: 0x00000000
[ 0.453563] pcieport 0000:08:00.0: save config 0x18: 0x000b0908
[ 0.453566] pcieport 0000:08:00.0: save config 0x1c: 0x0000b1a1
[ 0.453569] pcieport 0000:08:00.0: save config 0x20: 0xfc10fc00
[ 0.453572] pcieport 0000:08:00.0: save config 0x24: 0x10211011
[ 0.453575] pcieport 0000:08:00.0: save config 0x28: 0x0000007e
[ 0.453578] pcieport 0000:08:00.0: save config 0x2c: 0x0000007e
[ 0.453582] pcieport 0000:08:00.0: save config 0x30: 0x00000000
[ 0.453585] pcieport 0000:08:00.0: save config 0x34: 0x00000050
[ 0.453588] pcieport 0000:08:00.0: save config 0x38: 0x00000000
[ 0.453591] pcieport 0000:08:00.0: save config 0x3c: 0x001201ff
[ 0.453645] pcieport 0000:08:00.0: vgaarb: pci_notify
[ 0.453650] pcieport 0000:09:03.0: vgaarb: pci_notify
[ 0.453653] pcieport 0000:09:03.0: runtime IRQ mapping not provided by arch
[ 0.453745] pcieport 0000:09:03.0: save config 0x00: 0x11821b21
[ 0.453748] pcieport 0000:09:03.0: save config 0x04: 0x00100407
[ 0.453752] pcieport 0000:09:03.0: save config 0x08: 0x06040000
[ 0.453755] pcieport 0000:09:03.0: save config 0x0c: 0x00010010
[ 0.453758] pcieport 0000:09:03.0: save config 0x10: 0x00000000
[ 0.453761] pcieport 0000:09:03.0: save config 0x14: 0x00000000
[ 0.453764] pcieport 0000:09:03.0: save config 0x18: 0x000a0a09
[ 0.453768] pcieport 0000:09:03.0: save config 0x1c: 0x0000b1b1
[ 0.453771] pcieport 0000:09:03.0: save config 0x20: 0xfc10fc10
[ 0.453774] pcieport 0000:09:03.0: save config 0x24: 0x10211021
[ 0.453777] pcieport 0000:09:03.0: save config 0x28: 0x0000007e
[ 0.453780] pcieport 0000:09:03.0: save config 0x2c: 0x0000007e
[ 0.453784] pcieport 0000:09:03.0: save config 0x30: 0x00000000
[ 0.453787] pcieport 0000:09:03.0: save config 0x34: 0x00000050
[ 0.453790] pcieport 0000:09:03.0: save config 0x38: 0x00000000
[ 0.453793] pcieport 0000:09:03.0: save config 0x3c: 0x001201ff
[ 0.453843] pcieport 0000:09:03.0: vgaarb: pci_notify
[ 0.453848] pcieport 0000:09:07.0: vgaarb: pci_notify
[ 0.453851] pcieport 0000:09:07.0: runtime IRQ mapping not provided by arch
[ 0.453944] pcieport 0000:09:07.0: save config 0x00: 0x11821b21
[ 0.453947] pcieport 0000:09:07.0: save config 0x04: 0x00100407
[ 0.453951] pcieport 0000:09:07.0: save config 0x08: 0x06040000
[ 0.453954] pcieport 0000:09:07.0: save config 0x0c: 0x00010010
[ 0.453957] pcieport 0000:09:07.0: save config 0x10: 0x00000000
[ 0.453960] pcieport 0000:09:07.0: save config 0x14: 0x00000000
[ 0.453963] pcieport 0000:09:07.0: save config 0x18: 0x000b0b09
[ 0.453967] pcieport 0000:09:07.0: save config 0x1c: 0x0000a1a1
[ 0.453970] pcieport 0000:09:07.0: save config 0x20: 0xfc00fc00
[ 0.453973] pcieport 0000:09:07.0: save config 0x24: 0x10111011
[ 0.453976] pcieport 0000:09:07.0: save config 0x28: 0x0000007e
[ 0.453979] pcieport 0000:09:07.0: save config 0x2c: 0x0000007e
[ 0.453983] pcieport 0000:09:07.0: save config 0x30: 0x00000000
[ 0.453986] pcieport 0000:09:07.0: save config 0x34: 0x00000050
[ 0.453989] pcieport 0000:09:07.0: save config 0x38: 0x00000000
[ 0.453992] pcieport 0000:09:07.0: save config 0x3c: 0x001201ff
[ 0.454042] pcieport 0000:09:07.0: vgaarb: pci_notify
[ 0.454049] pcieport 0000:10:00.0: vgaarb: pci_notify
[ 0.454052] pcieport 0000:10:00.0: runtime IRQ mapping not provided by arch
[ 0.454092] pcieport 0000:10:00.0: save config 0x00: 0x14781002
[ 0.454095] pcieport 0000:10:00.0: save config 0x04: 0x00100007
[ 0.454097] pcieport 0000:10:00.0: save config 0x08: 0x060400c7
[ 0.454099] pcieport 0000:10:00.0: save config 0x0c: 0x00010010
[ 0.454102] pcieport 0000:10:00.0: save config 0x10: 0xfcd00000
[ 0.454104] pcieport 0000:10:00.0: save config 0x14: 0x00000000
[ 0.454106] pcieport 0000:10:00.0: save config 0x18: 0x00121110
[ 0.454109] pcieport 0000:10:00.0: save config 0x1c: 0x0000f1f1
[ 0.454111] pcieport 0000:10:00.0: save config 0x20: 0xfcc0fcb0
[ 0.454113] pcieport 0000:10:00.0: save config 0x24: 0x0ff10001
[ 0.454116] pcieport 0000:10:00.0: save config 0x28: 0x0000007a
[ 0.454118] pcieport 0000:10:00.0: save config 0x2c: 0x0000007c
[ 0.454120] pcieport 0000:10:00.0: save config 0x30: 0x00000000
[ 0.454122] pcieport 0000:10:00.0: save config 0x34: 0x00000048
[ 0.454125] pcieport 0000:10:00.0: save config 0x38: 0x00000000
[ 0.454127] pcieport 0000:10:00.0: save config 0x3c: 0x001201ff
[ 0.454161] pcieport 0000:10:00.0: vgaarb: pci_notify
[ 0.454166] pcieport 0000:11:00.0: vgaarb: pci_notify
[ 0.454169] pcieport 0000:11:00.0: runtime IRQ mapping not provided by arch
[ 0.454243] pcieport 0000:11:00.0: save config 0x00: 0x14791002
[ 0.454246] pcieport 0000:11:00.0: save config 0x04: 0x00100407
[ 0.454248] pcieport 0000:11:00.0: save config 0x08: 0x06040000
[ 0.454250] pcieport 0000:11:00.0: save config 0x0c: 0x00010010
[ 0.454253] pcieport 0000:11:00.0: save config 0x10: 0x00000000
[ 0.454255] pcieport 0000:11:00.0: save config 0x14: 0x00000000
[ 0.454257] pcieport 0000:11:00.0: save config 0x18: 0x00121211
[ 0.454260] pcieport 0000:11:00.0: save config 0x1c: 0x0000f1f1
[ 0.454262] pcieport 0000:11:00.0: save config 0x20: 0xfcc0fcb0
[ 0.454264] pcieport 0000:11:00.0: save config 0x24: 0x0ff10001
[ 0.454266] pcieport 0000:11:00.0: save config 0x28: 0x0000007a
[ 0.454269] pcieport 0000:11:00.0: save config 0x2c: 0x0000007c
[ 0.454271] pcieport 0000:11:00.0: save config 0x30: 0x00000000
[ 0.454273] pcieport 0000:11:00.0: save config 0x34: 0x00000050
[ 0.454275] pcieport 0000:11:00.0: save config 0x38: 0x00000000
[ 0.454278] pcieport 0000:11:00.0: save config 0x3c: 0x001201ff
[ 0.454311] pcieport 0000:11:00.0: vgaarb: pci_notify
[ 0.454383] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.455418] Estimated ratio of average max frequency by base frequency (times 1024): 1098
[ 0.455566] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.456047] Linux agpgart interface v0.103
[ 0.456065] agpgart-amd64 0000:00:00.0: vgaarb: pci_notify
[ 0.456068] agpgart-amd64 0000:00:00.0: runtime IRQ mapping not provided by arch
[ 0.456071] agpgart-amd64 0000:00:00.0: vgaarb: pci_notify
[ 0.456075] agpgart-amd64 0000:00:01.0: vgaarb: pci_notify
[ 0.456078] agpgart-amd64 0000:00:01.0: runtime IRQ mapping not provided by arch
[ 0.456080] agpgart-amd64 0000:00:01.0: vgaarb: pci_notify
[ 0.456084] agpgart-amd64 0000:00:02.0: vgaarb: pci_notify
[ 0.456086] agpgart-amd64 0000:00:02.0: runtime IRQ mapping not provided by arch
[ 0.456089] agpgart-amd64 0000:00:02.0: vgaarb: pci_notify
[ 0.456092] agpgart-amd64 0000:00:08.0: vgaarb: pci_notify
[ 0.456095] agpgart-amd64 0000:00:08.0: runtime IRQ mapping not provided by arch
[ 0.456098] agpgart-amd64 0000:00:08.0: vgaarb: pci_notify
[ 0.456101] agpgart-amd64 0000:00:14.0: vgaarb: pci_notify
[ 0.456104] agpgart-amd64 0000:00:14.0: runtime IRQ mapping not provided by arch
[ 0.456108] agpgart-amd64 0000:00:14.0: vgaarb: pci_notify
[ 0.456111] agpgart-amd64 0000:00:14.3: vgaarb: pci_notify
[ 0.456113] agpgart-amd64 0000:00:14.3: runtime IRQ mapping not provided by arch
[ 0.456117] agpgart-amd64 0000:00:14.3: vgaarb: pci_notify
[ 0.456120] agpgart-amd64 0000:00:18.0: vgaarb: pci_notify
[ 0.456123] agpgart-amd64 0000:00:18.0: runtime IRQ mapping not provided by arch
[ 0.456125] agpgart-amd64 0000:00:18.0: vgaarb: pci_notify
[ 0.456128] agpgart-amd64 0000:00:18.1: vgaarb: pci_notify
[ 0.456131] agpgart-amd64 0000:00:18.1: runtime IRQ mapping not provided by arch
[ 0.456133] agpgart-amd64 0000:00:18.1: vgaarb: pci_notify
[ 0.456136] agpgart-amd64 0000:00:18.2: vgaarb: pci_notify
[ 0.456139] agpgart-amd64 0000:00:18.2: runtime IRQ mapping not provided by arch
[ 0.456141] agpgart-amd64 0000:00:18.2: vgaarb: pci_notify
[ 0.456144] agpgart-amd64 0000:00:18.3: vgaarb: pci_notify
[ 0.456147] agpgart-amd64 0000:00:18.3: runtime IRQ mapping not provided by arch
[ 0.456150] agpgart-amd64 0000:00:18.3: vgaarb: pci_notify
[ 0.456152] agpgart-amd64 0000:00:18.4: vgaarb: pci_notify
[ 0.456155] agpgart-amd64 0000:00:18.4: runtime IRQ mapping not provided by arch
[ 0.456158] agpgart-amd64 0000:00:18.4: vgaarb: pci_notify
[ 0.456160] agpgart-amd64 0000:00:18.5: vgaarb: pci_notify
[ 0.456163] agpgart-amd64 0000:00:18.5: runtime IRQ mapping not provided by arch
[ 0.456166] agpgart-amd64 0000:00:18.5: vgaarb: pci_notify
[ 0.456169] agpgart-amd64 0000:00:18.6: vgaarb: pci_notify
[ 0.456171] agpgart-amd64 0000:00:18.6: runtime IRQ mapping not provided by arch
[ 0.456174] agpgart-amd64 0000:00:18.6: vgaarb: pci_notify
[ 0.456177] agpgart-amd64 0000:00:18.7: vgaarb: pci_notify
[ 0.456179] agpgart-amd64 0000:00:18.7: runtime IRQ mapping not provided by arch
[ 0.456182] agpgart-amd64 0000:00:18.7: vgaarb: pci_notify
[ 0.456186] agpgart-amd64 0000:03:00.0: vgaarb: pci_notify
[ 0.456190] agpgart-amd64 0000:03:00.0: runtime IRQ mapping not provided by arch
[ 0.456340] agpgart-amd64 0000:03:00.0: vgaarb: pci_notify
[ 0.456344] agpgart-amd64 0000:06:00.0: vgaarb: pci_notify
[ 0.456346] agpgart-amd64 0000:06:00.0: runtime IRQ mapping not provided by arch
[ 0.456359] agpgart-amd64 0000:06:00.0: vgaarb: pci_notify
[ 0.456363] agpgart-amd64 0000:06:00.1: vgaarb: pci_notify
[ 0.456365] agpgart-amd64 0000:06:00.1: runtime IRQ mapping not provided by arch
[ 0.456476] agpgart-amd64 0000:06:00.1: save config 0x00: 0xab281002
[ 0.456480] agpgart-amd64 0000:06:00.1: save config 0x04: 0x00100000
[ 0.456483] agpgart-amd64 0000:06:00.1: save config 0x08: 0x04030000
[ 0.456486] agpgart-amd64 0000:06:00.1: save config 0x0c: 0x00800010
[ 0.456490] agpgart-amd64 0000:06:00.1: save config 0x10: 0xfbc20000
[ 0.456493] agpgart-amd64 0000:06:00.1: save config 0x14: 0x00000000
[ 0.456496] agpgart-amd64 0000:06:00.1: save config 0x18: 0x00000000
[ 0.456499] agpgart-amd64 0000:06:00.1: save config 0x1c: 0x00000000
[ 0.456502] agpgart-amd64 0000:06:00.1: save config 0x20: 0x00000000
[ 0.456506] agpgart-amd64 0000:06:00.1: save config 0x24: 0x00000000
[ 0.456509] agpgart-amd64 0000:06:00.1: save config 0x28: 0x00000000
[ 0.456512] agpgart-amd64 0000:06:00.1: save config 0x2c: 0xab281002
[ 0.456515] agpgart-amd64 0000:06:00.1: save config 0x30: 0x00000000
[ 0.456518] agpgart-amd64 0000:06:00.1: save config 0x34: 0x00000048
[ 0.456521] agpgart-amd64 0000:06:00.1: save config 0x38: 0x00000000
[ 0.456525] agpgart-amd64 0000:06:00.1: save config 0x3c: 0x000002ff
[ 0.456574] agpgart-amd64 0000:06:00.1: vgaarb: pci_notify
[ 0.456577] agpgart-amd64 0000:07:00.0: vgaarb: pci_notify
[ 0.456579] agpgart-amd64 0000:07:00.0: runtime IRQ mapping not provided by arch
[ 0.456593] agpgart-amd64 0000:07:00.0: vgaarb: pci_notify
[ 0.456596] agpgart-amd64 0000:0a:00.0: vgaarb: pci_notify
[ 0.456599] agpgart-amd64 0000:0a:00.0: runtime IRQ mapping not provided by arch
[ 0.456619] agpgart-amd64 0000:0a:00.0: vgaarb: pci_notify
[ 0.456622] agpgart-amd64 0000:0b:00.0: vgaarb: pci_notify
[ 0.456625] agpgart-amd64 0000:0b:00.0: runtime IRQ mapping not provided by arch
[ 0.456645] agpgart-amd64 0000:0b:00.0: vgaarb: pci_notify
[ 0.456648] agpgart-amd64 0000:0c:00.0: vgaarb: pci_notify
[ 0.456651] agpgart-amd64 0000:0c:00.0: runtime IRQ mapping not provided by arch
[ 0.456667] agpgart-amd64 0000:0c:00.0: vgaarb: pci_notify
[ 0.456670] agpgart-amd64 0000:0d:00.0: vgaarb: pci_notify
[ 0.456672] agpgart-amd64 0000:0d:00.0: runtime IRQ mapping not provided by arch
[ 0.456682] agpgart-amd64 0000:0d:00.0: vgaarb: pci_notify
[ 0.456685] agpgart-amd64 0000:0d:00.1: vgaarb: pci_notify
[ 0.456687] agpgart-amd64 0000:0d:00.1: runtime IRQ mapping not provided by arch
[ 0.456755] agpgart-amd64 0000:0d:00.1: vgaarb: pci_notify
[ 0.456758] agpgart-amd64 0000:0d:00.3: vgaarb: pci_notify
[ 0.456761] agpgart-amd64 0000:0d:00.3: runtime IRQ mapping not provided by arch
[ 0.456773] agpgart-amd64 0000:0d:00.3: vgaarb: pci_notify
[ 0.456776] agpgart-amd64 0000:0e:00.0: vgaarb: pci_notify
[ 0.456779] agpgart-amd64 0000:0e:00.0: runtime IRQ mapping not provided by arch
[ 0.456791] agpgart-amd64 0000:0e:00.0: vgaarb: pci_notify
[ 0.456794] agpgart-amd64 0000:0f:00.0: vgaarb: pci_notify
[ 0.456797] agpgart-amd64 0000:0f:00.0: runtime IRQ mapping not provided by arch
[ 0.456809] agpgart-amd64 0000:0f:00.0: vgaarb: pci_notify
[ 0.456813] agpgart-amd64 0000:12:00.0: vgaarb: pci_notify
[ 0.456816] agpgart-amd64 0000:12:00.0: runtime IRQ mapping not provided by arch
[ 0.456827] agpgart-amd64 0000:12:00.0: vgaarb: pci_notify
[ 0.456831] agpgart-amd64 0000:12:00.1: vgaarb: pci_notify
[ 0.456833] agpgart-amd64 0000:12:00.1: runtime IRQ mapping not provided by arch
[ 0.456886] agpgart-amd64 0000:12:00.1: save config 0x00: 0xab281002
[ 0.456889] agpgart-amd64 0000:12:00.1: save config 0x04: 0x00100000
[ 0.456891] agpgart-amd64 0000:12:00.1: save config 0x08: 0x04030000
[ 0.456893] agpgart-amd64 0000:12:00.1: save config 0x0c: 0x00800010
[ 0.456896] agpgart-amd64 0000:12:00.1: save config 0x10: 0xfcc20000
[ 0.456898] agpgart-amd64 0000:12:00.1: save config 0x14: 0x00000000
[ 0.456900] agpgart-amd64 0000:12:00.1: save config 0x18: 0x00000000
[ 0.456902] agpgart-amd64 0000:12:00.1: save config 0x1c: 0x00000000
[ 0.456905] agpgart-amd64 0000:12:00.1: save config 0x20: 0x00000000
[ 0.456907] agpgart-amd64 0000:12:00.1: save config 0x24: 0x00000000
[ 0.456909] agpgart-amd64 0000:12:00.1: save config 0x28: 0x00000000
[ 0.456912] agpgart-amd64 0000:12:00.1: save config 0x2c: 0xab281002
[ 0.456914] agpgart-amd64 0000:12:00.1: save config 0x30: 0x00000000
[ 0.456916] agpgart-amd64 0000:12:00.1: save config 0x34: 0x00000048
[ 0.456918] agpgart-amd64 0000:12:00.1: save config 0x38: 0x00000000
[ 0.456921] agpgart-amd64 0000:12:00.1: save config 0x3c: 0x000002ff
[ 0.456943] agpgart-amd64 0000:12:00.1: vgaarb: pci_notify
[ 0.456946] agpgart-amd64 0000:13:00.0: vgaarb: pci_notify
[ 0.456949] agpgart-amd64 0000:13:00.0: runtime IRQ mapping not provided by arch
[ 0.456986] agpgart-amd64 0000:13:00.0: vgaarb: pci_notify
[ 0.456989] agpgart-amd64 0000:14:00.0: vgaarb: pci_notify
[ 0.456992] agpgart-amd64 0000:14:00.0: runtime IRQ mapping not provided by arch
[ 0.456998] agpgart-amd64 0000:14:00.0: vgaarb: pci_notify
[ 0.457001] agpgart-amd64 0000:14:00.1: vgaarb: pci_notify
[ 0.457004] agpgart-amd64 0000:14:00.1: runtime IRQ mapping not provided by arch
[ 0.457032] agpgart-amd64 0000:14:00.1: save config 0x00: 0x16371002
[ 0.457034] agpgart-amd64 0000:14:00.1: save config 0x04: 0x00100000
[ 0.457036] agpgart-amd64 0000:14:00.1: save config 0x08: 0x04030000
[ 0.457038] agpgart-amd64 0000:14:00.1: save config 0x0c: 0x00800010
[ 0.457040] agpgart-amd64 0000:14:00.1: save config 0x10: 0xfca88000
[ 0.457042] agpgart-amd64 0000:14:00.1: save config 0x14: 0x00000000
[ 0.457044] agpgart-amd64 0000:14:00.1: save config 0x18: 0x00000000
[ 0.457046] agpgart-amd64 0000:14:00.1: save config 0x1c: 0x00000000
[ 0.457048] agpgart-amd64 0000:14:00.1: save config 0x20: 0x00000000
[ 0.457050] agpgart-amd64 0000:14:00.1: save config 0x24: 0x00000000
[ 0.457052] agpgart-amd64 0000:14:00.1: save config 0x28: 0x00000000
[ 0.457054] agpgart-amd64 0000:14:00.1: save config 0x2c: 0x16371002
[ 0.457056] agpgart-amd64 0000:14:00.1: save config 0x30: 0x00000000
[ 0.457058] agpgart-amd64 0000:14:00.1: save config 0x34: 0x00000048
[ 0.457060] agpgart-amd64 0000:14:00.1: save config 0x38: 0x00000000
[ 0.457062] agpgart-amd64 0000:14:00.1: save config 0x3c: 0x000002ff
[ 0.457073] agpgart-amd64 0000:14:00.1: vgaarb: pci_notify
[ 0.457076] agpgart-amd64 0000:14:00.2: vgaarb: pci_notify
[ 0.457079] agpgart-amd64 0000:14:00.2: runtime IRQ mapping not provided by arch
[ 0.457085] agpgart-amd64 0000:14:00.2: vgaarb: pci_notify
[ 0.457088] agpgart-amd64 0000:14:00.3: vgaarb: pci_notify
[ 0.457091] agpgart-amd64 0000:14:00.3: runtime IRQ mapping not provided by arch
[ 0.457097] agpgart-amd64 0000:14:00.3: vgaarb: pci_notify
[ 0.457100] agpgart-amd64 0000:14:00.4: vgaarb: pci_notify
[ 0.457103] agpgart-amd64 0000:14:00.4: runtime IRQ mapping not provided by arch
[ 0.457109] agpgart-amd64 0000:14:00.4: vgaarb: pci_notify
[ 0.457112] agpgart-amd64 0000:14:00.6: vgaarb: pci_notify
[ 0.457114] agpgart-amd64 0000:14:00.6: runtime IRQ mapping not provided by arch
[ 0.457120] agpgart-amd64 0000:14:00.6: vgaarb: pci_notify
[ 0.457123] agpgart-amd64 0000:15:00.0: vgaarb: pci_notify
[ 0.457125] agpgart-amd64 0000:15:00.0: runtime IRQ mapping not provided by arch
[ 0.457131] agpgart-amd64 0000:15:00.0: vgaarb: pci_notify
[ 0.457135] agpgart-amd64 0000:15:00.1: vgaarb: pci_notify
[ 0.457137] agpgart-amd64 0000:15:00.1: runtime IRQ mapping not provided by arch
[ 0.457143] agpgart-amd64 0000:15:00.1: vgaarb: pci_notify
[ 0.488590] tpm_crb MSFT0101:00: Disabling hwrng
[ 0.489571] i8042: PNP: No PS/2 controller found.
[ 0.489615] mousedev: PS/2 mouse device common for all mice
[ 0.489635] rtc_cmos 00:02: RTC can wake from S4
[ 0.489850] rtc_cmos 00:02: registered as rtc0
[ 0.489879] rtc_cmos 00:02: setting system clock to 2026-04-04T09:43:28 UTC (1775295808)
[ 0.489905] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[ 0.490504] efifb: probing for efifb
[ 0.490519] efifb: framebuffer at 0x7d00000000, using 8100k, total 8100k
[ 0.490521] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[ 0.490523] efifb: scrolling: redraw
[ 0.490523] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.490603] Console: switching to colour frame buffer device 240x67
[ 0.493522] fb0: EFI VGA frame buffer device
[ 0.493653] NET: Registered PF_INET6 protocol family
[ 0.496634] Segment Routing with IPv6
[ 0.496644] In-situ OAM (IOAM) with IPv6
[ 0.496663] mip6: Mobile IPv6
[ 0.496666] NET: Registered PF_PACKET protocol family
[ 0.496690] mpls_gso: MPLS GSO support
[ 0.497480] microcode: Current revision: 0x0a500011
[ 0.497482] microcode: Updated early from: 0x0a50000f
[ 0.497645] resctrl: L3 allocation detected
[ 0.497646] resctrl: MB allocation detected
[ 0.497647] resctrl: L3 monitoring detected
[ 0.497664] IPI shorthand broadcast: enabled
[ 0.499476] sched_clock: Marking stable (497804736, 196103)->(502309568, -4308729)
[ 0.499603] registered taskstats version 1
[ 0.499719] Loading compiled-in X.509 certificates
[ 0.510446] Loaded X.509 cert 'Build time autogenerated kernel key: d4fd5352fe9c5ca22469d63fc1c505fe52a2bece'
[ 0.512457] Demotion targets for Node 0: null
[ 0.512503] Key type .fscrypt registered
[ 0.512505] Key type fscrypt-provisioning registered
[ 0.524668] Key type encrypted registered
[ 0.524671] AppArmor: AppArmor sha256 policy hashing enabled
[ 0.524761] ima: Allocated hash algorithm: sha256
[ 0.610036] ima: No architecture policies found
[ 0.610060] evm: Initialising EVM extended attributes:
[ 0.610061] evm: security.selinux
[ 0.610063] evm: security.SMACK64 (disabled)
[ 0.610065] evm: security.SMACK64EXEC (disabled)
[ 0.610066] evm: security.SMACK64TRANSMUTE (disabled)
[ 0.610068] evm: security.SMACK64MMAP (disabled)
[ 0.610069] evm: security.apparmor
[ 0.610070] evm: security.ima
[ 0.610072] evm: security.capability
[ 0.610073] evm: HMAC attrs: 0x1
[ 0.611387] RAS: Correctable Errors collector initialized.
[ 0.615288] clk: Disabling unused clocks
[ 0.615291] PM: genpd: Disabling unused power domains
[ 0.616357] Freeing unused decrypted memory: 2036K
[ 0.616849] Freeing unused kernel image (initmem) memory: 4104K
[ 0.616866] Write protecting the kernel read-only data: 28672k
[ 0.617270] Freeing unused kernel image (rodata/data gap) memory: 1020K
[ 0.667143] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.667153] Run /init as init process
[ 0.667156] with arguments:
[ 0.667158] /init
[ 0.667160] with environment:
[ 0.667161] HOME=/
[ 0.667162] TERM=linux
[ 0.812361] piix4_smbus 0000:00:14.0: vgaarb: pci_notify
[ 0.812368] piix4_smbus 0000:00:14.0: runtime IRQ mapping not provided by arch
[ 0.812398] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[ 0.812401] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[ 0.814017] cryptd: max_cpu_qlen set to 1000
[ 0.822088] i2c i2c-0: Successfully instantiated SPD at 0x52
[ 0.822521] AES CTR mode by8 optimization enabled
[ 0.822629] SCSI subsystem initialized
[ 0.824948] nvme 0000:13:00.0: vgaarb: pci_notify
[ 0.824948] nvme 0000:03:00.0: vgaarb: pci_notify
[ 0.824956] nvme 0000:03:00.0: runtime IRQ mapping not provided by arch
[ 0.824957] nvme 0000:13:00.0: runtime IRQ mapping not provided by arch
[ 0.825075] nvme nvme0: pci function 0000:13:00.0
[ 0.825075] nvme nvme1: pci function 0000:03:00.0
[ 0.825691] nvme 0000:13:00.0: save config 0x00: 0x16021d97
[ 0.825695] nvme 0000:13:00.0: save config 0x04: 0x00100406
[ 0.825699] nvme 0000:13:00.0: save config 0x08: 0x01080201
[ 0.825702] nvme 0000:13:00.0: save config 0x0c: 0x00000010
[ 0.825706] nvme 0000:13:00.0: save config 0x10: 0xfcf00004
[ 0.825710] nvme 0000:13:00.0: save config 0x14: 0x00000000
[ 0.825713] nvme 0000:13:00.0: save config 0x18: 0x00000000
[ 0.825717] nvme 0000:13:00.0: save config 0x1c: 0x00000000
[ 0.825717] nvme 0000:03:00.0: save config 0x00: 0x16021d97
[ 0.825721] nvme 0000:03:00.0: save config 0x04: 0x00100406
[ 0.825722] nvme 0000:13:00.0: save config 0x20: 0x00000000
[ 0.825725] nvme 0000:13:00.0: save config 0x24: 0x00000000
[ 0.825726] nvme 0000:03:00.0: save config 0x08: 0x01080201
[ 0.825728] nvme 0000:13:00.0: save config 0x28: 0x00000000
[ 0.825730] nvme 0000:03:00.0: save config 0x0c: 0x00000010
[ 0.825731] nvme 0000:13:00.0: save config 0x2c: 0x16021d97
[ 0.825734] nvme 0000:03:00.0: save config 0x10: 0xfc600004
[ 0.825735] nvme 0000:13:00.0: save config 0x30: 0x00000000
[ 0.825738] nvme 0000:03:00.0: save config 0x14: 0x00000000
[ 0.825739] nvme 0000:13:00.0: save config 0x34: 0x00000040
[ 0.825742] nvme 0000:03:00.0: save config 0x18: 0x00000000
[ 0.825742] nvme 0000:13:00.0: save config 0x38: 0x00000000
[ 0.825745] nvme 0000:03:00.0: save config 0x1c: 0x00000000
[ 0.825746] nvme 0000:13:00.0: save config 0x3c: 0x000001ff
[ 0.825749] nvme 0000:03:00.0: save config 0x20: 0x00000000
[ 0.825753] nvme 0000:03:00.0: save config 0x24: 0x00000000
[ 0.825757] nvme 0000:03:00.0: save config 0x28: 0x00000000
[ 0.825761] nvme 0000:03:00.0: save config 0x2c: 0x16021d97
[ 0.825765] nvme 0000:03:00.0: save config 0x30: 0x00000000
[ 0.825769] nvme 0000:03:00.0: save config 0x34: 0x00000040
[ 0.825774] nvme 0000:03:00.0: save config 0x38: 0x00000000
[ 0.825778] nvme 0000:03:00.0: save config 0x3c: 0x000001ff
[ 0.826169] i2c i2c-0: Successfully instantiated SPD at 0x53
[ 0.826208] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[ 0.827254] nvme nvme0: bad crto:0 cap:8202020ff0103ff
[ 0.830409] ACPI: bus type USB registered
[ 0.830441] usbcore: registered new interface driver usbfs
[ 0.830450] usbcore: registered new interface driver hub
[ 0.830462] usbcore: registered new device driver usb
[ 0.830471] r8169 0000:0a:00.0: vgaarb: pci_notify
[ 0.830476] r8169 0000:0a:00.0: runtime IRQ mapping not provided by arch
[ 0.830495] r8169 0000:0a:00.0: enabling device (0000 -> 0003)
[ 0.830563] r8169 0000:0a:00.0: enabling Mem-Wr-Inval
[ 0.842072] piix4_smbus 0000:00:14.0: vgaarb: pci_notify
[ 0.842252] nvme nvme0: allocated 40 MiB host memory buffer.
[ 0.842583] nvme nvme1: allocated 40 MiB host memory buffer.
[ 0.843903] libata version 3.00 loaded.
[ 0.869240] nvme nvme0: 12/0/0 default/read/poll queues
[ 0.870862] nvme nvme1: 12/0/0 default/read/poll queues
[ 0.893405] r8169 0000:0a:00.0 eth0: RTL8168evl/8111evl, 00:e0:4c:68:02:6a, XID 2c9, IRQ 52
[ 0.893410] r8169 0000:0a:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 0.893417] r8169 0000:0a:00.0: vgaarb: pci_notify
[ 0.893432] r8169 0000:0b:00.0: vgaarb: pci_notify
[ 0.893437] r8169 0000:0b:00.0: runtime IRQ mapping not provided by arch
[ 0.893455] r8169 0000:0b:00.0: enabling device (0000 -> 0003)
[ 0.893528] r8169 0000:0b:00.0: enabling Mem-Wr-Inval
[ 0.912624] nvme0n1: p1 p2 p3
[ 0.912780] nvme 0000:13:00.0: vgaarb: pci_notify
[ 0.914363] nvme1n1: p1 p2 p3
[ 0.914510] nvme 0000:03:00.0: vgaarb: pci_notify
[ 0.919548] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[ 0.919645] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[ 0.919758] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[ 0.920384] ahci 0000:0e:00.0: vgaarb: pci_notify
[ 0.920550] ahci 0000:0e:00.0: runtime IRQ mapping not provided by arch
[ 0.920555] ahci 0000:0e:00.0: version 3.0
[ 0.920773] ahci 0000:0e:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.920776] ahci 0000:0e:00.0: 1/1 ports implemented (port mask 0x1)
[ 0.920778] ahci 0000:0e:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
[ 0.921004] scsi host0: ahci
[ 0.921101] ata1: SATA max UDMA/133 abar m2048@0xfc300000 port 0xfc300100 irq 78 lpm-pol 3
[ 0.921108] ahci 0000:0e:00.0: vgaarb: pci_notify
[ 0.921120] ahci 0000:0f:00.0: vgaarb: pci_notify
[ 0.921124] ahci 0000:0f:00.0: runtime IRQ mapping not provided by arch
[ 0.921562] ahci 0000:0f:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.921566] ahci 0000:0f:00.0: 3/3 ports implemented (port mask 0x13)
[ 0.921568] ahci 0000:0f:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs
[ 0.922175] scsi host1: ahci
[ 0.922310] scsi host2: ahci
[ 0.922420] scsi host3: ahci
[ 0.922543] scsi host4: ahci
[ 0.922679] scsi host5: ahci
[ 0.922741] ata2: SATA max UDMA/133 abar m2048@0xfc200000 port 0xfc200100 irq 79 lpm-pol 0
[ 0.922746] ata3: SATA max UDMA/133 abar m2048@0xfc200000 port 0xfc200180 irq 80 lpm-pol 0
[ 0.922748] ata4: DUMMY
[ 0.922750] ata5: DUMMY
[ 0.922754] ata6: SATA max UDMA/133 abar m2048@0xfc200000 port 0xfc200300 irq 83 lpm-pol 3
[ 0.922761] ahci 0000:0f:00.0: vgaarb: pci_notify
[ 0.922781] ahci 0000:15:00.0: vgaarb: pci_notify
[ 0.922786] ahci 0000:15:00.0: runtime IRQ mapping not provided by arch
[ 0.922949] ahci 0000:15:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.922952] ahci 0000:15:00.0: 1/1 ports implemented (port mask 0x1)
[ 0.922954] ahci 0000:15:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
[ 0.923177] scsi host6: ahci
[ 0.923244] ata7: SATA max UDMA/133 abar m2048@0xfce01000 port 0xfce01100 irq 96 lpm-pol 3
[ 0.923253] ahci 0000:15:00.0: vgaarb: pci_notify
[ 0.923265] ahci 0000:15:00.1: vgaarb: pci_notify
[ 0.923270] ahci 0000:15:00.1: runtime IRQ mapping not provided by arch
[ 0.923424] ahci 0000:15:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.923428] ahci 0000:15:00.1: 1/1 ports implemented (port mask 0x1)
[ 0.923431] ahci 0000:15:00.1: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
[ 0.923620] scsi host7: ahci
[ 0.923680] ata8: SATA max UDMA/133 abar m2048@0xfce00000 port 0xfce00100 irq 98 lpm-pol 3
[ 0.923688] ahci 0000:15:00.1: vgaarb: pci_notify
[ 0.953392] r8169 0000:0b:00.0 eth1: RTL8168f/8111f, 00:e0:4c:68:01:a4, XID 480, IRQ 77
[ 0.953398] r8169 0000:0b:00.0 eth1: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 0.953405] r8169 0000:0b:00.0: vgaarb: pci_notify
[ 0.953419] r8169 0000:0c:00.0: vgaarb: pci_notify
[ 0.953423] r8169 0000:0c:00.0: runtime IRQ mapping not provided by arch
[ 0.953438] r8169 0000:0c:00.0: enabling device (0000 -> 0003)
[ 0.953500] r8169 0000:0c:00.0: enabling Mem-Wr-Inval
[ 0.967478] r8169 0000:0c:00.0 eth2: RTL8125B, a8:a1:59:7e:ee:5f, XID 641, IRQ 100
[ 0.967482] r8169 0000:0c:00.0 eth2: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 0.967488] r8169 0000:0c:00.0: vgaarb: pci_notify
[ 1.230422] ata1: SATA link down (SStatus 0 SControl 300)
[ 1.230453] ata2: SATA link down (SStatus 0 SControl 300)
[ 1.230495] ata3: SATA link down (SStatus 0 SControl 300)
[ 1.234485] ata8: SATA link down (SStatus 0 SControl 300)
[ 1.234487] ata7: SATA link down (SStatus 0 SControl 300)
[ 1.388221] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.391973] ata6.00: ATA-9: Apacer AS350 256GB, S0920A0, max UDMA/133
[ 1.394225] ata6.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 1.403570] ata6.00: configured for UDMA/133
[ 1.413731] scsi 5:0:0:0: Direct-Access ATA Apacer AS350 256 0A0 PQ: 0 ANSI: 5
[ 1.415826] r8169 0000:0c:00.0 ethlan: renamed from eth2
[ 1.415979] r8169 0000:0b:00.0 ethwlan: renamed from eth1
[ 1.416106] r8169 0000:0a:00.0 ethdsl: renamed from eth0
[ 1.416111] xhci_hcd 0000:0d:00.1: vgaarb: pci_notify
[ 1.416116] xhci_hcd 0000:0d:00.1: runtime IRQ mapping not provided by arch
[ 1.416259] xhci_hcd 0000:0d:00.1: enabling bus mastering
[ 1.416290] xhci_hcd 0000:0d:00.1: xHCI Host Controller
[ 1.416297] xhci_hcd 0000:0d:00.1: new USB bus registered, assigned bus number 1
[ 1.416456] xhci_hcd 0000:0d:00.1: hcc params 0x0278ffe5 hci version 0x110 quirks 0x0000000000000010
[ 1.416493] xhci_hcd 0000:0d:00.1: enabling Mem-Wr-Inval
[ 1.417142] xhci_hcd 0000:0d:00.1: xHCI Host Controller
[ 1.417146] xhci_hcd 0000:0d:00.1: new USB bus registered, assigned bus number 2
[ 1.417151] xhci_hcd 0000:0d:00.1: Host supports USB 3.1 Enhanced SuperSpeed
[ 1.417202] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[ 1.417206] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.417209] usb usb1: Product: xHCI Host Controller
[ 1.417211] usb usb1: Manufacturer: Linux 6.12.73-dirty xhci-hcd
[ 1.417213] usb usb1: SerialNumber: 0000:0d:00.1
[ 1.417469] hub 1-0:1.0: USB hub found
[ 1.417486] hub 1-0:1.0: 6 ports detected
[ 1.417806] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.417829] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[ 1.417831] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.417833] usb usb2: Product: xHCI Host Controller
[ 1.417835] usb usb2: Manufacturer: Linux 6.12.73-dirty xhci-hcd
[ 1.417836] usb usb2: SerialNumber: 0000:0d:00.1
[ 1.417961] hub 2-0:1.0: USB hub found
[ 1.417972] hub 2-0:1.0: 4 ports detected
[ 1.418170] xhci_hcd 0000:0d:00.1: vgaarb: pci_notify
[ 1.418178] xhci_hcd 0000:0d:00.3: vgaarb: pci_notify
[ 1.418181] xhci_hcd 0000:0d:00.3: runtime IRQ mapping not provided by arch
[ 1.418232] xhci_hcd 0000:0d:00.3: enabling bus mastering
[ 1.418236] xhci_hcd 0000:0d:00.3: xHCI Host Controller
[ 1.418241] xhci_hcd 0000:0d:00.3: new USB bus registered, assigned bus number 3
[ 1.418402] xhci_hcd 0000:0d:00.3: hcc params 0x0278ffe5 hci version 0x110 quirks 0x0000000000000010
[ 1.418409] xhci_hcd 0000:0d:00.3: enabling Mem-Wr-Inval
[ 1.418758] xhci_hcd 0000:0d:00.3: xHCI Host Controller
[ 1.418762] xhci_hcd 0000:0d:00.3: new USB bus registered, assigned bus number 4
[ 1.418765] xhci_hcd 0000:0d:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[ 1.418802] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[ 1.418805] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.418807] usb usb3: Product: xHCI Host Controller
[ 1.418808] usb usb3: Manufacturer: Linux 6.12.73-dirty xhci-hcd
[ 1.418809] usb usb3: SerialNumber: 0000:0d:00.3
[ 1.418926] hub 3-0:1.0: USB hub found
[ 1.418941] hub 3-0:1.0: 6 ports detected
[ 1.419209] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.419231] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[ 1.419233] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.419235] usb usb4: Product: xHCI Host Controller
[ 1.419236] usb usb4: Manufacturer: Linux 6.12.73-dirty xhci-hcd
[ 1.419238] usb usb4: SerialNumber: 0000:0d:00.3
[ 1.419334] hub 4-0:1.0: USB hub found
[ 1.419346] hub 4-0:1.0: 4 ports detected
[ 1.419403] usb: port power management may be unreliable
[ 1.419538] xhci_hcd 0000:0d:00.3: vgaarb: pci_notify
[ 1.419548] xhci_hcd 0000:14:00.3: vgaarb: pci_notify
[ 1.419552] xhci_hcd 0000:14:00.3: runtime IRQ mapping not provided by arch
[ 1.419602] xhci_hcd 0000:14:00.3: enabling bus mastering
[ 1.419605] xhci_hcd 0000:14:00.3: xHCI Host Controller
[ 1.419608] xhci_hcd 0000:14:00.3: new USB bus registered, assigned bus number 5
[ 1.419700] xhci_hcd 0000:14:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010
[ 1.419704] xhci_hcd 0000:14:00.3: enabling Mem-Wr-Inval
[ 1.419962] xhci_hcd 0000:14:00.3: xHCI Host Controller
[ 1.419966] xhci_hcd 0000:14:00.3: new USB bus registered, assigned bus number 6
[ 1.419968] xhci_hcd 0000:14:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[ 1.420000] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[ 1.420002] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.420004] usb usb5: Product: xHCI Host Controller
[ 1.420005] usb usb5: Manufacturer: Linux 6.12.73-dirty xhci-hcd
[ 1.420007] usb usb5: SerialNumber: 0000:14:00.3
[ 1.420103] hub 5-0:1.0: USB hub found
[ 1.420111] hub 5-0:1.0: 4 ports detected
[ 1.420278] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.420302] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[ 1.420304] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.420305] usb usb6: Product: xHCI Host Controller
[ 1.420307] usb usb6: Manufacturer: Linux 6.12.73-dirty xhci-hcd
[ 1.420308] usb usb6: SerialNumber: 0000:14:00.3
[ 1.420423] hub 6-0:1.0: USB hub found
[ 1.420434] hub 6-0:1.0: 2 ports detected
[ 1.420564] xhci_hcd 0000:14:00.3: vgaarb: pci_notify
[ 1.421204] sd 5:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 1.421214] sd 5:0:0:0: [sda] Write Protect is off
[ 1.421216] sd 5:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.421228] sd 5:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.421250] sd 5:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[ 1.424209] tsc: Refined TSC clocksource calibration: 3900.000 MHz
[ 1.424215] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x706eb6a54e6, max_idle_ns: 881591026581 ns
[ 1.424228] clocksource: Switched to clocksource tsc
[ 1.473640] sda: sda1
[ 1.473708] sd 5:0:0:0: [sda] Attached SCSI disk
[ 1.527475] md/raid1:md0: active with 2 out of 2 mirrors
[ 1.528650] md0: detected capacity change from 0 to 8000792576
[ 1.640214] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 1.640243] device-mapper: uevent: version 1.0.3
[ 1.640301] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@xxxxxxxxxxxxxxx
[ 1.668211] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[ 1.676226] usb 5-1: new high-speed USB device number 2 using xhci_hcd
[ 1.676285] usb 3-3: new full-speed USB device number 2 using xhci_hcd
[ 1.811302] usb 1-2: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=88.32
[ 1.811308] usb 1-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 1.811311] usb 1-2: Product: USB2.0 Hub
[ 1.821617] usb 5-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54
[ 1.821621] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.821623] usb 5-1: Product: USB2.1 Hub
[ 1.821625] usb 5-1: Manufacturer: GenesysLogic
[ 1.835803] usb 3-3: New USB device found, idVendor=26ce, idProduct=01a2, bcdDevice= 0.00
[ 1.835806] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.835808] usb 3-3: Product: LED Controller
[ 1.835810] usb 3-3: Manufacturer: ASRock
[ 1.835812] usb 3-3: SerialNumber: A02019100900
[ 1.851027] hid: raw HID events driver (C) Jiri Kosina
[ 1.852198] raid6: avx2x4 gen() 49324 MB/s
[ 1.860875] usbcore: registered new interface driver usbhid
[ 1.860878] usbhid: USB HID core driver
[ 1.862954] input: ASRock LED Controller as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/0000:02:08.0/0000:0d:00.3/usb3/3-3/3-3:1.0/0003:26CE:01A2.0001/input/input0
[ 1.865597] hub 1-2:1.0: USB hub found
[ 1.866177] hub 1-2:1.0: 4 ports detected
[ 1.868308] hub 5-1:1.0: USB hub found
[ 1.868866] hub 5-1:1.0: 4 ports detected
[ 1.916252] hid-generic 0003:26CE:01A2.0001: input,hidraw0: USB HID v1.10 Device [ASRock LED Controller] on usb-0000:0d:00.3-3/input0
[ 1.920198] raid6: avx2x2 gen() 51476 MB/s
[ 1.936324] usb 6-1: new SuperSpeed USB device number 2 using xhci_hcd
[ 1.955058] usb 6-1: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.54
[ 1.955062] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.955064] usb 6-1: Product: USB3.1 Hub
[ 1.955066] usb 6-1: Manufacturer: GenesysLogic
[ 1.960206] usb 3-4: new high-speed USB device number 3 using xhci_hcd
[ 1.980438] hub 6-1:1.0: USB hub found
[ 1.980731] hub 6-1:1.0: 4 ports detected
[ 1.988198] raid6: avx2x1 gen() 39224 MB/s
[ 1.988199] raid6: using algorithm avx2x2 gen() 51476 MB/s
[ 2.056197] raid6: .... xor() 43497 MB/s, rmw enabled
[ 2.056199] raid6: using avx2x2 recovery algorithm
[ 2.057384] xor: automatically using best checksumming function avx
[ 2.058144] async_tx: api initialized (async)
[ 2.110680] usb 3-4: New USB device found, idVendor=2109, idProduct=2813, bcdDevice= 2.21
[ 2.110684] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.110686] usb 3-4: Product: USB2.0 Hub
[ 2.110688] usb 3-4: Manufacturer: VIA Labs, Inc.
[ 2.159767] hub 3-4:1.0: USB hub found
[ 2.160417] hub 3-4:1.0: 4 ports detected
[ 2.176209] usb 5-1.3: new low-speed USB device number 3 using xhci_hcd
[ 2.195373] Btrfs loaded, zoned=yes, fsverity=yes
[ 2.296211] usb 3-5: new full-speed USB device number 4 using xhci_hcd
[ 2.305067] usb 5-1.3: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[ 2.305070] usb 5-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.305073] usb 5-1.3: Product: USB Optical Mouse
[ 2.305075] usb 5-1.3: Manufacturer: Logitech
[ 2.342166] EXT4-fs (dm-5): mounted filesystem d598cbfe-bf14-4621-96b3-5ce805eefc16 ro with ordered data mode. Quota mode: none.
[ 2.354204] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:08.1/0000:14:00.3/usb5/5-1/5-1.3/5-1.3:1.0/0003:046D:C077.0002/input/input1
[ 2.354288] hid-generic 0003:046D:C077.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:14:00.3-1.3/input0
[ 2.397481] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[ 2.431599] systemd[1]: Inserted module 'autofs4'
[ 2.439807] usb 3-5: New USB device found, idVendor=0557, idProduct=8021, bcdDevice= 1.00
[ 2.439812] usb 3-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.441462] systemd[1]: systemd 257.9-1~deb13u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
[ 2.441466] systemd[1]: Detected architecture x86-64.
[ 2.442883] systemd[1]: Hostname set to <obelix-trixie>.
[ 2.448209] usb 5-1.4: new low-speed USB device number 4 using xhci_hcd
[ 2.475858] hub 3-5:1.0: USB hub found
[ 2.477807] hub 3-5:1.0: 4 ports detected
[ 2.560206] usb 3-4.2: new low-speed USB device number 5 using xhci_hcd
[ 2.582067] usb 5-1.4: New USB device found, idVendor=046d, idProduct=c312, bcdDevice= 1.01
[ 2.582071] usb 5-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.582074] usb 5-1.4: Product: USB Multimedia Keyboard
[ 2.582076] usb 5-1.4: Manufacturer: LITEON Technology
[ 2.602218] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 2.643207] input: LITEON Technology USB Multimedia Keyboard as /devices/pci0000:00/0000:00:08.1/0000:14:00.3/usb5/5-1/5-1.4/5-1.4:1.0/0003:046D:C312.0003/input/input2
[ 2.713872] systemd[1]: Queued start job for default target graphical.target.
[ 2.720862] usb 3-4.2: New USB device found, idVendor=046a, idProduct=b091, bcdDevice= 1.00
[ 2.720867] usb 3-4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.720869] usb 3-4.2: Product: Cherry USB Optical Mouse
[ 2.720872] usb 3-4.2: Manufacturer: PixArt
[ 2.749485] systemd[1]: Created slice machine.slice - Virtual Machine and Container Slice.
[ 2.750239] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[ 2.750567] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 2.750890] systemd[1]: Created slice system-syncthing.slice - Slice /system/syncthing.
[ 2.751214] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 2.751537] systemd[1]: Created slice system-tor.slice - Slice /system/tor.
[ 2.751917] systemd[1]: Created slice system-xfs_scrub.slice - xfs_scrub background service slice.
[ 2.752155] systemd[1]: Created slice user.slice - User and Session Slice.
[ 2.752234] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[ 2.752278] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 2.752420] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 2.752437] systemd[1]: Expecting device dev-disk-by\x2duuid-06C0\x2d0A8B.device - /dev/disk/by-uuid/06C0-0A8B...
[ 2.752442] systemd[1]: Expecting device dev-mapper-vg00\x2dlvbackup.device - /dev/mapper/vg00-lvbackup...
[ 2.752447] systemd[1]: Expecting device dev-mapper-vg00\x2dlvdata.device - /dev/mapper/vg00-lvdata...
[ 2.752451] systemd[1]: Expecting device dev-mapper-vg00\x2dlvhome.device - /dev/mapper/vg00-lvhome...
[ 2.752456] systemd[1]: Expecting device dev-mapper-vg00\x2dlvnobackup.device - /dev/mapper/vg00-lvnobackup...
[ 2.752460] systemd[1]: Expecting device dev-mapper-vg00\x2dlvswap.device - /dev/mapper/vg00-lvswap...
[ 2.752469] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[ 2.752479] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 2.752500] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 2.752516] systemd[1]: Reached target slices.target - Slice Units.
[ 2.752536] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 2.752544] systemd[1]: Reached target virt-guest-shutdown.target - libvirt guests shutdown target.
[ 2.752604] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ 2.752663] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ 2.755791] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[ 2.755878] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 2.756379] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[ 2.756440] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 2.756504] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 2.756574] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[ 2.756607] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.756618] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.756675] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 2.756715] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 2.757518] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 2.758208] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 2.758271] systemd[1]: run-lock.mount: Directory /run/lock to mount over is not empty, mounting anyway.
[ 2.758859] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[ 2.759591] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 2.760262] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 2.760335] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[ 2.761057] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 2.761862] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 2.762643] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 2.763449] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 2.764097] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 2.764924] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 2.765704] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 2.765865] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[ 2.765924] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[ 2.767514] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 2.769148] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 2.769162] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.769959] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 2.770011] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.770841] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[ 2.771145] pstore: Using crash dump compression: deflate
[ 2.771638] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 2.771916] input: PixArt Cherry USB Optical Mouse as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/0000:02:08.0/0000:0d:00.3/usb3/3-4/3-4.2/3-4.2:1.0/0003:046A:B091.0004/input/input3
[ 2.771975] pstore: Registered efi_pstore as persistent store backend
[ 2.773776] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 2.773868] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 2.773946] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[ 2.774021] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 2.774093] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 2.774314] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 2.774806] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 2.775062] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 2.775200] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 2.775430] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 2.775567] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 2.775766] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 2.775895] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 2.776740] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 2.777461] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 2.778345] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 2.779596] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[ 2.780225] usb 3-5.1: new full-speed USB device number 6 using xhci_hcd
[ 2.782546] systemd-journald[603]: Collecting audit messages is disabled.
[ 2.782826] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 2.782937] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 2.783366] lp: driver loaded but no devices found
[ 2.786618] ppdev: user-space parallel port driver
[ 2.795067] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 2.796405] hid-generic 0003:046D:C312.0003: input,hidraw2: USB HID v1.10 Keyboard [LITEON Technology USB Multimedia Keyboard] on usb-0000:14:00.3-1.4/input0
[ 2.796419] hid-generic 0003:046A:B091.0004: input,hidraw3: USB HID v1.11 Mouse [PixArt Cherry USB Optical Mouse] on usb-0000:0d:00.3-4.2/input0
[ 2.801898] ACPI: bus type drm_connector registered
[ 2.802310] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 2.802566] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 2.802699] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 2.803546] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 2.813075] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[ 2.814510] EXT4-fs (dm-5): re-mounted d598cbfe-bf14-4621-96b3-5ce805eefc16 r/w.
[ 2.815281] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 2.815544] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 2.815582] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 2.816437] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 2.816475] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 2.817694] systemd[1]: Starting systemd-resolved.service - Network Name Resolution...
[ 2.818668] systemd[1]: Starting systemd-timesyncd.service - Network Time Synchronization...
[ 2.819276] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 2.819291] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.827137] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
[ 2.828464] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[ 2.829389] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[ 2.847407] systemd[1]: Started systemd-timesyncd.service - Network Time Synchronization.
[ 2.847564] systemd[1]: Reached target time-set.target - System Time Set.
[ 2.865051] systemd[1]: Started systemd-resolved.service - Network Name Resolution.
[ 2.865153] systemd[1]: Reached target nss-lookup.target - Host and Network Name Lookups.
[ 2.865583] systemd[1]: Finished lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[ 2.865672] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[ 2.890047] systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files.
[ 2.891255] systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
[ 2.892658] systemd[1]: Starting ifupdown-pre.service - Helper to synchronize boot up for ifupdown...
[ 2.903833] usb 3-5.1: New USB device found, idVendor=046a, idProduct=c122, bcdDevice= 1.25
[ 2.903839] usb 3-5.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.903842] usb 3-5.1: Product: CHERRY USB Keyboard
[ 2.903844] usb 3-5.1: Manufacturer: Cherry GmbH
[ 2.915104] systemd[1]: Condition check resulted in dev-tpmrm0.device - /dev/tpmrm0 being skipped.
[ 2.915145] systemd[1]: Reached target tpm2.target - Trusted Platform Module.
[ 2.918571] systemd[1]: Found device dev-mapper-vg00\x2dlvswap.device - /dev/mapper/vg00-lvswap.
[ 2.926363] systemd[1]: Found device dev-mapper-vg00\x2dlvhome.device - /dev/mapper/vg00-lvhome.
[ 2.928767] systemd[1]: Found device dev-mapper-vg00\x2dlvdata.device - /dev/mapper/vg00-lvdata.
[ 2.930861] systemd[1]: Found device dev-mapper-vg00\x2dlvbackup.device - /dev/mapper/vg00-lvbackup.
[ 2.934593] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
[ 2.934633] ACPI: button: Power Button [PWRB]
[ 2.934687] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[ 2.935440] ACPI: button: Power Button [PWRF]
[ 2.936011] systemd[1]: Found device dev-mapper-vg00\x2dlvnobackup.device - /dev/mapper/vg00-lvnobackup.
[ 2.950315] systemd[1]: Activating swap dev-mapper-vg00\x2dlvswap.swap - /dev/mapper/vg00-lvswap...
[ 2.950906] systemd[1]: Starting systemd-fsck@dev-mapper-vg00\x2dlvbackup.service - File System Check on /dev/mapper/vg00-lvbackup...
[ 2.951436] ACPI: video: Video Device [VGA1] (multi-head: yes rom: no post: no)
[ 2.951493] systemd[1]: Starting systemd-fsck@dev-mapper-vg00\x2dlvdata.service - File System Check on /dev/mapper/vg00-lvdata...
[ 2.951698] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:15/LNXVIDEO:01/input/input6
[ 2.952115] systemd[1]: Starting systemd-fsck@dev-mapper-vg00\x2dlvhome.service - File System Check on /dev/mapper/vg00-lvhome...
[ 2.952792] systemd[1]: Starting systemd-fsck@dev-mapper-vg00\x2dlvnobackup.service - File System Check on /dev/mapper/vg00-lvnobackup...
[ 2.956214] usb 3-4.3: new high-speed USB device number 7 using xhci_hcd
[ 2.976525] ccp 0000:14:00.2: vgaarb: pci_notify
[ 2.976814] ccp 0000:14:00.2: runtime IRQ mapping not provided by arch
[ 2.976821] ccp 0000:14:00.2: enabling device (0000 -> 0002)
[ 2.979111] k10temp 0000:00:18.3: vgaarb: pci_notify
[ 2.979252] k10temp 0000:00:18.3: runtime IRQ mapping not provided by arch
[ 2.979501] ccp 0000:14:00.2: enabling bus mastering
[ 2.979509] ccp 0000:14:00.2: ccp: unable to access the device: you might be running a broken BIOS.
[ 2.979578] k10temp 0000:00:18.3: vgaarb: pci_notify
[ 2.980651] ccp 0000:14:00.2: tee enabled
[ 2.980730] ccp 0000:14:00.2: psp enabled
[ 2.982697] input: PC Speaker as /devices/platform/pcspkr/input/input7
[ 2.982984] ee1004 0-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 2.985475] ccp 0000:14:00.2: vgaarb: pci_notify
[ 2.986524] ee1004 0-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 2.989906] Adding 67108860k swap on /dev/mapper/vg00-lvswap. Priority:-2 extents:1 across:67108860k SS
[ 3.001494] systemd[1]: Activated swap dev-mapper-vg00\x2dlvswap.swap - /dev/mapper/vg00-lvswap.
[ 3.002217] systemd[1]: Reached target swap.target - Swaps.
[ 3.007088] systemd[1]: Finished systemd-fsck@dev-mapper-vg00\x2dlvhome.service - File System Check on /dev/mapper/vg00-lvhome.
[ 3.008366] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[ 3.008369] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 3.024755] input: Cherry GmbH CHERRY USB Keyboard as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/0000:02:08.0/0000:0d:00.3/usb3/3-5/3-5.1/3-5.1:1.0/0003:046A:C122.0005/input/input8
[ 3.026864] systemd[1]: Started mdmonitor.service - MD array monitor.
[ 3.029188] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 3.029230] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[ 3.030863] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[ 3.030937] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 3.030967] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.031016] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 3.031037] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.031047] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.031497] systemd[1]: Finished systemd-fsck@dev-mapper-vg00\x2dlvbackup.service - File System Check on /dev/mapper/vg00-lvbackup.
[ 3.032129] systemd[1]: Finished systemd-fsck@dev-mapper-vg00\x2dlvdata.service - File System Check on /dev/mapper/vg00-lvdata.
[ 3.032476] systemd[1]: Finished systemd-fsck@dev-mapper-vg00\x2dlvnobackup.service - File System Check on /dev/mapper/vg00-lvnobackup.
[ 3.034387] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 3.034582] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 3.034698] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 3.053920] snd_hda_intel 0000:06:00.1: vgaarb: pci_notify
[ 3.053927] snd_hda_intel 0000:06:00.1: runtime IRQ mapping not provided by arch
[ 3.054317] snd_hda_intel 0000:06:00.1: enabling device (0000 -> 0002)
[ 3.054583] snd_hda_intel 0000:06:00.1: Force to non-snoop mode
[ 3.054970] snd_hda_intel 0000:06:00.1: enabling bus mastering
[ 3.055137] snd_hda_intel 0000:06:00.1: vgaarb: pci_notify
[ 3.055155] snd_hda_intel 0000:14:00.1: vgaarb: pci_notify
[ 3.055158] snd_hda_intel 0000:14:00.1: runtime IRQ mapping not provided by arch
[ 3.055192] snd_hda_intel 0000:14:00.1: enabling device (0000 -> 0002)
[ 3.055259] snd_hda_intel 0000:14:00.1: vgaarb: pci_notify
[ 3.055269] snd_hda_intel 0000:14:00.6: vgaarb: pci_notify
[ 3.055273] snd_hda_intel 0000:14:00.6: runtime IRQ mapping not provided by arch
[ 3.055279] snd_hda_intel 0000:14:00.6: enabling device (0000 -> 0002)
[ 3.055304] snd_hda_intel 0000:14:00.6: vgaarb: pci_notify
[ 3.055854] snd_hda_intel 0000:14:00.1: enabling bus mastering
[ 3.055965] snd_hda_intel 0000:14:00.6: enabling bus mastering
[ 3.089709] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/0000:02:01.0/0000:04:00.0/0000:05:00.0/0000:06:00.1/sound/card0/input9
[ 3.089823] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:14:00.1/sound/card1/input11
[ 3.098276] kvm_amd: TSC scaling supported
[ 3.098279] kvm_amd: Nested Virtualization enabled
[ 3.098280] kvm_amd: Nested Paging enabled
[ 3.098282] kvm_amd: LBR virtualization supported
[ 3.098286] kvm_amd: Virtual VMLOAD VMSAVE supported
[ 3.098287] kvm_amd: Virtual GIF supported
[ 3.101223] snd_hda_codec_realtek hdaudioC2D0: autoconfig for ALC897: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[ 3.101228] snd_hda_codec_realtek hdaudioC2D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 3.101232] snd_hda_codec_realtek hdaudioC2D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 3.101234] snd_hda_codec_realtek hdaudioC2D0: mono: mono_out=0x0
[ 3.101235] snd_hda_codec_realtek hdaudioC2D0: dig-out=0x1e/0x0
[ 3.101237] snd_hda_codec_realtek hdaudioC2D0: inputs:
[ 3.101238] snd_hda_codec_realtek hdaudioC2D0: Rear Mic=0x18
[ 3.101241] snd_hda_codec_realtek hdaudioC2D0: Front Mic=0x19
[ 3.101243] snd_hda_codec_realtek hdaudioC2D0: Line=0x1a
[ 3.107843] intel_rapl_common: Found RAPL domain package
[ 3.107846] intel_rapl_common: Found RAPL domain core
[ 3.109327] amd_atl: AMD Address Translation Library initialized
[ 3.123182] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:14:00.6/sound/card2/input15
[ 3.125416] usb 3-4.3: New USB device found, idVendor=1bcf, idProduct=0217, bcdDevice=34.13
[ 3.125420] usb 3-4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.125422] usb 3-4.3: Product: 4K AutoFocus Webcam
[ 3.125424] usb 3-4.3: Manufacturer: 4K AutoFocus Webcam
[ 3.224312] hid-generic 0003:046A:C122.0005: input,hidraw4: USB HID v1.11 Keyboard [Cherry GmbH CHERRY USB Keyboard] on usb-0000:0d:00.3-5.1/input0
[ 3.228295] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/0000:02:01.0/0000:04:00.0/0000:05:00.0/0000:06:00.1/sound/card0/input10
[ 3.228413] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:14:00.1/sound/card1/input12
[ 3.228531] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:14:00.6/sound/card2/input16
[ 3.228594] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.1/0000:14:00.1/sound/card1/input13
[ 3.228710] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:14:00.6/sound/card2/input17
[ 3.228840] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:08.1/0000:14:00.1/sound/card1/input14
[ 3.228975] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:14:00.6/sound/card2/input18
[ 3.229111] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:14:00.6/sound/card2/input19
[ 3.230448] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:14:00.6/sound/card2/input20
[ 3.231929] input: Cherry GmbH CHERRY USB Keyboard System Control as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/0000:02:08.0/0000:0d:00.3/usb3/3-5/3-5.1/3-5.1:1.1/0003:046A:C122.0006/input/input22
[ 3.232041] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:14:00.6/sound/card2/input21
[ 3.234443] systemd[1]: Started systemd-journald.service - Journal Service.
[ 3.272225] usb 3-4.4: new full-speed USB device number 8 using xhci_hcd
[ 3.276044] systemd-journald[603]: Received client request to flush runtime journal.
[ 3.284364] input: Cherry GmbH CHERRY USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/0000:02:08.0/0000:0d:00.3/usb3/3-5/3-5.1/3-5.1:1.1/0003:046A:C122.0006/input/input23
[ 3.284453] hid-generic 0003:046A:C122.0006: input,hidraw5: USB HID v1.11 Device [Cherry GmbH CHERRY USB Keyboard] on usb-0000:0d:00.3-5.1/input1
[ 3.388798] usb 3-4.4: New USB device found, idVendor=0d8c, idProduct=0014, bcdDevice= 1.00
[ 3.388804] usb 3-4.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.388807] usb 3-4.4: Product: USB Audio Device
[ 3.388809] usb 3-4.4: Manufacturer: C-Media Electronics Inc.
[ 3.440920] input: C-Media Electronics Inc. USB Audio Device as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/0000:02:08.0/0000:0d:00.3/usb3/3-4/3-4.4/3-4.4:1.3/0003:0D8C:0014.0007/input/input24
[ 3.496316] hid-generic 0003:0D8C:0014.0007: input,hidraw6: USB HID v1.00 Device [C-Media Electronics Inc. USB Audio Device] on usb-0000:0d:00.3-4.4/input3
[ 3.864969] EXT4-fs (dm-2): mounted filesystem a4a89505-36bf-41cd-a972-f57db83e14d8 r/w with ordered data mode. Quota mode: none.
[ 3.865872] EXT4-fs (dm-0): mounted filesystem 30dd4edd-20d1-4d6d-9865-b3f272b27dc3 r/w with ordered data mode. Quota mode: none.
[ 3.868601] EXT4-fs (dm-3): mounted filesystem c6f8751e-1b7d-4a64-836e-f15c0021ce4c r/w with ordered data mode. Quota mode: none.
[ 3.873771] EXT4-fs (dm-1): mounted filesystem cfe0400f-34ba-4e22-bcdf-d900a33dda08 r/w with ordered data mode. Quota mode: none.
[ 4.726547] mc: Linux media interface: v0.10
[ 4.726609] sd 5:0:0:0: Attached scsi generic sg0 type 0
[ 4.732764] [drm] amdgpu kernel modesetting enabled.
[ 4.732862] amdgpu: Virtual CRAT table created for CPU
[ 4.732885] amdgpu: Topology: Add CPU node
[ 4.732956] amdgpu 0000:06:00.0: vgaarb: pci_notify
[ 4.732962] amdgpu 0000:06:00.0: runtime IRQ mapping not provided by arch
[ 4.733046] amdgpu 0000:06:00.0: enabling device (0006 -> 0007)
[ 4.733121] [drm] initializing kernel modesetting (BEIGE_GOBY 0x1002:0x743F 0x1DA2:0xE458 0xC7).
[ 4.733134] [drm] register mmio base: 0xFBB00000
[ 4.733136] [drm] register mmio size: 1048576
[ 4.739333] [drm] add ip block number 0 <nv_common>
[ 4.739336] [drm] add ip block number 1 <gmc_v10_0>
[ 4.739338] [drm] add ip block number 2 <navi10_ih>
[ 4.739339] [drm] add ip block number 3 <psp>
[ 4.739341] [drm] add ip block number 4 <smu>
[ 4.739343] [drm] add ip block number 5 <dm>
[ 4.739345] [drm] add ip block number 6 <gfx_v10_0>
[ 4.739347] [drm] add ip block number 7 <sdma_v5_2>
[ 4.739349] [drm] add ip block number 8 <vcn_v3_0>
[ 4.739373] amdgpu 0000:06:00.0: amdgpu: Fetched VBIOS from VFCT
[ 4.739377] amdgpu: ATOM BIOS: 113-D63401-US4
[ 4.746379] WARNING! power/level is deprecated; use power/control instead
[ 4.748613] Console: switching to colour dummy device 80x25
[ 4.748656] amdgpu 0000:06:00.0: vgaarb: deactivate vga console
[ 4.748659] amdgpu 0000:06:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[ 4.748680] amdgpu 0000:06:00.0: amdgpu: PCIE atomic ops is not supported
[ 4.748727] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 4.748741] amdgpu 0000:06:00.0: amdgpu: VRAM: 4080M 0x0000008000000000 - 0x00000080FEFFFFFF (4080M used)
[ 4.748744] amdgpu 0000:06:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[ 4.748767] [drm] Detected VRAM RAM=4080M, BAR=4096M
[ 4.748769] [drm] RAM width 64bits GDDR6
[ 4.748884] [drm] amdgpu: 4080M of VRAM memory ready
[ 4.748887] [drm] amdgpu: 31802M of GTT memory ready.
[ 4.748901] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 4.749100] [drm] PCIE GART of 512M enabled (table at 0x00000080FEB00000).
[ 4.749378] RPC: Registered named UNIX socket transport module.
[ 4.749381] RPC: Registered udp transport module.
[ 4.749382] RPC: Registered tcp transport module.
[ 4.749384] RPC: Registered tcp-with-tls transport module.
[ 4.749385] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 4.752544] ddbridge: Digital Devices PCIE bridge driver 0.9.33-integrated, Copyright (C) 2010-17 Digital Devices GmbH
[ 4.761654] videodev: Linux video capture interface: v2.00
[ 4.797009] cmedia_hs100b 0003:0D8C:0014.0007: Fixing CMedia HS-100B report descriptor
[ 4.797125] input: C-Media Electronics Inc. USB Audio Device as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/0000:02:08.0/0000:0d:00.3/usb3/3-4/3-4.4/3-4.4:1.3/0003:0D8C:0014.0007/input/input25
[ 4.852304] cmedia_hs100b 0003:0D8C:0014.0007: input,hidraw6: USB HID v1.00 Device [C-Media Electronics Inc. USB Audio Device] on usb-0000:0d:00.3-4.4/input3
[ 4.936516] audit: type=1400 audit(1775295812.942:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=978 comm="apparmor_parser"
[ 4.936544] audit: type=1400 audit(1775295812.942:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=977 comm="apparmor_parser"
[ 4.936573] audit: type=1400 audit(1775295812.942:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=971 comm="apparmor_parser"
[ 4.936604] audit: type=1400 audit(1775295812.942:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=974 comm="apparmor_parser"
[ 4.936641] audit: type=1400 audit(1775295812.942:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=967 comm="apparmor_parser"
[ 4.936675] audit: type=1400 audit(1775295812.942:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=966 comm="apparmor_parser"
[ 4.936709] audit: type=1400 audit(1775295812.942:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=969 comm="apparmor_parser"
[ 4.936738] audit: type=1400 audit(1775295812.942:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-run" pid=979 comm="apparmor_parser"
[ 4.936771] audit: type=1400 audit(1775295812.942:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=973 comm="apparmor_parser"
[ 4.999700] r8169 0000:0a:00.0: Direct firmware load for rtl_nic/rtl8168e-3.fw failed with error -2
[ 4.999707] r8169 0000:0a:00.0: Unable to load firmware rtl_nic/rtl8168e-3.fw (-2)
[ 5.000128] RTL8211E Gigabit Ethernet r8169-0-a00:00: attached PHY driver (mii_bus:phy_addr=r8169-0-a00:00, irq=MAC)
[ 5.000134] r8169 0000:0a:00.0: enabling bus mastering
[ 5.026326] nvme nvme0: using unchecked data buffer
[ 5.067101] r8169 0000:0a:00.0 ethdsl: Link is Down
[ 5.193240] NET: Registered PF_QIPCRTR protocol family
[ 5.570554] block nvme0n1: No UUID available providing old NGUID
[ 5.782613] usb 3-4.3: 3:1: cannot get freq at ep 0x86
[ 6.838351] usb 3-4.3: 3:2: cannot get freq at ep 0x86
[ 7.851666] amdgpu 0000:06:00.0: amdgpu: STB initialized to 2048 entries
[ 7.851742] [drm] Loading DMUB firmware via PSP: version=0x02020020
[ 7.852175] [drm] use_doorbell being set to: [true]
[ 7.852194] [drm] Found VCN firmware Version ENC: 1.33 DEC: 4 VEP: 0 Revision: 6
[ 7.894359] usb 3-4.3: 3:3: cannot get freq at ep 0x86
[ 7.920141] amdgpu 0000:06:00.0: amdgpu: reserve 0xa00000 from 0x80fd000000 for PSP TMR
[ 8.023827] amdgpu 0000:06:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 8.039334] amdgpu 0000:06:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 8.039365] amdgpu 0000:06:00.0: amdgpu: smu driver if version = 0x0000000d, smu fw if version = 0x00000010, smu fw program = 0, version = 0x00492400 (73.36.0)
[ 8.039369] amdgpu 0000:06:00.0: amdgpu: SMU driver if version not matched
[ 8.039415] amdgpu 0000:06:00.0: amdgpu: use vbios provided pptable
[ 8.081399] amdgpu 0000:06:00.0: amdgpu: SMU is initialized successfully!
[ 8.081776] [drm] Display Core v3.2.301 initialized on DCN 3.0.3
[ 8.081778] [drm] DP-HDMI FRL PCON supported
[ 8.082863] [drm] DMUB hardware initialized: version=0x02020020
[ 8.086972] snd_hda_intel 0000:06:00.1: bound 0000:06:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 8.123748] [drm] kiq ring mec 2 pipe 1 q 0
[ 8.129239] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 8.129256] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 8.129406] amdgpu: Virtual CRAT table created for GPU
[ 8.129547] amdgpu: Topology: Add dGPU node [0x743f:0x1002]
[ 8.129549] kfd kfd: amdgpu: added device 1002:743f
[ 8.129575] amdgpu 0000:06:00.0: amdgpu: SE 1, SH per SE 2, CU per SH 8, active_cu_number 12
[ 8.129578] amdgpu 0000:06:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 8.129580] amdgpu 0000:06:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
[ 8.129582] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
[ 8.129583] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
[ 8.129585] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[ 8.129586] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[ 8.129588] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[ 8.129589] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[ 8.129590] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[ 8.129592] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[ 8.129593] amdgpu 0000:06:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
[ 8.129595] amdgpu 0000:06:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
[ 8.129597] amdgpu 0000:06:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
[ 8.130808] amdgpu 0000:06:00.0: save config 0x00: 0x743f1002
[ 8.130812] amdgpu 0000:06:00.0: save config 0x04: 0x00100407
[ 8.130815] amdgpu 0000:06:00.0: save config 0x08: 0x030000c7
[ 8.130818] amdgpu 0000:06:00.0: save config 0x0c: 0x00800010
[ 8.130822] amdgpu 0000:06:00.0: save config 0x10: 0x0000000c
[ 8.130825] amdgpu 0000:06:00.0: save config 0x14: 0x0000007d
[ 8.130828] amdgpu 0000:06:00.0: save config 0x18: 0x0000000c
[ 8.130831] amdgpu 0000:06:00.0: save config 0x1c: 0x0000007e
[ 8.130834] amdgpu 0000:06:00.0: save config 0x20: 0x0000d001
[ 8.130838] amdgpu 0000:06:00.0: save config 0x24: 0xfbb00000
[ 8.130841] amdgpu 0000:06:00.0: save config 0x28: 0x00000000
[ 8.130844] amdgpu 0000:06:00.0: save config 0x2c: 0xe4581da2
[ 8.130847] amdgpu 0000:06:00.0: save config 0x30: 0xfbc00000
[ 8.130850] amdgpu 0000:06:00.0: save config 0x34: 0x00000048
[ 8.130854] amdgpu 0000:06:00.0: save config 0x38: 0x00000000
[ 8.130857] amdgpu 0000:06:00.0: save config 0x3c: 0x000001ff
[ 8.131059] amdgpu 0000:06:00.0: restore config 0x1c: 0x00000000 -> 0x0000007e
[ 8.131068] amdgpu 0000:06:00.0: restore config 0x14: 0x00000000 -> 0x0000007d
[ 8.131145] amdgpu 0000:06:00.0: amdgpu: Using BACO for runtime pm
[ 8.131436] [drm] Initialized amdgpu 3.61.0 for 0000:06:00.0 on minor 0
[ 8.136448] fbcon: amdgpudrmfb (fb0) is primary device
[ 8.136592] [drm] pre_validate_dsc:1629 MST_DSC dsc precompute is not needed
[ 8.171776] Console: switching to colour frame buffer device 240x67
[ 8.189717] amdgpu 0000:06:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 8.212481] amdgpu 0000:06:00.0: vgaarb: pci_notify
[ 8.212513] amdgpu 0000:14:00.0: vgaarb: pci_notify
[ 8.212518] amdgpu 0000:14:00.0: runtime IRQ mapping not provided by arch
[ 8.212572] amdgpu 0000:14:00.0: enabling device (0006 -> 0007)
[ 8.212652] [drm] initializing kernel modesetting (RENOIR 0x1002:0x1638 0x1002:0x1636 0xC9).
[ 8.212677] [drm] register mmio base: 0xFCA00000
[ 8.212678] [drm] register mmio size: 524288
[ 8.215534] [drm] add ip block number 0 <soc15_common>
[ 8.215535] [drm] add ip block number 1 <gmc_v9_0>
[ 8.215536] [drm] add ip block number 2 <vega10_ih>
[ 8.215537] [drm] add ip block number 3 <psp>
[ 8.215538] [drm] add ip block number 4 <smu>
[ 8.215539] [drm] add ip block number 5 <dm>
[ 8.215540] [drm] add ip block number 6 <gfx_v9_0>
[ 8.215541] [drm] add ip block number 7 <sdma_v4_0>
[ 8.215542] [drm] add ip block number 8 <vcn_v2_0>
[ 8.215543] [drm] add ip block number 9 <jpeg_v2_0>
[ 8.215551] amdgpu 0000:14:00.0: amdgpu: Fetched VBIOS from VFCT
[ 8.215553] amdgpu: ATOM BIOS: 13-CEZANNE-019
[ 8.226035] amdgpu 0000:14:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[ 8.226040] amdgpu 0000:14:00.0: amdgpu: MODE2 reset
[ 8.226102] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 8.226109] amdgpu 0000:14:00.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
[ 8.226111] amdgpu 0000:14:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[ 8.226125] [drm] Detected VRAM RAM=512M, BAR=512M
[ 8.226127] [drm] RAM width 128bits DDR4
[ 8.226204] [drm] amdgpu: 512M of VRAM memory ready
[ 8.226206] [drm] amdgpu: 31802M of GTT memory ready.
[ 8.226223] [drm] GART: num cpu pages 262144, num gpu pages 262144
[ 8.226303] [drm] PCIE GART of 1024M enabled.
[ 8.226305] [drm] PTB located at 0x000000F41FC00000
[ 8.226716] [drm] Loading DMUB firmware via PSP: version=0x0101002B
[ 8.227093] [drm] Found VCN firmware Version ENC: 1.24 DEC: 8 VEP: 0 Revision: 3
[ 8.933665] amdgpu 0000:14:00.0: amdgpu: reserve 0x400000 from 0xf41f800000 for PSP TMR
[ 9.017528] amdgpu 0000:14:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 9.028129] amdgpu 0000:14:00.0: amdgpu: RAP: optional rap ta ucode is not available
[ 9.028133] amdgpu 0000:14:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 9.028832] amdgpu 0000:14:00.0: amdgpu: SMU is initialized successfully!
[ 9.029997] [drm] Display Core v3.2.301 initialized on DCN 2.1
[ 9.029999] [drm] DP-HDMI FRL PCON supported
[ 9.030522] [drm] DMUB hardware initialized: version=0x0101002B
[ 9.064052] snd_hda_intel 0000:14:00.1: bound 0000:14:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 9.096025] [drm] kiq ring mec 2 pipe 1 q 0
[ 9.100297] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 9.100314] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 9.100401] amdgpu: Virtual CRAT table created for GPU
[ 9.100727] amdgpu: Topology: Add dGPU node [0x1638:0x1002]
[ 9.100729] kfd kfd: amdgpu: added device 1002:1638
[ 9.100800] amdgpu 0000:14:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 8, active_cu_number 7
[ 9.100803] amdgpu 0000:14:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[ 9.100805] amdgpu 0000:14:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 9.100807] amdgpu 0000:14:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 9.100808] amdgpu 0000:14:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[ 9.100810] amdgpu 0000:14:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[ 9.100811] amdgpu 0000:14:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[ 9.100812] amdgpu 0000:14:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[ 9.100814] amdgpu 0000:14:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[ 9.100815] amdgpu 0000:14:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[ 9.100817] amdgpu 0000:14:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
[ 9.100818] amdgpu 0000:14:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 8
[ 9.100820] amdgpu 0000:14:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 8
[ 9.100821] amdgpu 0000:14:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 8
[ 9.100822] amdgpu 0000:14:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 8
[ 9.100824] amdgpu 0000:14:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 8
[ 9.101719] amdgpu 0000:14:00.0: save config 0x00: 0x16381002
[ 9.101721] amdgpu 0000:14:00.0: save config 0x04: 0x08100407
[ 9.101723] amdgpu 0000:14:00.0: save config 0x08: 0x030000c9
[ 9.101725] amdgpu 0000:14:00.0: save config 0x0c: 0x00800010
[ 9.101727] amdgpu 0000:14:00.0: save config 0x10: 0x2000000c
[ 9.101729] amdgpu 0000:14:00.0: save config 0x14: 0x0000007e
[ 9.101731] amdgpu 0000:14:00.0: save config 0x18: 0x3000000c
[ 9.101733] amdgpu 0000:14:00.0: save config 0x1c: 0x0000007e
[ 9.101735] amdgpu 0000:14:00.0: save config 0x20: 0x0000e001
[ 9.101736] amdgpu 0000:14:00.0: save config 0x24: 0xfca00000
[ 9.101738] amdgpu 0000:14:00.0: save config 0x28: 0x00000000
[ 9.101740] amdgpu 0000:14:00.0: save config 0x2c: 0x16361002
[ 9.101742] amdgpu 0000:14:00.0: save config 0x30: 0x00000000
[ 9.101744] amdgpu 0000:14:00.0: save config 0x34: 0x00000048
[ 9.101746] amdgpu 0000:14:00.0: save config 0x38: 0x00000000
[ 9.101747] amdgpu 0000:14:00.0: save config 0x3c: 0x000001ff
[ 9.101796] amdgpu 0000:14:00.0: amdgpu: Runtime PM not available
[ 9.102165] [drm] Initialized amdgpu 3.61.0 for 0000:14:00.0 on minor 1
[ 9.107800] amdgpu 0000:14:00.0: [drm] fb1: amdgpudrmfb frame buffer device
[ 9.107946] amdgpu 0000:14:00.0: vgaarb: pci_notify
[ 10.462422] r8169 0000:0a:00.0 ethdsl: Link is Up - 100Mbps/Full - flow control rx/tx
[ 10.974674] usb 3-4.3: Found UVC 1.00 device 4K AutoFocus Webcam (1bcf:0217)
[ 11.058893] usbcore: registered new interface driver uvcvideo
[ 11.285973] usbcore: registered new interface driver snd-usb-audio
[ 11.434044] r8169 0000:0c:00.0: Direct firmware load for rtl_nic/rtl8125b-2.fw failed with error -2
[ 11.434051] r8169 0000:0c:00.0: Unable to load firmware rtl_nic/rtl8125b-2.fw (-2)
[ 11.460219] Realtek Internal NBASE-T PHY r8169-0-c00:00: attached PHY driver (mii_bus:phy_addr=r8169-0-c00:00, irq=MAC)
[ 11.460227] r8169 0000:0c:00.0: enabling bus mastering
[ 11.556607] r8169 0000:0c:00.0 ethlan: Link is Down
[ 11.598741] 8021q: 802.1Q VLAN Support v1.8
[ 11.630153] r8169 0000:0b:00.0: Direct firmware load for rtl_nic/rtl8168f-1.fw failed with error -2
[ 11.630159] r8169 0000:0b:00.0: Unable to load firmware rtl_nic/rtl8168f-1.fw (-2)
[ 11.630594] RTL8211E Gigabit Ethernet r8169-0-b00:00: attached PHY driver (mii_bus:phy_addr=r8169-0-b00:00, irq=MAC)
[ 11.630602] r8169 0000:0b:00.0: enabling bus mastering
[ 11.698963] r8169 0000:0b:00.0 ethwlan: Link is Down
[ 11.866476] brlan: port 1(ethlan) entered blocking state
[ 11.866481] brlan: port 1(ethlan) entered disabled state
[ 11.866488] r8169 0000:0c:00.0 ethlan: entered allmulticast mode
[ 11.866593] r8169 0000:0c:00.0 ethlan: entered promiscuous mode
[ 11.869197] brlan: port 2(ethwlan.11) entered blocking state
[ 11.869201] brlan: port 2(ethwlan.11) entered disabled state
[ 11.869213] ethwlan.11: entered allmulticast mode
[ 11.869215] r8169 0000:0b:00.0 ethwlan: entered allmulticast mode
[ 11.869332] ethwlan.11: entered promiscuous mode
[ 11.869335] r8169 0000:0b:00.0 ethwlan: entered promiscuous mode
[ 14.052014] brkvm: port 1(ethlan.100) entered blocking state
[ 14.052019] brkvm: port 1(ethlan.100) entered disabled state
[ 14.052025] ethlan.100: entered allmulticast mode
[ 14.052115] ethlan.100: entered promiscuous mode
[ 14.206966] r8169 0000:0c:00.0 ethlan: Link is Up - 1Gbps/Full - flow control rx/tx
[ 14.207006] brlan: port 1(ethlan) entered blocking state
[ 14.207011] brlan: port 1(ethlan) entered forwarding state
[ 14.207121] brkvm: port 1(ethlan.100) entered blocking state
[ 14.207125] brkvm: port 1(ethlan.100) entered forwarding state
[ 14.266625] r8169 0000:0b:00.0 ethwlan: Link is Up - 1Gbps/Full - flow control rx/tx
[ 14.266693] brlan: port 2(ethwlan.11) entered blocking state
[ 14.266697] brlan: port 2(ethwlan.11) entered forwarding state
[ 14.464217] kauditd_printk_skb: 124 callbacks suppressed
[ 14.464220] audit: type=1400 audit(1775295822.470:135): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/cupsd" name="/etc/paperspecs" pid=2189 comm="cupsd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 14.556456] audit: type=1400 audit(1775295822.562:136): apparmor="ALLOWED" operation="capable" class="cap" profile="Xorg" pid=2301 comm="Xorg" capability=12 capname="net_admin"
[ 14.568299] audit: type=1400 audit(1775295822.574:137): apparmor="ALLOWED" operation="capable" class="cap" profile="Xorg" pid=2297 comm="Xorg" capability=12 capname="net_admin"
[ 14.569841] audit: type=1400 audit(1775295822.574:138): apparmor="ALLOWED" operation="open" class="file" profile="Xorg" name="/run/udev/tags/seat-bianca/" pid=2297 comm="Xorg" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 14.630844] audit: type=1400 audit(1775295822.634:139): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=2189 comm="cupsd" capability=12 capname="net_admin"
[ 14.688540] r8169 0000:0a:00.0: invalid VPD tag 0x00 (size 0) at offset 0; assume missing optional EEPROM
[ 14.699314] r8169 0000:0b:00.0: invalid VPD tag 0x00 (size 0) at offset 0; assume missing optional EEPROM
[ 14.719318] r8169 0000:0c:00.0: invalid VPD tag 0x00 (size 0) at offset 0; assume missing optional EEPROM
[ 14.922522] vgaarb: vga_arb_open
[ 14.922540] vgaarb: client 0x00000000e6c5407f called 'target'
[ 14.922556] vgaarb: PCI:0000:06:00.0 ==> 0000:06:00.0 pdev 000000008672f633
[ 14.922559] vgaarb: vgadev 00000000accbc3a3
[ 14.922564] vgaarb: client 0x00000000e6c5407f called 'lock'
[ 14.922568] amdgpu 0000:06:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
[ 14.922571] amdgpu 0000:06:00.0: vgaarb: decoding count now is: 2
[ 14.922573] amdgpu 0000:14:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
[ 14.922575] amdgpu 0000:14:00.0: vgaarb: decoding count now is: 1
[ 14.922577] amdgpu 0000:06:00.0: vgaarb: __vga_tryget: 3
[ 14.922579] amdgpu 0000:06:00.0: vgaarb: __vga_tryget: owns: 0
[ 14.923253] vgaarb: vga_arb_open
[ 14.923268] vgaarb: client 0x000000007d7016da called 'target'
[ 14.923282] vgaarb: PCI:0000:06:00.0 ==> 0000:06:00.0 pdev 000000008672f633
[ 14.923285] vgaarb: vgadev 00000000accbc3a3
[ 15.051999] vgaarb: client 0x00000000e6c5407f called 'unlock'
[ 15.052005] amdgpu 0000:06:00.0: vgaarb: __vga_put
[ 15.052254] vgaarb: client 0x00000000e6c5407f called 'target'
[ 15.052267] vgaarb: PCI:0000:06:00.0 ==> 0000:06:00.0 pdev 000000008672f633
[ 15.052270] vgaarb: vgadev 00000000accbc3a3
[ 15.060076] vgaarb: client 0x000000007d7016da called 'target'
[ 15.060088] vgaarb: PCI:0000:06:00.0 ==> 0000:06:00.0 pdev 000000008672f633
[ 15.060090] vgaarb: vgadev 00000000accbc3a3
[ 15.090775] audit: type=1400 audit(1775295823.094:140): apparmor="ALLOWED" operation="capable" class="cap" profile="Xorg" pid=2297 comm="Xorg" capability=12 capname="net_admin"
[ 15.113830] audit: type=1400 audit(1775295823.118:141): apparmor="ALLOWED" operation="capable" class="cap" profile="Xorg" pid=2301 comm="Xorg" capability=12 capname="net_admin"
[ 15.131765] audit: type=1400 audit(1775295823.134:142): apparmor="ALLOWED" operation="open" class="file" profile="Xorg" name="/run/udev/tags/seat-bianca/" pid=2297 comm="Xorg" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 15.234977] snd_hda_intel 0000:14:00.6: save config 0x00: 0x15e31022
[ 15.234983] snd_hda_intel 0000:14:00.6: save config 0x04: 0x00100406
[ 15.234986] snd_hda_intel 0000:14:00.6: save config 0x08: 0x04030000
[ 15.234988] snd_hda_intel 0000:14:00.6: save config 0x0c: 0x00800010
[ 15.234991] snd_hda_intel 0000:14:00.6: save config 0x10: 0xfca80000
[ 15.234993] snd_hda_intel 0000:14:00.6: save config 0x14: 0x00000000
[ 15.234996] snd_hda_intel 0000:14:00.6: save config 0x18: 0x00000000
[ 15.234998] snd_hda_intel 0000:14:00.6: save config 0x1c: 0x00000000
[ 15.235000] snd_hda_intel 0000:14:00.6: save config 0x20: 0x00000000
[ 15.235002] snd_hda_intel 0000:14:00.6: save config 0x24: 0x00000000
[ 15.235005] snd_hda_intel 0000:14:00.6: save config 0x28: 0x00000000
[ 15.235007] snd_hda_intel 0000:14:00.6: save config 0x2c: 0x28971849
[ 15.235009] snd_hda_intel 0000:14:00.6: save config 0x30: 0x00000000
[ 15.235012] snd_hda_intel 0000:14:00.6: save config 0x34: 0x00000048
[ 15.235014] snd_hda_intel 0000:14:00.6: save config 0x38: 0x00000000
[ 15.235016] snd_hda_intel 0000:14:00.6: save config 0x3c: 0x000003ff
[ 15.235032] snd_hda_intel 0000:14:00.6: PME# enabled
[ 15.247062] snd_hda_intel 0000:14:00.6: ACPI _REG disconnect evaluation failed (5)
[ 15.248002] snd_hda_intel 0000:14:00.6: power state changed by ACPI to D3hot
[ 15.464709] audit: type=1400 audit(1775295823.470:143): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-ae691095-5dea-4bf4-893a-7ebbd7a796ef" pid=2684 comm="apparmor_parser"
[ 15.465243] audit: type=1400 audit(1775295823.470:144): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-ae691095-5dea-4bf4-893a-7ebbd7a796ef//passt" pid=2684 comm="apparmor_parser"
[ 15.897352] tun: Universal TUN/TAP device driver, 1.6
[ 15.908221] brlan: port 3(vnet0) entered blocking state
[ 15.908226] brlan: port 3(vnet0) entered disabled state
[ 15.908237] vnet0: entered allmulticast mode
[ 15.908280] vnet0: entered promiscuous mode
[ 15.908389] brlan: port 3(vnet0) entered blocking state
[ 15.908391] brlan: port 3(vnet0) entered forwarding state
[ 16.022118] brkvm: port 2(vnet1) entered blocking state
[ 16.022124] brkvm: port 2(vnet1) entered disabled state
[ 16.022130] vnet1: entered allmulticast mode
[ 16.022178] vnet1: entered promiscuous mode
[ 16.022306] brkvm: port 2(vnet1) entered blocking state
[ 16.022309] brkvm: port 2(vnet1) entered forwarding state
[ 16.102612] brdev: port 1(vnet2) entered blocking state
[ 16.102618] brdev: port 1(vnet2) entered disabled state
[ 16.102626] vnet2: entered allmulticast mode
[ 16.102684] vnet2: entered promiscuous mode
[ 16.102841] brdev: port 1(vnet2) entered blocking state
[ 16.102847] brdev: port 1(vnet2) entered forwarding state
[ 16.178730] brsla: port 1(vnet3) entered blocking state
[ 16.178736] brsla: port 1(vnet3) entered disabled state
[ 16.178742] vnet3: entered allmulticast mode
[ 16.178790] vnet3: entered promiscuous mode
[ 16.178918] brsla: port 1(vnet3) entered blocking state
[ 16.178922] brsla: port 1(vnet3) entered forwarding state
[ 16.370941] snd_hda_intel 0000:14:00.6: power state changed by ACPI to D0
[ 16.370948] snd_hda_intel 0000:14:00.6: ACPI _REG connect evaluation failed (5)
[ 16.383000] snd_hda_intel 0000:14:00.6: PME# disabled
[ 16.979349] r8169 0000:0a:00.0 ethdsl: entered promiscuous mode
[ 17.373694] brkvm: port 3(vnet4) entered blocking state
[ 17.373699] brkvm: port 3(vnet4) entered disabled state
[ 17.373712] vnet4: entered allmulticast mode
[ 17.373758] vnet4: entered promiscuous mode
[ 17.373870] brkvm: port 3(vnet4) entered blocking state
[ 17.373873] brkvm: port 3(vnet4) entered forwarding state
[ 18.180523] brkvm: port 4(vnet5) entered blocking state
[ 18.180530] brkvm: port 4(vnet5) entered disabled state
[ 18.180536] vnet5: entered allmulticast mode
[ 18.180599] vnet5: entered promiscuous mode
[ 18.180711] brkvm: port 4(vnet5) entered blocking state
[ 18.180714] brkvm: port 4(vnet5) entered forwarding state
[ 19.105336] brkvm: port 5(vnet6) entered blocking state
[ 19.105342] brkvm: port 5(vnet6) entered disabled state
[ 19.105354] vnet6: entered allmulticast mode
[ 19.105402] vnet6: entered promiscuous mode
[ 19.105537] brkvm: port 5(vnet6) entered blocking state
[ 19.105541] brkvm: port 5(vnet6) entered forwarding state
[ 19.774494] kauditd_printk_skb: 58 callbacks suppressed
[ 19.774497] audit: type=1400 audit(1775295827.778:203): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-2303bc05-0168-43f2-a7dc-2e9d57ef98e3" pid=3122 comm="apparmor_parser"
[ 19.775074] audit: type=1400 audit(1775295827.778:204): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-2303bc05-0168-43f2-a7dc-2e9d57ef98e3//passt" pid=3122 comm="apparmor_parser"
[ 19.842198] audit: type=1400 audit(1775295827.846:205): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-2303bc05-0168-43f2-a7dc-2e9d57ef98e3" pid=3125 comm="apparmor_parser"
[ 19.884880] audit: type=1400 audit(1775295827.890:206): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-2303bc05-0168-43f2-a7dc-2e9d57ef98e3//passt" pid=3125 comm="apparmor_parser"
[ 19.954377] audit: type=1400 audit(1775295827.958:207): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-2303bc05-0168-43f2-a7dc-2e9d57ef98e3" pid=3129 comm="apparmor_parser"
[ 20.000968] audit: type=1400 audit(1775295828.006:208): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-2303bc05-0168-43f2-a7dc-2e9d57ef98e3//passt" pid=3129 comm="apparmor_parser"
[ 20.070487] audit: type=1400 audit(1775295828.074:209): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-2303bc05-0168-43f2-a7dc-2e9d57ef98e3" pid=3133 comm="apparmor_parser"
[ 20.071010] audit: type=1400 audit(1775295828.074:210): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-2303bc05-0168-43f2-a7dc-2e9d57ef98e3//passt" pid=3133 comm="apparmor_parser"
[ 20.080856] brkvm: port 6(vnet7) entered blocking state
[ 20.080860] brkvm: port 6(vnet7) entered disabled state
[ 20.080865] vnet7: entered allmulticast mode
[ 20.080907] vnet7: entered promiscuous mode
[ 20.081019] brkvm: port 6(vnet7) entered blocking state
[ 20.081023] brkvm: port 6(vnet7) entered forwarding state
[ 20.147037] audit: type=1400 audit(1775295828.150:211): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-2303bc05-0168-43f2-a7dc-2e9d57ef98e3" pid=3149 comm="apparmor_parser"
[ 20.180872] audit: type=1400 audit(1775295828.186:212): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-2303bc05-0168-43f2-a7dc-2e9d57ef98e3//passt" pid=3149 comm="apparmor_parser"
[ 20.999799] brkvm: port 7(vnet8) entered blocking state
[ 20.999807] brkvm: port 7(vnet8) entered disabled state
[ 20.999825] vnet8: entered allmulticast mode
[ 20.999893] vnet8: entered promiscuous mode
[ 21.000055] brkvm: port 7(vnet8) entered blocking state
[ 21.000060] brkvm: port 7(vnet8) entered forwarding state
[ 21.879754] VFIO - User Level meta-driver version: 0.3
[ 21.889181] vfio-pci 0000:07:00.0: vgaarb: pci_notify
[ 21.889186] vfio-pci 0000:07:00.0: runtime IRQ mapping not provided by arch
[ 21.889222] vfio-pci 0000:07:00.0: save config 0x00: 0x0003dd01
[ 21.889226] vfio-pci 0000:07:00.0: save config 0x04: 0x00100000
[ 21.889230] vfio-pci 0000:07:00.0: save config 0x08: 0x04800000
[ 21.889234] vfio-pci 0000:07:00.0: save config 0x0c: 0x00000010
[ 21.889238] vfio-pci 0000:07:00.0: save config 0x10: 0xfc500004
[ 21.889242] vfio-pci 0000:07:00.0: save config 0x14: 0x00000000
[ 21.889246] vfio-pci 0000:07:00.0: save config 0x18: 0x00000000
[ 21.889249] vfio-pci 0000:07:00.0: save config 0x1c: 0x00000000
[ 21.889253] vfio-pci 0000:07:00.0: save config 0x20: 0x00000000
[ 21.889257] vfio-pci 0000:07:00.0: save config 0x24: 0x00000000
[ 21.889260] vfio-pci 0000:07:00.0: save config 0x28: 0x00000000
[ 21.889264] vfio-pci 0000:07:00.0: save config 0x2c: 0x0020dd01
[ 21.889268] vfio-pci 0000:07:00.0: save config 0x30: 0x00000000
[ 21.889271] vfio-pci 0000:07:00.0: save config 0x34: 0x00000050
[ 21.889275] vfio-pci 0000:07:00.0: save config 0x38: 0x00000000
[ 21.889279] vfio-pci 0000:07:00.0: save config 0x3c: 0x000001ff
[ 21.889386] vfio-pci 0000:07:00.0: vgaarb: pci_notify
[ 21.889404] vfio-pci 0000:12:00.0: vgaarb: pci_notify
[ 21.889408] vfio-pci 0000:12:00.0: runtime IRQ mapping not provided by arch
[ 21.889419] vfio-pci 0000:12:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=none
[ 21.889421] vfio-pci 0000:12:00.0: vgaarb: decoding count now is: 1
[ 21.889447] vfio-pci 0000:12:00.0: save config 0x00: 0x73ff1002
[ 21.889450] vfio-pci 0000:12:00.0: save config 0x04: 0x00100006
[ 21.889452] vfio-pci 0000:12:00.0: save config 0x08: 0x030000c7
[ 21.889455] vfio-pci 0000:12:00.0: save config 0x0c: 0x00800010
[ 21.889457] vfio-pci 0000:12:00.0: save config 0x10: 0x0000000c
[ 21.889459] vfio-pci 0000:12:00.0: save config 0x14: 0x0000007a
[ 21.889462] vfio-pci 0000:12:00.0: save config 0x18: 0x0000000c
[ 21.889465] vfio-pci 0000:12:00.0: save config 0x1c: 0x0000007c
[ 21.889468] vfio-pci 0000:12:00.0: save config 0x20: 0x0000f001
[ 21.889471] vfio-pci 0000:12:00.0: save config 0x24: 0xfcb00000
[ 21.889474] vfio-pci 0000:12:00.0: save config 0x28: 0x00000000
[ 21.889477] vfio-pci 0000:12:00.0: save config 0x2c: 0x65051eae
[ 21.889480] vfio-pci 0000:12:00.0: save config 0x30: 0xfcc00000
[ 21.889483] vfio-pci 0000:12:00.0: save config 0x34: 0x00000048
[ 21.889486] vfio-pci 0000:12:00.0: save config 0x38: 0x00000000
[ 21.889490] vfio-pci 0000:12:00.0: save config 0x3c: 0x000001ff
[ 21.889536] vfio-pci 0000:12:00.0: PME# enabled
[ 21.890173] vfio-pci 0000:12:00.0: vgaarb: pci_notify
[ 21.900457] pcieport 0000:02:03.0: save config 0x00: 0x57a31022
[ 21.900462] pcieport 0000:02:03.0: save config 0x04: 0x00100407
[ 21.900466] pcieport 0000:02:03.0: save config 0x08: 0x06040000
[ 21.900469] pcieport 0000:02:03.0: save config 0x0c: 0x00810010
[ 21.900472] pcieport 0000:02:03.0: save config 0x10: 0x00000000
[ 21.900475] pcieport 0000:02:03.0: save config 0x14: 0x00000000
[ 21.900479] pcieport 0000:02:03.0: save config 0x18: 0x00070702
[ 21.900482] pcieport 0000:02:03.0: save config 0x1c: 0x000001f1
[ 21.900485] pcieport 0000:02:03.0: save config 0x20: 0xfc50fc50
[ 21.900488] pcieport 0000:02:03.0: save config 0x24: 0x0001fff1
[ 21.900492] pcieport 0000:02:03.0: save config 0x28: 0x00000000
[ 21.900495] pcieport 0000:02:03.0: save config 0x2c: 0x00000000
[ 21.900498] pcieport 0000:02:03.0: save config 0x30: 0x00000000
[ 21.900501] pcieport 0000:02:03.0: save config 0x34: 0x00000050
[ 21.900504] pcieport 0000:02:03.0: save config 0x38: 0x00000000
[ 21.900508] pcieport 0000:02:03.0: save config 0x3c: 0x001200ff
[ 21.900655] pcieport 0000:02:03.0: PME# enabled
[ 21.900679] pcieport 0000:11:00.0: save config 0x00: 0x14791002
[ 21.900683] pcieport 0000:11:00.0: save config 0x04: 0x00100407
[ 21.900686] pcieport 0000:11:00.0: save config 0x08: 0x06040000
[ 21.900689] pcieport 0000:11:00.0: save config 0x0c: 0x00010010
[ 21.900692] pcieport 0000:11:00.0: save config 0x10: 0x00000000
[ 21.900694] pcieport 0000:11:00.0: save config 0x14: 0x00000000
[ 21.900697] pcieport 0000:11:00.0: save config 0x18: 0x00121211
[ 21.900700] pcieport 0000:11:00.0: save config 0x1c: 0x0000f1f1
[ 21.900702] pcieport 0000:11:00.0: save config 0x20: 0xfcc0fcb0
[ 21.900705] pcieport 0000:11:00.0: save config 0x24: 0x0ff10001
[ 21.900708] pcieport 0000:11:00.0: save config 0x28: 0x0000007a
[ 21.900710] pcieport 0000:11:00.0: save config 0x2c: 0x0000007c
[ 21.900713] pcieport 0000:11:00.0: save config 0x30: 0x00000000
[ 21.900716] pcieport 0000:11:00.0: save config 0x34: 0x00000050
[ 21.900718] pcieport 0000:11:00.0: save config 0x38: 0x00000000
[ 21.900721] pcieport 0000:11:00.0: save config 0x3c: 0x001201ff
[ 21.900757] pcieport 0000:11:00.0: PME# enabled
[ 21.912221] pcieport 0000:10:00.0: save config 0x00: 0x14781002
[ 21.912226] pcieport 0000:10:00.0: save config 0x04: 0x00100007
[ 21.912229] pcieport 0000:10:00.0: save config 0x08: 0x060400c7
[ 21.912232] pcieport 0000:10:00.0: save config 0x0c: 0x00010010
[ 21.912235] pcieport 0000:10:00.0: save config 0x10: 0xfcd00000
[ 21.912237] pcieport 0000:10:00.0: save config 0x14: 0x00000000
[ 21.912240] pcieport 0000:10:00.0: save config 0x18: 0x00121110
[ 21.912243] pcieport 0000:10:00.0: save config 0x1c: 0x0000f1f1
[ 21.912245] pcieport 0000:10:00.0: save config 0x20: 0xfcc0fcb0
[ 21.912248] pcieport 0000:10:00.0: save config 0x24: 0x0ff10001
[ 21.912251] pcieport 0000:10:00.0: save config 0x28: 0x0000007a
[ 21.912253] pcieport 0000:10:00.0: save config 0x2c: 0x0000007c
[ 21.912256] pcieport 0000:10:00.0: save config 0x30: 0x00000000
[ 21.912259] pcieport 0000:10:00.0: save config 0x34: 0x00000048
[ 21.912261] pcieport 0000:10:00.0: save config 0x38: 0x00000000
[ 21.912264] pcieport 0000:10:00.0: save config 0x3c: 0x001201ff
[ 21.912301] pcieport 0000:10:00.0: PME# enabled
[ 21.924222] pcieport 0000:00:01.3: save config 0x00: 0x16331022
[ 21.924226] pcieport 0000:00:01.3: save config 0x04: 0x00100407
[ 21.924229] pcieport 0000:00:01.3: save config 0x08: 0x06040000
[ 21.924231] pcieport 0000:00:01.3: save config 0x0c: 0x00810010
[ 21.924232] pcieport 0000:00:01.3: save config 0x10: 0x00000000
[ 21.924234] pcieport 0000:00:01.3: save config 0x14: 0x00000000
[ 21.924236] pcieport 0000:00:01.3: save config 0x18: 0x00121000
[ 21.924238] pcieport 0000:00:01.3: save config 0x1c: 0x2000f1f1
[ 21.924240] pcieport 0000:00:01.3: save config 0x20: 0xfcd0fcb0
[ 21.924242] pcieport 0000:00:01.3: save config 0x24: 0x0ff10001
[ 21.924244] pcieport 0000:00:01.3: save config 0x28: 0x0000007a
[ 21.924246] pcieport 0000:00:01.3: save config 0x2c: 0x0000007c
[ 21.924248] pcieport 0000:00:01.3: save config 0x30: 0x00000000
[ 21.924250] pcieport 0000:00:01.3: save config 0x34: 0x00000050
[ 21.924251] pcieport 0000:00:01.3: save config 0x38: 0x00000000
[ 21.924253] pcieport 0000:00:01.3: save config 0x3c: 0x001200ff
[ 21.924269] pcieport 0000:00:01.3: PME# enabled
[ 21.948230] pcieport 0000:00:01.3: restore config 0x2c: 0x0000007c -> 0x0000007c
[ 21.948237] pcieport 0000:00:01.3: restore config 0x28: 0x0000007a -> 0x0000007a
[ 21.948241] pcieport 0000:00:01.3: restore config 0x24: 0x0ff10001 -> 0x0ff10001
[ 21.948277] pcieport 0000:00:01.3: PME# disabled
[ 21.960264] pcieport 0000:10:00.0: restore config 0x2c: 0x0000007c -> 0x0000007c
[ 21.960272] pcieport 0000:10:00.0: restore config 0x28: 0x0000007a -> 0x0000007a
[ 21.960276] pcieport 0000:10:00.0: restore config 0x24: 0x0ff10001 -> 0x0ff10001
[ 21.960303] pcieport 0000:10:00.0: PME# disabled
[ 21.972361] pcieport 0000:11:00.0: restore config 0x2c: 0x0000007c -> 0x0000007c
[ 21.972366] pcieport 0000:11:00.0: restore config 0x28: 0x0000007a -> 0x0000007a
[ 21.972370] pcieport 0000:11:00.0: restore config 0x24: 0x0ff10001 -> 0x0ff10001
[ 21.972404] pcieport 0000:11:00.0: PME# disabled
[ 21.984474] vfio-pci 0000:12:00.0: restore config 0x1c: 0x00000000 -> 0x0000007c
[ 21.984482] vfio-pci 0000:12:00.0: restore config 0x14: 0x00000000 -> 0x0000007a
[ 21.984503] vfio-pci 0000:12:00.0: PME# disabled
[ 21.984512] vfio-pci 0000:12:00.1: vgaarb: pci_notify
[ 21.984518] vfio-pci 0000:12:00.1: runtime IRQ mapping not provided by arch
[ 21.984584] vfio-pci 0000:12:00.1: save config 0x00: 0xab281002
[ 21.984587] vfio-pci 0000:12:00.1: save config 0x04: 0x00100000
[ 21.984590] vfio-pci 0000:12:00.1: save config 0x08: 0x04030000
[ 21.984593] vfio-pci 0000:12:00.1: save config 0x0c: 0x00800010
[ 21.984596] vfio-pci 0000:12:00.1: save config 0x10: 0xfcc20000
[ 21.984599] vfio-pci 0000:12:00.1: save config 0x14: 0x00000000
[ 21.984601] vfio-pci 0000:12:00.1: save config 0x18: 0x00000000
[ 21.984604] vfio-pci 0000:12:00.1: save config 0x1c: 0x00000000
[ 21.984607] vfio-pci 0000:12:00.1: save config 0x20: 0x00000000
[ 21.984609] vfio-pci 0000:12:00.1: save config 0x24: 0x00000000
[ 21.984612] vfio-pci 0000:12:00.1: save config 0x28: 0x00000000
[ 21.984615] vfio-pci 0000:12:00.1: save config 0x2c: 0xab281002
[ 21.984617] vfio-pci 0000:12:00.1: save config 0x30: 0x00000000
[ 21.984620] vfio-pci 0000:12:00.1: save config 0x34: 0x00000048
[ 21.984623] vfio-pci 0000:12:00.1: save config 0x38: 0x00000000
[ 21.984625] vfio-pci 0000:12:00.1: save config 0x3c: 0x000002ff
[ 21.984650] vfio-pci 0000:12:00.1: PME# enabled
[ 21.984768] vfio-pci 0000:12:00.1: vgaarb: pci_notify
[ 21.984787] vfio-pci 0000:14:00.4: vgaarb: pci_notify
[ 21.984793] vfio-pci 0000:14:00.4: runtime IRQ mapping not provided by arch
[ 21.984823] vfio-pci 0000:14:00.4: save config 0x00: 0x16391022
[ 21.984826] vfio-pci 0000:14:00.4: save config 0x04: 0x00100003
[ 21.984829] vfio-pci 0000:14:00.4: save config 0x08: 0x0c033000
[ 21.984831] vfio-pci 0000:14:00.4: save config 0x0c: 0x00800010
[ 21.984834] vfio-pci 0000:14:00.4: save config 0x10: 0xfc700004
[ 21.984838] vfio-pci 0000:14:00.4: save config 0x14: 0x00000000
[ 21.984841] vfio-pci 0000:14:00.4: save config 0x18: 0x00000000
[ 21.984844] vfio-pci 0000:14:00.4: save config 0x1c: 0x00000000
[ 21.984847] vfio-pci 0000:14:00.4: save config 0x20: 0x00000000
[ 21.984850] vfio-pci 0000:14:00.4: save config 0x24: 0x00000000
[ 21.984853] vfio-pci 0000:14:00.4: save config 0x28: 0x00000000
[ 21.984856] vfio-pci 0000:14:00.4: save config 0x2c: 0xffff1849
[ 21.984859] vfio-pci 0000:14:00.4: save config 0x30: 0x00000000
[ 21.984862] vfio-pci 0000:14:00.4: save config 0x34: 0x00000048
[ 21.984865] vfio-pci 0000:14:00.4: save config 0x38: 0x00000000
[ 21.984868] vfio-pci 0000:14:00.4: save config 0x3c: 0x000001ff
[ 21.984883] vfio-pci 0000:14:00.4: PME# enabled
[ 21.984884] vfio-pci 0000:14:00.4: vgaarb: pci_notify
[ 21.996228] vfio-pci 0000:12:00.0: save config 0x00: 0x73ff1002
[ 21.996232] vfio-pci 0000:12:00.0: save config 0x04: 0x00100006
[ 21.996236] vfio-pci 0000:12:00.0: save config 0x08: 0x030000c7
[ 21.996238] vfio-pci 0000:12:00.0: save config 0x0c: 0x00800010
[ 21.996241] vfio-pci 0000:12:00.0: save config 0x10: 0x0000000c
[ 21.996244] vfio-pci 0000:12:00.0: save config 0x14: 0x0000007a
[ 21.996246] vfio-pci 0000:12:00.0: save config 0x18: 0x0000000c
[ 21.996248] vfio-pci 0000:12:00.0: save config 0x1c: 0x0000007c
[ 21.996251] vfio-pci 0000:12:00.0: save config 0x20: 0x0000f001
[ 21.996253] vfio-pci 0000:12:00.0: save config 0x24: 0xfcb00000
[ 21.996255] vfio-pci 0000:12:00.0: save config 0x28: 0x00000000
[ 21.996257] vfio-pci 0000:12:00.0: save config 0x2c: 0x65051eae
[ 21.996260] vfio-pci 0000:12:00.0: save config 0x30: 0xfcc00000
[ 21.996262] vfio-pci 0000:12:00.0: save config 0x34: 0x00000048
[ 21.996264] vfio-pci 0000:12:00.0: save config 0x38: 0x00000000
[ 21.996267] vfio-pci 0000:12:00.0: save config 0x3c: 0x000001ff
[ 21.996310] vfio-pci 0000:12:00.0: PME# enabled
[ 22.096226] pcieport 0000:11:00.0: save config 0x00: 0x14791002
[ 22.096233] pcieport 0000:11:00.0: save config 0x04: 0x00100407
[ 22.096235] pcieport 0000:11:00.0: save config 0x08: 0x06040000
[ 22.096238] pcieport 0000:11:00.0: save config 0x0c: 0x00010010
[ 22.096240] pcieport 0000:11:00.0: save config 0x10: 0x00000000
[ 22.096243] pcieport 0000:11:00.0: save config 0x14: 0x00000000
[ 22.096245] pcieport 0000:11:00.0: save config 0x18: 0x00121211
[ 22.096247] pcieport 0000:11:00.0: save config 0x1c: 0x0000f1f1
[ 22.096250] pcieport 0000:11:00.0: save config 0x20: 0xfcc0fcb0
[ 22.096252] pcieport 0000:11:00.0: save config 0x24: 0x0ff10001
[ 22.096254] pcieport 0000:11:00.0: save config 0x28: 0x0000007a
[ 22.096257] pcieport 0000:11:00.0: save config 0x2c: 0x0000007c
[ 22.096259] pcieport 0000:11:00.0: save config 0x30: 0x00000000
[ 22.096261] pcieport 0000:11:00.0: save config 0x34: 0x00000050
[ 22.096263] pcieport 0000:11:00.0: save config 0x38: 0x00000000
[ 22.096266] pcieport 0000:11:00.0: save config 0x3c: 0x001201ff
[ 22.096304] pcieport 0000:11:00.0: PME# enabled
[ 22.108222] pcieport 0000:10:00.0: save config 0x00: 0x14781002
[ 22.108227] pcieport 0000:10:00.0: save config 0x04: 0x00100007
[ 22.108229] pcieport 0000:10:00.0: save config 0x08: 0x060400c7
[ 22.108232] pcieport 0000:10:00.0: save config 0x0c: 0x00010010
[ 22.108234] pcieport 0000:10:00.0: save config 0x10: 0xfcd00000
[ 22.108237] pcieport 0000:10:00.0: save config 0x14: 0x00000000
[ 22.108239] pcieport 0000:10:00.0: save config 0x18: 0x00121110
[ 22.108242] pcieport 0000:10:00.0: save config 0x1c: 0x0000f1f1
[ 22.108244] pcieport 0000:10:00.0: save config 0x20: 0xfcc0fcb0
[ 22.108246] pcieport 0000:10:00.0: save config 0x24: 0x0ff10001
[ 22.108248] pcieport 0000:10:00.0: save config 0x28: 0x0000007a
[ 22.108251] pcieport 0000:10:00.0: save config 0x2c: 0x0000007c
[ 22.108253] pcieport 0000:10:00.0: save config 0x30: 0x00000000
[ 22.108255] pcieport 0000:10:00.0: save config 0x34: 0x00000048
[ 22.108258] pcieport 0000:10:00.0: save config 0x38: 0x00000000
[ 22.108260] pcieport 0000:10:00.0: save config 0x3c: 0x001201ff
[ 22.108297] pcieport 0000:10:00.0: PME# enabled
[ 22.120230] pcieport 0000:00:01.3: save config 0x00: 0x16331022
[ 22.120236] pcieport 0000:00:01.3: save config 0x04: 0x00100407
[ 22.120239] pcieport 0000:00:01.3: save config 0x08: 0x06040000
[ 22.120242] pcieport 0000:00:01.3: save config 0x0c: 0x00810010
[ 22.120244] pcieport 0000:00:01.3: save config 0x10: 0x00000000
[ 22.120247] pcieport 0000:00:01.3: save config 0x14: 0x00000000
[ 22.120249] pcieport 0000:00:01.3: save config 0x18: 0x00121000
[ 22.120252] pcieport 0000:00:01.3: save config 0x1c: 0x2000f1f1
[ 22.120255] pcieport 0000:00:01.3: save config 0x20: 0xfcd0fcb0
[ 22.120257] pcieport 0000:00:01.3: save config 0x24: 0x0ff10001
[ 22.120259] pcieport 0000:00:01.3: save config 0x28: 0x0000007a
[ 22.120262] pcieport 0000:00:01.3: save config 0x2c: 0x0000007c
[ 22.120265] pcieport 0000:00:01.3: save config 0x30: 0x00000000
[ 22.120267] pcieport 0000:00:01.3: save config 0x34: 0x00000050
[ 22.120270] pcieport 0000:00:01.3: save config 0x38: 0x00000000
[ 22.120272] pcieport 0000:00:01.3: save config 0x3c: 0x001200ff
[ 22.120291] pcieport 0000:00:01.3: PME# enabled
[ 22.135531] brkvm: port 8(vnet9) entered blocking state
[ 22.135537] brkvm: port 8(vnet9) entered disabled state
[ 22.135545] vnet9: entered allmulticast mode
[ 22.135610] vnet9: entered promiscuous mode
[ 22.135756] brkvm: port 8(vnet9) entered blocking state
[ 22.135761] brkvm: port 8(vnet9) entered forwarding state
[ 22.748229] vfio-pci 0000:14:00.4: restore config 0x3c: 0x00000100 -> 0x000001ff
[ 22.748242] vfio-pci 0000:14:00.4: restore config 0x10: 0x00000004 -> 0xfc700004
[ 22.748246] vfio-pci 0000:14:00.4: restore config 0x0c: 0x00800000 -> 0x00800010
[ 22.748249] vfio-pci 0000:14:00.4: restore config 0x04: 0x00100000 -> 0x00100003
[ 22.748280] vfio-pci 0000:14:00.4: PME# disabled
[ 22.748337] vfio-pci 0000:14:00.4: save config 0x00: 0x16391022
[ 22.748340] vfio-pci 0000:14:00.4: save config 0x04: 0x00100003
[ 22.748342] vfio-pci 0000:14:00.4: save config 0x08: 0x0c033000
[ 22.748344] vfio-pci 0000:14:00.4: save config 0x0c: 0x00800010
[ 22.748346] vfio-pci 0000:14:00.4: save config 0x10: 0xfc700004
[ 22.748348] vfio-pci 0000:14:00.4: save config 0x14: 0x00000000
[ 22.748350] vfio-pci 0000:14:00.4: save config 0x18: 0x00000000
[ 22.748352] vfio-pci 0000:14:00.4: save config 0x1c: 0x00000000
[ 22.748354] vfio-pci 0000:14:00.4: save config 0x20: 0x00000000
[ 22.748356] vfio-pci 0000:14:00.4: save config 0x24: 0x00000000
[ 22.748358] vfio-pci 0000:14:00.4: save config 0x28: 0x00000000
[ 22.748360] vfio-pci 0000:14:00.4: save config 0x2c: 0xffff1849
[ 22.748362] vfio-pci 0000:14:00.4: save config 0x30: 0x00000000
[ 22.748364] vfio-pci 0000:14:00.4: save config 0x34: 0x00000048
[ 22.748366] vfio-pci 0000:14:00.4: save config 0x38: 0x00000000
[ 22.748368] vfio-pci 0000:14:00.4: save config 0x3c: 0x000001ff
[ 22.796218] vfio-pci 0000:14:00.4: ready 0ms after PM D3hot->D0
[ 22.796234] vfio-pci 0000:14:00.4: restore config 0x3c: 0x00000100 -> 0x000001ff
[ 22.796243] vfio-pci 0000:14:00.4: restore config 0x10: 0x00000004 -> 0xfc700004
[ 22.796247] vfio-pci 0000:14:00.4: restore config 0x0c: 0x00800000 -> 0x00800010
[ 22.796250] vfio-pci 0000:14:00.4: restore config 0x04: 0x00100000 -> 0x00100003
[ 22.796260] vfio-pci 0000:14:00.4: save config 0x00: 0x16391022
[ 22.796262] vfio-pci 0000:14:00.4: save config 0x04: 0x00100003
[ 22.796265] vfio-pci 0000:14:00.4: save config 0x08: 0x0c033000
[ 22.796268] vfio-pci 0000:14:00.4: save config 0x0c: 0x00800010
[ 22.796271] vfio-pci 0000:14:00.4: save config 0x10: 0xfc700004
[ 22.796274] vfio-pci 0000:14:00.4: save config 0x14: 0x00000000
[ 22.796276] vfio-pci 0000:14:00.4: save config 0x18: 0x00000000
[ 22.796279] vfio-pci 0000:14:00.4: save config 0x1c: 0x00000000
[ 22.796281] vfio-pci 0000:14:00.4: save config 0x20: 0x00000000
[ 22.796282] vfio-pci 0000:14:00.4: save config 0x24: 0x00000000
[ 22.796285] vfio-pci 0000:14:00.4: save config 0x28: 0x00000000
[ 22.796287] vfio-pci 0000:14:00.4: save config 0x2c: 0xffff1849
[ 22.796290] vfio-pci 0000:14:00.4: save config 0x30: 0x00000000
[ 22.796292] vfio-pci 0000:14:00.4: save config 0x34: 0x00000048
[ 22.796295] vfio-pci 0000:14:00.4: save config 0x38: 0x00000000
[ 22.796297] vfio-pci 0000:14:00.4: save config 0x3c: 0x000001ff
[ 22.808228] pcieport 0000:00:01.3: restore config 0x2c: 0x0000007c -> 0x0000007c
[ 22.808234] pcieport 0000:00:01.3: restore config 0x28: 0x0000007a -> 0x0000007a
[ 22.808237] pcieport 0000:00:01.3: restore config 0x24: 0x0ff10001 -> 0x0ff10001
[ 22.808269] pcieport 0000:00:01.3: PME# disabled
[ 22.820257] pcieport 0000:10:00.0: restore config 0x2c: 0x0000007c -> 0x0000007c
[ 22.820262] pcieport 0000:10:00.0: restore config 0x28: 0x0000007a -> 0x0000007a
[ 22.820265] pcieport 0000:10:00.0: restore config 0x24: 0x0ff10001 -> 0x0ff10001
[ 22.820287] pcieport 0000:10:00.0: PME# disabled
[ 22.832264] pcieport 0000:11:00.0: restore config 0x2c: 0x0000007c -> 0x0000007c
[ 22.832271] pcieport 0000:11:00.0: restore config 0x28: 0x0000007a -> 0x0000007a
[ 22.832278] pcieport 0000:11:00.0: restore config 0x24: 0x0ff10001 -> 0x0ff10001
[ 22.832318] pcieport 0000:11:00.0: PME# disabled
[ 22.844288] vfio-pci 0000:12:00.0: restore config 0x1c: 0x00000000 -> 0x0000007c
[ 22.844300] vfio-pci 0000:12:00.0: restore config 0x14: 0x00000000 -> 0x0000007a
[ 22.844328] vfio-pci 0000:12:00.0: PME# disabled
[ 22.844336] vfio-pci 0000:12:00.0: disabling bus mastering
[ 22.844345] vfio-pci 0000:12:00.0: enabling device (0002 -> 0003)
[ 22.844420] vfio-pci 0000:12:00.0: save config 0x00: 0x73ff1002
[ 22.844425] vfio-pci 0000:12:00.0: save config 0x04: 0x00100003
[ 22.844430] vfio-pci 0000:12:00.0: save config 0x08: 0x030000c7
[ 22.844434] vfio-pci 0000:12:00.0: save config 0x0c: 0x00800010
[ 22.844438] vfio-pci 0000:12:00.0: save config 0x10: 0x0000000c
[ 22.844443] vfio-pci 0000:12:00.0: save config 0x14: 0x0000007a
[ 22.844447] vfio-pci 0000:12:00.0: save config 0x18: 0x0000000c
[ 22.844452] vfio-pci 0000:12:00.0: save config 0x1c: 0x0000007c
[ 22.844456] vfio-pci 0000:12:00.0: save config 0x20: 0x0000f001
[ 22.844460] vfio-pci 0000:12:00.0: save config 0x24: 0xfcb00000
[ 22.844464] vfio-pci 0000:12:00.0: save config 0x28: 0x00000000
[ 22.844469] vfio-pci 0000:12:00.0: save config 0x2c: 0x65051eae
[ 22.844473] vfio-pci 0000:12:00.0: save config 0x30: 0xfcc00000
[ 22.844478] vfio-pci 0000:12:00.0: save config 0x34: 0x00000048
[ 22.844482] vfio-pci 0000:12:00.0: save config 0x38: 0x00000000
[ 22.844486] vfio-pci 0000:12:00.0: save config 0x3c: 0x000001ff
[ 22.844600] vfio-pci 0000:12:00.0: restore config 0x1c: 0x00000000 -> 0x0000007c
[ 22.844608] vfio-pci 0000:12:00.0: restore config 0x14: 0x00000000 -> 0x0000007a
[ 22.844618] vfio-pci 0000:12:00.0: restore config 0x04: 0x00100400 -> 0x00100003
[ 22.844634] vfio-pci 0000:12:00.0: save config 0x00: 0x73ff1002
[ 22.844639] vfio-pci 0000:12:00.0: save config 0x04: 0x00100003
[ 22.844644] vfio-pci 0000:12:00.0: save config 0x08: 0x030000c7
[ 22.844648] vfio-pci 0000:12:00.0: save config 0x0c: 0x00800010
[ 22.844652] vfio-pci 0000:12:00.0: save config 0x10: 0x0000000c
[ 22.844656] vfio-pci 0000:12:00.0: save config 0x14: 0x0000007a
[ 22.844661] vfio-pci 0000:12:00.0: save config 0x18: 0x0000000c
[ 22.844665] vfio-pci 0000:12:00.0: save config 0x1c: 0x0000007c
[ 22.844669] vfio-pci 0000:12:00.0: save config 0x20: 0x0000f001
[ 22.844674] vfio-pci 0000:12:00.0: save config 0x24: 0xfcb00000
[ 22.844678] vfio-pci 0000:12:00.0: save config 0x28: 0x00000000
[ 22.844683] vfio-pci 0000:12:00.0: save config 0x2c: 0x65051eae
[ 22.844687] vfio-pci 0000:12:00.0: save config 0x30: 0xfcc00000
[ 22.844691] vfio-pci 0000:12:00.0: save config 0x34: 0x00000048
[ 22.844696] vfio-pci 0000:12:00.0: save config 0x38: 0x00000000
[ 22.844700] vfio-pci 0000:12:00.0: save config 0x3c: 0x000001ff
[ 22.860394] vfio-pci 0000:12:00.1: PME# disabled
[ 22.860407] vfio-pci 0000:12:00.1: enabling device (0000 -> 0002)
[ 22.860510] vfio-pci 0000:12:00.1: save config 0x00: 0xab281002
[ 22.860516] vfio-pci 0000:12:00.1: save config 0x04: 0x00100002
[ 22.860520] vfio-pci 0000:12:00.1: save config 0x08: 0x04030000
[ 22.860525] vfio-pci 0000:12:00.1: save config 0x0c: 0x00800010
[ 22.860529] vfio-pci 0000:12:00.1: save config 0x10: 0xfcc20000
[ 22.860534] vfio-pci 0000:12:00.1: save config 0x14: 0x00000000
[ 22.860538] vfio-pci 0000:12:00.1: save config 0x18: 0x00000000
[ 22.860543] vfio-pci 0000:12:00.1: save config 0x1c: 0x00000000
[ 22.860547] vfio-pci 0000:12:00.1: save config 0x20: 0x00000000
[ 22.860552] vfio-pci 0000:12:00.1: save config 0x24: 0x00000000
[ 22.860556] vfio-pci 0000:12:00.1: save config 0x28: 0x00000000
[ 22.860561] vfio-pci 0000:12:00.1: save config 0x2c: 0xab281002
[ 22.860564] vfio-pci 0000:12:00.1: save config 0x30: 0x00000000
[ 22.860569] vfio-pci 0000:12:00.1: save config 0x34: 0x00000048
[ 22.860573] vfio-pci 0000:12:00.1: save config 0x38: 0x00000000
[ 22.860578] vfio-pci 0000:12:00.1: save config 0x3c: 0x000002ff
[ 22.881493] vfio-pci 0000:12:00.0: save config 0x00: 0x73ff1002
[ 22.881502] vfio-pci 0000:12:00.0: save config 0x04: 0x00100000
[ 22.881507] vfio-pci 0000:12:00.0: save config 0x08: 0x030000c7
[ 22.881511] vfio-pci 0000:12:00.0: save config 0x0c: 0x00800010
[ 22.881516] vfio-pci 0000:12:00.0: save config 0x10: 0x0000000c
[ 22.881520] vfio-pci 0000:12:00.0: save config 0x14: 0x0000007a
[ 22.881524] vfio-pci 0000:12:00.0: save config 0x18: 0x0000000c
[ 22.881529] vfio-pci 0000:12:00.0: save config 0x1c: 0x0000007c
[ 22.881533] vfio-pci 0000:12:00.0: save config 0x20: 0x0000f001
[ 22.881537] vfio-pci 0000:12:00.0: save config 0x24: 0xfcb00000
[ 22.881542] vfio-pci 0000:12:00.0: save config 0x28: 0x00000000
[ 22.881546] vfio-pci 0000:12:00.0: save config 0x2c: 0x65051eae
[ 22.881550] vfio-pci 0000:12:00.0: save config 0x30: 0xfcc00000
[ 22.881554] vfio-pci 0000:12:00.0: save config 0x34: 0x00000048
[ 22.881558] vfio-pci 0000:12:00.0: save config 0x38: 0x00000000
[ 22.881563] vfio-pci 0000:12:00.0: save config 0x3c: 0x000001ff
[ 22.881623] vfio-pci 0000:12:00.1: save config 0x00: 0xab281002
[ 22.881628] vfio-pci 0000:12:00.1: save config 0x04: 0x00100000
[ 22.881632] vfio-pci 0000:12:00.1: save config 0x08: 0x04030000
[ 22.881637] vfio-pci 0000:12:00.1: save config 0x0c: 0x00800010
[ 22.881641] vfio-pci 0000:12:00.1: save config 0x10: 0xfcc20000
[ 22.881645] vfio-pci 0000:12:00.1: save config 0x14: 0x00000000
[ 22.881649] vfio-pci 0000:12:00.1: save config 0x18: 0x00000000
[ 22.881654] vfio-pci 0000:12:00.1: save config 0x1c: 0x00000000
[ 22.881658] vfio-pci 0000:12:00.1: save config 0x20: 0x00000000
[ 22.881662] vfio-pci 0000:12:00.1: save config 0x24: 0x00000000
[ 22.881666] vfio-pci 0000:12:00.1: save config 0x28: 0x00000000
[ 22.881670] vfio-pci 0000:12:00.1: save config 0x2c: 0xab281002
[ 22.881674] vfio-pci 0000:12:00.1: save config 0x30: 0x00000000
[ 22.881679] vfio-pci 0000:12:00.1: save config 0x34: 0x00000048
[ 22.881683] vfio-pci 0000:12:00.1: save config 0x38: 0x00000000
[ 22.881687] vfio-pci 0000:12:00.1: save config 0x3c: 0x000002ff
[ 22.888402] pcieport 0000:11:00.0: waiting 100 ms for downstream link, after activation
[ 23.024659] vfio-pci 0000:12:00.0: ready 0ms after bus reset
[ 23.024676] pcieport 0000:11:00.0: re-enabling LTR
[ 23.024725] vfio-pci 0000:12:00.0: restore config 0x30: 0x00000000 -> 0xfcc00000
[ 23.024731] vfio-pci 0000:12:00.0: restore config 0x24: 0x00000000 -> 0xfcb00000
[ 23.024736] vfio-pci 0000:12:00.0: restore config 0x20: 0x00000001 -> 0x0000f001
[ 23.024740] vfio-pci 0000:12:00.0: restore config 0x1c: 0x00000000 -> 0x0000007c
[ 23.024745] vfio-pci 0000:12:00.0: restore config 0x14: 0x00000000 -> 0x0000007a
[ 23.024750] vfio-pci 0000:12:00.0: restore config 0x0c: 0x00800000 -> 0x00800010
[ 23.024795] vfio-pci 0000:12:00.1: restore config 0x10: 0x00000000 -> 0xfcc20000
[ 23.024799] vfio-pci 0000:12:00.1: restore config 0x0c: 0x00800000 -> 0x00800010
[ 23.028984] vfio-pci 0000:14:00.4: save config 0x00: 0x16391022
[ 23.028990] vfio-pci 0000:14:00.4: save config 0x04: 0x00100000
[ 23.028993] vfio-pci 0000:14:00.4: save config 0x08: 0x0c033000
[ 23.028995] vfio-pci 0000:14:00.4: save config 0x0c: 0x00800010
[ 23.028998] vfio-pci 0000:14:00.4: save config 0x10: 0xfc700004
[ 23.029001] vfio-pci 0000:14:00.4: save config 0x14: 0x00000000
[ 23.029003] vfio-pci 0000:14:00.4: save config 0x18: 0x00000000
[ 23.029006] vfio-pci 0000:14:00.4: save config 0x1c: 0x00000000
[ 23.029008] vfio-pci 0000:14:00.4: save config 0x20: 0x00000000
[ 23.029011] vfio-pci 0000:14:00.4: save config 0x24: 0x00000000
[ 23.029013] vfio-pci 0000:14:00.4: save config 0x28: 0x00000000
[ 23.029016] vfio-pci 0000:14:00.4: save config 0x2c: 0xffff1849
[ 23.029018] vfio-pci 0000:14:00.4: save config 0x30: 0x00000000
[ 23.029021] vfio-pci 0000:14:00.4: save config 0x34: 0x00000048
[ 23.029024] vfio-pci 0000:14:00.4: save config 0x38: 0x00000000
[ 23.029026] vfio-pci 0000:14:00.4: save config 0x3c: 0x000001ff
[ 23.076225] vfio-pci 0000:14:00.4: ready 0ms after PM D3hot->D0
[ 23.076241] vfio-pci 0000:14:00.4: restore config 0x3c: 0x00000100 -> 0x000001ff
[ 23.076251] vfio-pci 0000:14:00.4: restore config 0x10: 0x00000004 -> 0xfc700004
[ 23.076255] vfio-pci 0000:14:00.4: restore config 0x0c: 0x00800000 -> 0x00800010
[ 23.104968] vgaarb: client 0x000000007d7016da called 'target'
[ 23.104993] vgaarb: PCI:0000:06:00.0 ==> 0000:06:00.0 pdev 000000008672f633
[ 23.104998] vgaarb: vgadev 00000000accbc3a3
[ 23.105027] vgaarb: client 0x000000007d7016da called 'target'
[ 23.105038] vgaarb: PCI:0000:06:00.0 ==> 0000:06:00.0 pdev 000000008672f633
[ 23.105043] vgaarb: vgadev 00000000accbc3a3
[ 24.096394] brkvm: port 9(vnet10) entered blocking state
[ 24.096400] brkvm: port 9(vnet10) entered disabled state
[ 24.096412] vnet10: entered allmulticast mode
[ 24.096463] vnet10: entered promiscuous mode
[ 24.096646] brkvm: port 9(vnet10) entered blocking state
[ 24.096650] brkvm: port 9(vnet10) entered forwarding state
[ 24.241601] brlan: port 4(vnet11) entered blocking state
[ 24.241608] brlan: port 4(vnet11) entered disabled state
[ 24.241622] vnet11: entered allmulticast mode
[ 24.241693] vnet11: entered promiscuous mode
[ 24.241848] brlan: port 4(vnet11) entered blocking state
[ 24.241852] brlan: port 4(vnet11) entered forwarding state
[ 24.381834] brkvm: port 10(vnet12) entered blocking state
[ 24.381841] brkvm: port 10(vnet12) entered disabled state
[ 24.381854] vnet12: entered allmulticast mode
[ 24.382246] vnet12: entered promiscuous mode
[ 24.382587] brkvm: port 10(vnet12) entered blocking state
[ 24.382591] brkvm: port 10(vnet12) entered forwarding state
[ 24.545861] brlan: port 5(vnet13) entered blocking state
[ 24.545868] brlan: port 5(vnet13) entered disabled state
[ 24.546172] vnet13: entered allmulticast mode
[ 24.546704] vnet13: entered promiscuous mode
[ 24.546886] brlan: port 5(vnet13) entered blocking state
[ 24.546891] brlan: port 5(vnet13) entered forwarding state
[ 24.628794] NFSD: Using nfsdcld client tracking operations.
[ 24.628801] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000000)
[ 24.671557] brkvm: port 11(vnet14) entered blocking state
[ 24.671564] brkvm: port 11(vnet14) entered disabled state
[ 24.671630] vnet14: entered allmulticast mode
[ 24.671678] vnet14: entered promiscuous mode
[ 24.672086] brkvm: port 11(vnet14) entered blocking state
[ 24.672089] brkvm: port 11(vnet14) entered forwarding state
[ 24.816728] kauditd_printk_skb: 42 callbacks suppressed
[ 24.816733] audit: type=1400 audit(1775295832.818:255): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-dea9b335-ffb2-4c40-a3ea-f12f2bf81d01" pid=4181 comm="apparmor_parser"
[ 24.817026] audit: type=1400 audit(1775295832.822:256): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-dea9b335-ffb2-4c40-a3ea-f12f2bf81d01//passt" pid=4181 comm="apparmor_parser"
[ 24.837099] brlan: port 6(vnet15) entered blocking state
[ 24.837108] brlan: port 6(vnet15) entered disabled state
[ 24.837118] vnet15: entered allmulticast mode
[ 24.837187] vnet15: entered promiscuous mode
[ 24.837912] brlan: port 6(vnet15) entered blocking state
[ 24.837917] brlan: port 6(vnet15) entered forwarding state
[ 24.984696] audit: type=1400 audit(1775295832.990:257): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-dea9b335-ffb2-4c40-a3ea-f12f2bf81d01" pid=4201 comm="apparmor_parser"
[ 24.985570] audit: type=1400 audit(1775295832.990:258): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-dea9b335-ffb2-4c40-a3ea-f12f2bf81d01//passt" pid=4201 comm="apparmor_parser"
[ 25.005590] brkvm: port 12(vnet16) entered blocking state
[ 25.005597] brkvm: port 12(vnet16) entered disabled state
[ 25.005723] vnet16: entered allmulticast mode
[ 25.005842] vnet16: entered promiscuous mode
[ 25.007601] brkvm: port 12(vnet16) entered blocking state
[ 25.007606] brkvm: port 12(vnet16) entered forwarding state
[ 25.132122] audit: type=1400 audit(1775295833.134:259): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-dea9b335-ffb2-4c40-a3ea-f12f2bf81d01" pid=4233 comm="apparmor_parser"
[ 25.136228] audit: type=1400 audit(1775295833.138:260): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-dea9b335-ffb2-4c40-a3ea-f12f2bf81d01//passt" pid=4233 comm="apparmor_parser"
[ 25.325199] audit: type=1400 audit(1775295833.330:261): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-dea9b335-ffb2-4c40-a3ea-f12f2bf81d01" pid=4291 comm="apparmor_parser"
[ 25.352929] audit: type=1400 audit(1775295833.358:262): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-dea9b335-ffb2-4c40-a3ea-f12f2bf81d01//passt" pid=4291 comm="apparmor_parser"
[ 36.796346] snd_hda_intel 0000:06:00.1: save config 0x00: 0xab281002
[ 36.796355] snd_hda_intel 0000:06:00.1: save config 0x04: 0x00100406
[ 36.796359] snd_hda_intel 0000:06:00.1: save config 0x08: 0x04030000
[ 36.796362] snd_hda_intel 0000:06:00.1: save config 0x0c: 0x00800010
[ 36.796366] snd_hda_intel 0000:06:00.1: save config 0x10: 0xfbc20000
[ 36.796369] snd_hda_intel 0000:06:00.1: save config 0x14: 0x00000000
[ 36.796372] snd_hda_intel 0000:06:00.1: save config 0x18: 0x00000000
[ 36.796376] snd_hda_intel 0000:06:00.1: save config 0x1c: 0x00000000
[ 36.796379] snd_hda_intel 0000:06:00.1: save config 0x20: 0x00000000
[ 36.796382] snd_hda_intel 0000:06:00.1: save config 0x24: 0x00000000
[ 36.796386] snd_hda_intel 0000:06:00.1: save config 0x28: 0x00000000
[ 36.796389] snd_hda_intel 0000:06:00.1: save config 0x2c: 0xab281002
[ 36.796392] snd_hda_intel 0000:06:00.1: save config 0x30: 0x00000000
[ 36.796396] snd_hda_intel 0000:06:00.1: save config 0x34: 0x00000048
[ 36.796399] snd_hda_intel 0000:06:00.1: save config 0x38: 0x00000000
[ 36.796402] snd_hda_intel 0000:06:00.1: save config 0x3c: 0x000002ff
[ 36.796454] snd_hda_intel 0000:06:00.1: PME# enabled
[ 37.300547] audit: type=1400 audit(1775295845.306:263): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-ee50a99a-8a99-406b-bbc9-f7fd00302b1f" pid=4685 comm="apparmor_parser"
[ 37.301438] audit: type=1400 audit(1775295845.306:264): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-ee50a99a-8a99-406b-bbc9-f7fd00302b1f//passt" pid=4685 comm="apparmor_parser"
[ 37.396852] audit: type=1400 audit(1775295845.402:265): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-ee50a99a-8a99-406b-bbc9-f7fd00302b1f" pid=4695 comm="apparmor_parser"
[ 37.429179] audit: type=1400 audit(1775295845.434:266): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-ee50a99a-8a99-406b-bbc9-f7fd00302b1f//passt" pid=4695 comm="apparmor_parser"
[ 37.521982] audit: type=1400 audit(1775295845.526:267): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-ee50a99a-8a99-406b-bbc9-f7fd00302b1f" pid=4699 comm="apparmor_parser"
[ 37.564970] audit: type=1400 audit(1775295845.570:268): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-ee50a99a-8a99-406b-bbc9-f7fd00302b1f//passt" pid=4699 comm="apparmor_parser"
[ 37.637471] audit: type=1400 audit(1775295845.642:269): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-ee50a99a-8a99-406b-bbc9-f7fd00302b1f" pid=4703 comm="apparmor_parser"
[ 37.637999] audit: type=1400 audit(1775295845.642:270): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-ee50a99a-8a99-406b-bbc9-f7fd00302b1f//passt" pid=4703 comm="apparmor_parser"
[ 37.653732] brkvm: port 13(vnet17) entered blocking state
[ 37.653739] brkvm: port 13(vnet17) entered disabled state
[ 37.653746] vnet17: entered allmulticast mode
[ 37.653797] vnet17: entered promiscuous mode
[ 37.654079] brkvm: port 13(vnet17) entered blocking state
[ 37.654083] brkvm: port 13(vnet17) entered forwarding state
[ 37.723883] audit: type=1400 audit(1775295845.726:271): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-ee50a99a-8a99-406b-bbc9-f7fd00302b1f" pid=4723 comm="apparmor_parser"
[ 37.776936] audit: type=1400 audit(1775295845.782:272): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-ee50a99a-8a99-406b-bbc9-f7fd00302b1f//passt" pid=4723 comm="apparmor_parser"
[ 38.826991] snd_hda_intel 0000:14:00.6: save config 0x00: 0x15e31022
[ 38.826999] snd_hda_intel 0000:14:00.6: save config 0x04: 0x00100406
[ 38.827001] snd_hda_intel 0000:14:00.6: save config 0x08: 0x04030000
[ 38.827003] snd_hda_intel 0000:14:00.6: save config 0x0c: 0x00800010
[ 38.827005] snd_hda_intel 0000:14:00.6: save config 0x10: 0xfca80000
[ 38.827008] snd_hda_intel 0000:14:00.6: save config 0x14: 0x00000000
[ 38.827010] snd_hda_intel 0000:14:00.6: save config 0x18: 0x00000000
[ 38.827012] snd_hda_intel 0000:14:00.6: save config 0x1c: 0x00000000
[ 38.827014] snd_hda_intel 0000:14:00.6: save config 0x20: 0x00000000
[ 38.827016] snd_hda_intel 0000:14:00.6: save config 0x24: 0x00000000
[ 38.827017] snd_hda_intel 0000:14:00.6: save config 0x28: 0x00000000
[ 38.827019] snd_hda_intel 0000:14:00.6: save config 0x2c: 0x28971849
[ 38.827021] snd_hda_intel 0000:14:00.6: save config 0x30: 0x00000000
[ 38.827023] snd_hda_intel 0000:14:00.6: save config 0x34: 0x00000048
[ 38.827025] snd_hda_intel 0000:14:00.6: save config 0x38: 0x00000000
[ 38.827027] snd_hda_intel 0000:14:00.6: save config 0x3c: 0x000003ff
[ 38.827043] snd_hda_intel 0000:14:00.6: PME# enabled
[ 38.839080] snd_hda_intel 0000:14:00.6: ACPI _REG disconnect evaluation failed (5)
[ 38.839855] snd_hda_intel 0000:14:00.6: power state changed by ACPI to D3hot
[ 43.325418] kauditd_printk_skb: 2 callbacks suppressed
[ 43.325422] audit: type=1400 audit(1775295851.330:275): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-8c484ff7-0590-41b4-b649-67fa7b750b3b" pid=4850 comm="apparmor_parser"
[ 43.325985] audit: type=1400 audit(1775295851.330:276): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-8c484ff7-0590-41b4-b649-67fa7b750b3b//passt" pid=4850 comm="apparmor_parser"
[ 43.398985] audit: type=1400 audit(1775295851.402:277): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-8c484ff7-0590-41b4-b649-67fa7b750b3b" pid=4854 comm="apparmor_parser"
[ 43.444858] audit: type=1400 audit(1775295851.450:278): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-8c484ff7-0590-41b4-b649-67fa7b750b3b//passt" pid=4854 comm="apparmor_parser"
[ 43.520352] audit: type=1400 audit(1775295851.526:279): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-8c484ff7-0590-41b4-b649-67fa7b750b3b" pid=4858 comm="apparmor_parser"
[ 43.548966] audit: type=1400 audit(1775295851.554:280): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-8c484ff7-0590-41b4-b649-67fa7b750b3b//passt" pid=4858 comm="apparmor_parser"
[ 43.564343] pcieport 0000:02:03.0: restore config 0x2c: 0x00000000 -> 0x00000000
[ 43.564352] pcieport 0000:02:03.0: restore config 0x28: 0x00000000 -> 0x00000000
[ 43.564357] pcieport 0000:02:03.0: restore config 0x24: 0x0001fff1 -> 0x0001fff1
[ 43.564458] pcieport 0000:02:03.0: PME# disabled
[ 43.637479] audit: type=1400 audit(1775295851.642:281): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-8c484ff7-0590-41b4-b649-67fa7b750b3b" pid=4863 comm="apparmor_parser"
[ 43.638020] audit: type=1400 audit(1775295851.642:282): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-8c484ff7-0590-41b4-b649-67fa7b750b3b//passt" pid=4863 comm="apparmor_parser"
[ 43.648249] brkvm: port 14(vnet18) entered blocking state
[ 43.648254] brkvm: port 14(vnet18) entered disabled state
[ 43.648260] vnet18: entered allmulticast mode
[ 43.648311] vnet18: entered promiscuous mode
[ 43.648447] brkvm: port 14(vnet18) entered blocking state
[ 43.648453] brkvm: port 14(vnet18) entered forwarding state
[ 43.688236] pcieport 0000:02:03.0: save config 0x00: 0x57a31022
[ 43.688244] pcieport 0000:02:03.0: save config 0x04: 0x00100407
[ 43.688248] pcieport 0000:02:03.0: save config 0x08: 0x06040000
[ 43.688251] pcieport 0000:02:03.0: save config 0x0c: 0x00810010
[ 43.688254] pcieport 0000:02:03.0: save config 0x10: 0x00000000
[ 43.688258] pcieport 0000:02:03.0: save config 0x14: 0x00000000
[ 43.688261] pcieport 0000:02:03.0: save config 0x18: 0x00070702
[ 43.688264] pcieport 0000:02:03.0: save config 0x1c: 0x000001f1
[ 43.688267] pcieport 0000:02:03.0: save config 0x20: 0xfc50fc50
[ 43.688271] pcieport 0000:02:03.0: save config 0x24: 0x0001fff1
[ 43.688274] pcieport 0000:02:03.0: save config 0x28: 0x00000000
[ 43.688277] pcieport 0000:02:03.0: save config 0x2c: 0x00000000
[ 43.688280] pcieport 0000:02:03.0: save config 0x30: 0x00000000
[ 43.688283] pcieport 0000:02:03.0: save config 0x34: 0x00000050
[ 43.688287] pcieport 0000:02:03.0: save config 0x38: 0x00000000
[ 43.688290] pcieport 0000:02:03.0: save config 0x3c: 0x001200ff
[ 43.688430] pcieport 0000:02:03.0: PME# enabled
[ 43.722493] audit: type=1400 audit(1775295851.726:283): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-8c484ff7-0590-41b4-b649-67fa7b750b3b" pid=4880 comm="apparmor_parser"
[ 43.765107] audit: type=1400 audit(1775295851.770:284): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-8c484ff7-0590-41b4-b649-67fa7b750b3b//passt" pid=4880 comm="apparmor_parser"
[ 44.184355] pcieport 0000:02:03.0: restore config 0x2c: 0x00000000 -> 0x00000000
[ 44.184364] pcieport 0000:02:03.0: restore config 0x28: 0x00000000 -> 0x00000000
[ 44.184369] pcieport 0000:02:03.0: restore config 0x24: 0x0001fff1 -> 0x0001fff1
[ 44.184470] pcieport 0000:02:03.0: PME# disabled
[ 44.196307] vfio-pci 0000:07:00.0: enabling device (0000 -> 0002)
[ 44.196371] vfio-pci 0000:07:00.0: save config 0x00: 0x0003dd01
[ 44.196376] vfio-pci 0000:07:00.0: save config 0x04: 0x00100002
[ 44.196380] vfio-pci 0000:07:00.0: save config 0x08: 0x04800000
[ 44.196384] vfio-pci 0000:07:00.0: save config 0x0c: 0x00000010
[ 44.196388] vfio-pci 0000:07:00.0: save config 0x10: 0xfc500004
[ 44.196392] vfio-pci 0000:07:00.0: save config 0x14: 0x00000000
[ 44.196397] vfio-pci 0000:07:00.0: save config 0x18: 0x00000000
[ 44.196401] vfio-pci 0000:07:00.0: save config 0x1c: 0x00000000
[ 44.196405] vfio-pci 0000:07:00.0: save config 0x20: 0x00000000
[ 44.196409] vfio-pci 0000:07:00.0: save config 0x24: 0x00000000
[ 44.196413] vfio-pci 0000:07:00.0: save config 0x28: 0x00000000
[ 44.196417] vfio-pci 0000:07:00.0: save config 0x2c: 0x0020dd01
[ 44.196421] vfio-pci 0000:07:00.0: save config 0x30: 0x00000000
[ 44.196425] vfio-pci 0000:07:00.0: save config 0x34: 0x00000050
[ 44.196429] vfio-pci 0000:07:00.0: save config 0x38: 0x00000000
[ 44.196433] vfio-pci 0000:07:00.0: save config 0x3c: 0x000001ff
[ 44.220242] vfio-pci 0000:07:00.0: ready 0ms after PM D3hot->D0
[ 44.220314] vfio-pci 0000:07:00.0: restore config 0x04: 0x00100400 -> 0x00100002
[ 44.220336] vfio-pci 0000:07:00.0: save config 0x00: 0x0003dd01
[ 44.220340] vfio-pci 0000:07:00.0: save config 0x04: 0x00100002
[ 44.220345] vfio-pci 0000:07:00.0: save config 0x08: 0x04800000
[ 44.220349] vfio-pci 0000:07:00.0: save config 0x0c: 0x00000010
[ 44.220353] vfio-pci 0000:07:00.0: save config 0x10: 0xfc500004
[ 44.220357] vfio-pci 0000:07:00.0: save config 0x14: 0x00000000
[ 44.220361] vfio-pci 0000:07:00.0: save config 0x18: 0x00000000
[ 44.220365] vfio-pci 0000:07:00.0: save config 0x1c: 0x00000000
[ 44.220369] vfio-pci 0000:07:00.0: save config 0x20: 0x00000000
[ 44.220373] vfio-pci 0000:07:00.0: save config 0x24: 0x00000000
[ 44.220377] vfio-pci 0000:07:00.0: save config 0x28: 0x00000000
[ 44.220381] vfio-pci 0000:07:00.0: save config 0x2c: 0x0020dd01
[ 44.220385] vfio-pci 0000:07:00.0: save config 0x30: 0x00000000
[ 44.220389] vfio-pci 0000:07:00.0: save config 0x34: 0x00000050
[ 44.220393] vfio-pci 0000:07:00.0: save config 0x38: 0x00000000
[ 44.220398] vfio-pci 0000:07:00.0: save config 0x3c: 0x000001ff
[ 44.229629] vfio-pci 0000:07:00.0: save config 0x00: 0x0003dd01
[ 44.229636] vfio-pci 0000:07:00.0: save config 0x04: 0x00100000
[ 44.229640] vfio-pci 0000:07:00.0: save config 0x08: 0x04800000
[ 44.229644] vfio-pci 0000:07:00.0: save config 0x0c: 0x00000010
[ 44.229648] vfio-pci 0000:07:00.0: save config 0x10: 0xfc500004
[ 44.229651] vfio-pci 0000:07:00.0: save config 0x14: 0x00000000
[ 44.229655] vfio-pci 0000:07:00.0: save config 0x18: 0x00000000
[ 44.229659] vfio-pci 0000:07:00.0: save config 0x1c: 0x00000000
[ 44.229662] vfio-pci 0000:07:00.0: save config 0x20: 0x00000000
[ 44.229666] vfio-pci 0000:07:00.0: save config 0x24: 0x00000000
[ 44.229670] vfio-pci 0000:07:00.0: save config 0x28: 0x00000000
[ 44.229673] vfio-pci 0000:07:00.0: save config 0x2c: 0x0020dd01
[ 44.229677] vfio-pci 0000:07:00.0: save config 0x30: 0x00000000
[ 44.229681] vfio-pci 0000:07:00.0: save config 0x34: 0x00000050
[ 44.229684] vfio-pci 0000:07:00.0: save config 0x38: 0x00000000
[ 44.229688] vfio-pci 0000:07:00.0: save config 0x3c: 0x000001ff
[ 44.236215] pcieport 0000:02:03.0: waiting 100 ms for downstream link, after activation
[ 44.364221] vfio-pci 0000:07:00.0: ready 0ms after bus reset
[ 44.364244] pcieport 0000:02:03.0: re-enabling LTR
[ 49.671614] kauditd_printk_skb: 2 callbacks suppressed
[ 49.671618] audit: type=1400 audit(1775295857.742:287): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-a97c99f9-f38b-4930-9277-9b669d01c78b" pid=4920 comm="apparmor_parser"
[ 49.672215] audit: type=1400 audit(1775295857.746:288): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-a97c99f9-f38b-4930-9277-9b669d01c78b//passt" pid=4920 comm="apparmor_parser"
[ 49.759852] audit: type=1400 audit(1775295857.836:289): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-a97c99f9-f38b-4930-9277-9b669d01c78b" pid=4937 comm="apparmor_parser"
[ 49.774911] audit: type=1400 audit(1775295857.852:290): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-a97c99f9-f38b-4930-9277-9b669d01c78b//passt" pid=4937 comm="apparmor_parser"
[ 49.848663] audit: type=1400 audit(1775295857.925:291): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-a97c99f9-f38b-4930-9277-9b669d01c78b" pid=4941 comm="apparmor_parser"
[ 49.873607] audit: type=1400 audit(1775295857.953:292): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-a97c99f9-f38b-4930-9277-9b669d01c78b//passt" pid=4941 comm="apparmor_parser"
[ 49.960465] audit: type=1400 audit(1775295858.038:293): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-a97c99f9-f38b-4930-9277-9b669d01c78b" pid=4945 comm="apparmor_parser"
[ 49.961216] audit: type=1400 audit(1775295858.038:294): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-a97c99f9-f38b-4930-9277-9b669d01c78b//passt" pid=4945 comm="apparmor_parser"
[ 55.017663] audit: type=1400 audit(1775295863.149:295): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-37a1a6fd-d656-4a18-bd2e-5a6d71cd2171" pid=5101 comm="apparmor_parser"
[ 55.018280] audit: type=1400 audit(1775295863.149:296): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-37a1a6fd-d656-4a18-bd2e-5a6d71cd2171//passt" pid=5101 comm="apparmor_parser"
[ 55.090784] audit: type=1400 audit(1775295863.222:297): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-37a1a6fd-d656-4a18-bd2e-5a6d71cd2171" pid=5104 comm="apparmor_parser"
[ 55.120952] audit: type=1400 audit(1775295863.250:298): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-37a1a6fd-d656-4a18-bd2e-5a6d71cd2171//passt" pid=5104 comm="apparmor_parser"
[ 55.193410] audit: type=1400 audit(1775295863.322:299): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-37a1a6fd-d656-4a18-bd2e-5a6d71cd2171" pid=5108 comm="apparmor_parser"
[ 55.224247] audit: type=1400 audit(1775295863.355:300): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-37a1a6fd-d656-4a18-bd2e-5a6d71cd2171//passt" pid=5108 comm="apparmor_parser"
[ 55.318241] audit: type=1400 audit(1775295863.447:301): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-37a1a6fd-d656-4a18-bd2e-5a6d71cd2171" pid=5113 comm="apparmor_parser"
[ 55.318806] audit: type=1400 audit(1775295863.447:302): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-37a1a6fd-d656-4a18-bd2e-5a6d71cd2171//passt" pid=5113 comm="apparmor_parser"
[ 55.329735] brkvm: port 15(vnet19) entered blocking state
[ 55.329741] brkvm: port 15(vnet19) entered disabled state
[ 55.329748] vnet19: entered allmulticast mode
[ 55.329803] vnet19: entered promiscuous mode
[ 55.329962] brkvm: port 15(vnet19) entered blocking state
[ 55.329966] brkvm: port 15(vnet19) entered forwarding state
[ 55.412706] audit: type=1400 audit(1775295863.544:303): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-37a1a6fd-d656-4a18-bd2e-5a6d71cd2171" pid=5129 comm="apparmor_parser"
[ 55.450706] audit: type=1400 audit(1775295863.584:304): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-37a1a6fd-d656-4a18-bd2e-5a6d71cd2171//passt" pid=5129 comm="apparmor_parser"
[ 60.972324] kauditd_printk_skb: 2 callbacks suppressed
[ 60.972328] audit: type=1400 audit(1775295869.130:307): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-af733779-206e-4d38-a047-b329f2515d40" pid=5162 comm="apparmor_parser"
[ 60.972878] audit: type=1400 audit(1775295869.130:308): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-af733779-206e-4d38-a047-b329f2515d40//passt" pid=5162 comm="apparmor_parser"
[ 61.046131] audit: type=1400 audit(1775295869.202:309): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-af733779-206e-4d38-a047-b329f2515d40" pid=5165 comm="apparmor_parser"
[ 61.088518] audit: type=1400 audit(1775295869.246:310): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-af733779-206e-4d38-a047-b329f2515d40//passt" pid=5165 comm="apparmor_parser"
[ 61.158787] audit: type=1400 audit(1775295869.314:311): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-af733779-206e-4d38-a047-b329f2515d40" pid=5172 comm="apparmor_parser"
[ 61.192221] audit: type=1400 audit(1775295869.351:312): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-af733779-206e-4d38-a047-b329f2515d40//passt" pid=5172 comm="apparmor_parser"
[ 61.266433] audit: type=1400 audit(1775295869.423:313): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-af733779-206e-4d38-a047-b329f2515d40" pid=5176 comm="apparmor_parser"
[ 61.267005] audit: type=1400 audit(1775295869.423:314): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-af733779-206e-4d38-a047-b329f2515d40//passt" pid=5176 comm="apparmor_parser"
[ 61.278468] brkvm: port 16(vnet20) entered blocking state
[ 61.278473] brkvm: port 16(vnet20) entered disabled state
[ 61.278478] vnet20: entered allmulticast mode
[ 61.278525] vnet20: entered promiscuous mode
[ 61.278654] brkvm: port 16(vnet20) entered blocking state
[ 61.278658] brkvm: port 16(vnet20) entered forwarding state
[ 61.351807] audit: type=1400 audit(1775295869.511:315): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-af733779-206e-4d38-a047-b329f2515d40" pid=5193 comm="apparmor_parser"
[ 61.391774] audit: type=1400 audit(1775295869.551:316): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-af733779-206e-4d38-a047-b329f2515d40//passt" pid=5193 comm="apparmor_parser"
[ 66.939374] kauditd_printk_skb: 2 callbacks suppressed
[ 66.939377] audit: type=1400 audit(1775295875.111:319): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-d3a8ea13-d235-4918-9380-68e12fe98c75" pid=5391 comm="apparmor_parser"
[ 66.940042] audit: type=1400 audit(1775295875.111:320): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-d3a8ea13-d235-4918-9380-68e12fe98c75//passt" pid=5391 comm="apparmor_parser"
[ 67.010681] audit: type=1400 audit(1775295875.179:321): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-d3a8ea13-d235-4918-9380-68e12fe98c75" pid=5394 comm="apparmor_parser"
[ 67.051969] audit: type=1400 audit(1775295875.223:322): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-d3a8ea13-d235-4918-9380-68e12fe98c75//passt" pid=5394 comm="apparmor_parser"
[ 67.125348] audit: type=1400 audit(1775295875.295:323): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-d3a8ea13-d235-4918-9380-68e12fe98c75" pid=5398 comm="apparmor_parser"
[ 67.155654] audit: type=1400 audit(1775295875.327:324): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-d3a8ea13-d235-4918-9380-68e12fe98c75//passt" pid=5398 comm="apparmor_parser"
[ 67.233116] audit: type=1400 audit(1775295875.403:325): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-d3a8ea13-d235-4918-9380-68e12fe98c75" pid=5409 comm="apparmor_parser"
[ 67.233718] audit: type=1400 audit(1775295875.403:326): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-d3a8ea13-d235-4918-9380-68e12fe98c75//passt" pid=5409 comm="apparmor_parser"
[ 67.246785] brkvm: port 17(vnet21) entered blocking state
[ 67.246792] brkvm: port 17(vnet21) entered disabled state
[ 67.246800] vnet21: entered allmulticast mode
[ 67.246872] vnet21: entered promiscuous mode
[ 67.247128] brkvm: port 17(vnet21) entered blocking state
[ 67.247133] brkvm: port 17(vnet21) entered forwarding state
[ 67.328686] audit: type=1400 audit(1775295875.499:327): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-d3a8ea13-d235-4918-9380-68e12fe98c75" pid=5427 comm="apparmor_parser"
[ 67.363309] audit: type=1400 audit(1775295875.535:328): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-d3a8ea13-d235-4918-9380-68e12fe98c75//passt" pid=5427 comm="apparmor_parser"
[ 72.936392] kauditd_printk_skb: 2 callbacks suppressed
[ 72.936395] audit: type=1400 audit(1775295881.113:331): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-d005e45d-d348-43ec-9113-8bf16f2f4310" pid=5617 comm="apparmor_parser"
[ 72.936950] audit: type=1400 audit(1775295881.113:332): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-d005e45d-d348-43ec-9113-8bf16f2f4310//passt" pid=5617 comm="apparmor_parser"
[ 73.014015] audit: type=1400 audit(1775295881.193:333): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-d005e45d-d348-43ec-9113-8bf16f2f4310" pid=5620 comm="apparmor_parser"
[ 73.058035] audit: type=1400 audit(1775295881.237:334): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-d005e45d-d348-43ec-9113-8bf16f2f4310//passt" pid=5620 comm="apparmor_parser"
[ 73.141020] audit: type=1400 audit(1775295881.317:335): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-d005e45d-d348-43ec-9113-8bf16f2f4310" pid=5626 comm="apparmor_parser"
[ 73.169875] audit: type=1400 audit(1775295881.349:336): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-d005e45d-d348-43ec-9113-8bf16f2f4310//passt" pid=5626 comm="apparmor_parser"
[ 73.247880] audit: type=1400 audit(1775295881.425:337): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-d005e45d-d348-43ec-9113-8bf16f2f4310" pid=5630 comm="apparmor_parser"
[ 73.248456] audit: type=1400 audit(1775295881.425:338): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-d005e45d-d348-43ec-9113-8bf16f2f4310//passt" pid=5630 comm="apparmor_parser"
[ 73.259735] brkvm: port 18(vnet22) entered blocking state
[ 73.259741] brkvm: port 18(vnet22) entered disabled state
[ 73.259747] vnet22: entered allmulticast mode
[ 73.259864] vnet22: entered promiscuous mode
[ 73.260093] brkvm: port 18(vnet22) entered blocking state
[ 73.260098] brkvm: port 18(vnet22) entered forwarding state
[ 73.341505] audit: type=1400 audit(1775295881.521:339): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-d005e45d-d348-43ec-9113-8bf16f2f4310" pid=5645 comm="apparmor_parser"
[ 73.373779] audit: type=1400 audit(1775295881.553:340): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="libvirt-d005e45d-d348-43ec-9113-8bf16f2f4310//passt" pid=5645 comm="apparmor_parser"
Attachment:
signature.asc
Description: This is a digitally signed message part