Re: ublk: kernel crash when killing SPDK application

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

 



On 15/04/2025 15:56, Ming Lei wrote:
> On Tue, Apr 15, 2025 at 10:58:37AM +0000, Guy Eisenberg wrote:
>> I am writing to report a kernel crash that occurred after terminating (kill -9) an SPDK application using ublk.
>> Below are the details of the incident, including steps to reproduce the issue and the call stack.
>>
>> Incident Description:
>> After terminating an SPDK application, the system occasionally experiences a kernel crash.
>> This issue is not consistent but happens once every few tries under the following conditions.
>> We are using kernel 6.14.0-061400-generic
>>
>> Steps to Reproduce:
>> 1. install SPDK:
>>       git clone https://github.com/spdk/spdk ;
>>       cd spdk
>>       ./configure --disable-coverage --disable-debug --disable-tests --enable-unit-tests --without-crypto --without-fio --with-vhost --with-rdma --without-nvme-cuse --without-fuse --without-vfio-user --without-vtune --without-iscsi-initiator --without-shared --with-ublk --with-uring --with-raid5f
>>       make
>>       make install
>> 2.  Create SPDK bdev (here we used PCI 0000.8b.00.0 as the nvme target, and named the bdev as guy_bdev):
>>       ./spdk/scripts/setup.sh reset
>>       ./spdk/scripts/setup.sh
>>       /usr/local/bin/spdk_tgt --mem-size 2048 -m 0xff
>>       ./spdk/scripts/rpc.py bdev_nvme_attach_controller -b guy_bdev -t PCIe -a 0000.8b.00.0
>> 3. Expose it via ublk
>>       modprobe ublk_drv
>>       ./spdk/scripts/rpc.py ublk_create_target
>>       ./spdk/scripts/rpc.py ublk_start_disk -q 8 -d 128 guy_bdevn1 0
>> 4. Run IO to the /dev/ublkb0 that was created
>>       Kill the spdk_tgt process (kill -9)
>>
>>
>> Call Stack:
>>       Below is the call stack captured during one of the crashes:
>>
>> [54346.157495] [ T288311] BUG: kernel NULL pointer dereference, address: 0000000000000000
>> [54346.157625] [ T288311] #PF: supervisor write access in kernel mode
>> [54346.157708] [ T288311] #PF: error_code(0x0002) - not-present page
>> [54346.157790] [ T288311] PGD 0 P4D 0 
>> [54346.157911] [ T288311] Oops: Oops: 0002 [#1] PREEMPT SMP PTI
>> [54346.158010] [ T288311] CPU: 0 UID: 0 PID: 288311 Comm: reactor_0 Kdump: loaded Tainted: G           OE      6.14.0-061400-generic #202503241442
>> [54346.158264] [ T288311] Tainted: [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
>> [54346.158374] [ T288311] Hardware name: Supermicro SYS-2028BT-HNR+/X10DRT-B+, BIOS 2.0 01/10/2017
>> [54346.158490] [ T288311] RIP: 0010:percpu_ref_get_many+0x35/0x50
> 
> Looks one uring_cmd use-after-free issue.
> 
> And the following patchset may avoid it:
> 
> 	https://lore.kernel.org/linux-block/20250414112554.3025113-1-ming.lei@xxxxxxxxxx/
> 
> If you can build & test kernel, please apply the following debug patch
> against v6.14 and post the panic log.
> 
> 
> diff --git a/drivers/block/ublk_drv.c b/drivers/block/ublk_drv.c
> index ca9a67b5b537..6e50e8b9f836 100644
> --- a/drivers/block/ublk_drv.c
> +++ b/drivers/block/ublk_drv.c
> @@ -1127,6 +1127,7 @@ static void ubq_complete_io_cmd(struct ublk_io *io, int res,
>  
>  	/* tell ublksrv one io request is coming */
>  	io_uring_cmd_done(io->cmd, res, 0, issue_flags);
> +	io->cmd = NULL;
>  }
>  
>  #define UBLK_REQUEUE_DELAY_MS	3
> @@ -1498,8 +1499,10 @@ static void ublk_cancel_cmd(struct ublk_queue *ubq, struct ublk_io *io,
>  		io->flags |= UBLK_IO_FLAG_CANCELED;
>  	spin_unlock(&ubq->cancel_lock);
>  
> -	if (!done)
> +	if (!done) {
>  		io_uring_cmd_done(io->cmd, UBLK_IO_RES_ABORT, 0, issue_flags);
> +		io->cmd = NULL;
> +	}
>  }
>  
>  /*
> @@ -1770,6 +1773,8 @@ static int __ublk_ch_uring_cmd(struct io_uring_cmd *cmd,
>  	if (!ubq || ub_cmd->q_id != ubq->q_id)
>  		goto out;
>  
> +	WARN_ON_ONCE(ubq->canceling);
> +
>  	if (ubq->ubq_daemon && ubq->ubq_daemon != current)
>  		goto out;
>  
> 
> 
> 
> Thanks,
> Ming
> 

Hi Ming,

Unfortunately your patch did not solve the issue, it is still happening (6.14 Kernel)

I believe the issue is that ublk_cancel_cmd() is calling io_uring_cmd_done() on a uring_cmd that is currently scheduled as a task work by io_uring_cmd_complete_in_task()

I reproduced with the patch below and saw the warning I added shortly before the crash. The dmesg log is attached.

I'm not sure how to solve the issue though. Unless we wait for the task work to complete in ublk_cancel cmd. I can't see any way to cancel the task work

Would appreciate your assistance,

Regards,

Jared

diff --git a/drivers/block/ublk_drv.c b/drivers/block/ublk_drv.c
index ca9a67b5b537..d9f544206b36 100644
--- a/drivers/block/ublk_drv.c
+++ b/drivers/block/ublk_drv.c
@@ -72,6 +72,10 @@
 	(UBLK_PARAM_TYPE_BASIC | UBLK_PARAM_TYPE_DISCARD | \
 	 UBLK_PARAM_TYPE_DEVT | UBLK_PARAM_TYPE_ZONED)
 
+#ifndef IORING_URING_CMD_TW_SCHED
+        #define IORING_URING_CMD_TW_SCHED (1U << 31)
+#endif
+
 struct ublk_rq_data {
 	struct llist_node node;
 
@@ -1236,6 +1240,7 @@ static void ublk_rq_task_work_cb(struct io_uring_cmd *cmd, unsigned issue_flags)
 	struct ublk_uring_cmd_pdu *pdu = ublk_get_uring_cmd_pdu(cmd);
 	struct ublk_queue *ubq = pdu->ubq;
 
+	cmd->flags &= ~IORING_URING_CMD_TW_SCHED;
 	ublk_forward_io_cmds(ubq, issue_flags);
 }
 
@@ -1245,7 +1250,7 @@ static void ublk_queue_cmd(struct ublk_queue *ubq, struct request *rq)
 
 	if (llist_add(&data->node, &ubq->io_cmds)) {
 		struct ublk_io *io = &ubq->ios[rq->tag];
-
+		io->cmd->flags |= IORING_URING_CMD_TW_SCHED;
 		io_uring_cmd_complete_in_task(io->cmd, ublk_rq_task_work_cb);
 	}
 }
@@ -1498,8 +1503,10 @@ static void ublk_cancel_cmd(struct ublk_queue *ubq, struct ublk_io *io,
 		io->flags |= UBLK_IO_FLAG_CANCELED;
 	spin_unlock(&ubq->cancel_lock);
 
-	if (!done)
+	if (!done) {
+		WARN_ON_ONCE(io->cmd->flags & IORING_URING_CMD_TW_SCHED);
 		io_uring_cmd_done(io->cmd, UBLK_IO_RES_ABORT, 0, issue_flags);
+        }
 }
 
 /*
@@ -1925,6 +1932,7 @@ static inline int ublk_ch_uring_cmd_local(struct io_uring_cmd *cmd,
 static void ublk_ch_uring_cmd_cb(struct io_uring_cmd *cmd,
 		unsigned int issue_flags)
 {
+	cmd->flags &= ~IORING_URING_CMD_TW_SCHED;
 	ublk_ch_uring_cmd_local(cmd, issue_flags);
 }
 
@@ -1937,6 +1945,7 @@ static int ublk_ch_uring_cmd(struct io_uring_cmd *cmd, unsigned int issue_flags)
 
 	/* well-implemented server won't run into unlocked */
 	if (unlikely(issue_flags & IO_URING_F_UNLOCKED)) {
+		cmd->flags |= IORING_URING_CMD_TW_SCHED;
 		io_uring_cmd_complete_in_task(cmd, ublk_ch_uring_cmd_cb);
 		return -EIOCBQUEUED;
 	}
diff --git a/include/linux/io_uring/cmd.h b/include/linux/io_uring/cmd.h
index abd0c8bd950b..3ac2ef7bd99a 100644
--- a/include/linux/io_uring/cmd.h
+++ b/include/linux/io_uring/cmd.h
@@ -7,6 +7,7 @@
 
 /* only top 8 bits of sqe->uring_cmd_flags for kernel internal use */
 #define IORING_URING_CMD_CANCELABLE	(1U << 30)
+#define IORING_URING_CMD_TW_SCHED	(1U << 31)
 
 struct io_uring_cmd {
 	struct file	*file;










[    0.000000] [      T0] Linux version 6.14.0+ (jared@nvme195) (gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #1 SMP PREEMPT_DYNAMIC Tue Apr 22 06:14:58 UTC 2025
[    0.000000] [      T0] Command line: BOOT_IMAGE=/boot/vmlinuz-6.14.0+ root=UUID=942a67f1-6e6c-4a49-8018-ff4408817ffd ro drm.panic_screen=kmsg crashkernel=4G
[    0.000000] [      T0] KERNEL supported cpus:
[    0.000000] [      T0]   Intel GenuineIntel
[    0.000000] [      T0]   AMD AuthenticAMD
[    0.000000] [      T0]   Hygon HygonGenuine
[    0.000000] [      T0]   Centaur CentaurHauls
[    0.000000] [      T0]   zhaoxin   Shanghai  
[    0.000000] [      T0] BIOS-provided physical RAM map:
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000000100000-0x0000000078e53fff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000078e54000-0x000000007966efff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x000000007966f000-0x00000000796acfff] ACPI data
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000796ad000-0x0000000079cb7fff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000079cb8000-0x000000007bcfcfff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x000000007bcfd000-0x000000007bcfdfff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x000000007bcfe000-0x000000007bd83fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x000000007bd84000-0x000000007bffffff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x000000007c000000-0x000000008fffffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed44fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000100000000-0x000000107fffffff] usable
[    0.000000] [      T0] NX (Execute Disable) protection: active
[    0.000000] [      T0] APIC: Static calls initialized
[    0.000000] [      T0] e820: update [mem 0x72ce8018-0x72cee657] usable ==> usable
[    0.000000] [      T0] e820: update [mem 0x72cd6018-0x72ce7057] usable ==> usable
[    0.000000] [      T0] e820: update [mem 0x72cc4018-0x72cd5057] usable ==> usable
[    0.000000] [      T0] e820: update [mem 0x72cb2018-0x72cc3057] usable ==> usable
[    0.000000] [      T0] e820: update [mem 0x72ca0018-0x72cb1057] usable ==> usable
[    0.000000] [      T0] e820: update [mem 0x72c97018-0x72c9f057] usable ==> usable
[    0.000000] [      T0] e820: update [mem 0x72c90018-0x72c96057] usable ==> usable
[    0.000000] [      T0] e820: update [mem 0x72c66018-0x72c8f657] usable ==> usable
[    0.000000] [      T0] e820: update [mem 0x72c3c018-0x72c65657] usable ==> usable
[    0.000000] [      T0] e820: update [mem 0x72c34018-0x72c3be57] usable ==> usable
[    0.000000] [      T0] e820: update [mem 0x72c2c018-0x72c33e57] usable ==> usable
[    0.000000] [      T0] e820: update [mem 0x72c24018-0x72c2be57] usable ==> usable
[    0.000000] [      T0] extended physical RAM map:
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000000100000-0x0000000072c24017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c24018-0x0000000072c2be57] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c2be58-0x0000000072c2c017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c2c018-0x0000000072c33e57] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c33e58-0x0000000072c34017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c34018-0x0000000072c3be57] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c3be58-0x0000000072c3c017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c3c018-0x0000000072c65657] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c65658-0x0000000072c66017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c66018-0x0000000072c8f657] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c8f658-0x0000000072c90017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c90018-0x0000000072c96057] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c96058-0x0000000072c97017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c97018-0x0000000072c9f057] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072c9f058-0x0000000072ca0017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072ca0018-0x0000000072cb1057] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072cb1058-0x0000000072cb2017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072cb2018-0x0000000072cc3057] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072cc3058-0x0000000072cc4017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072cc4018-0x0000000072cd5057] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072cd5058-0x0000000072cd6017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072cd6018-0x0000000072ce7057] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072ce7058-0x0000000072ce8017] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072ce8018-0x0000000072cee657] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000072cee658-0x0000000078e53fff] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000078e54000-0x000000007966efff] reserved
[    0.000000] [      T0] reserve setup_data: [mem 0x000000007966f000-0x00000000796acfff] ACPI data
[    0.000000] [      T0] reserve setup_data: [mem 0x00000000796ad000-0x0000000079cb7fff] ACPI NVS
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000079cb8000-0x000000007bcfcfff] reserved
[    0.000000] [      T0] reserve setup_data: [mem 0x000000007bcfd000-0x000000007bcfdfff] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x000000007bcfe000-0x000000007bd83fff] reserved
[    0.000000] [      T0] reserve setup_data: [mem 0x000000007bd84000-0x000000007bffffff] usable
[    0.000000] [      T0] reserve setup_data: [mem 0x000000007c000000-0x000000008fffffff] reserved
[    0.000000] [      T0] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed44fff] reserved
[    0.000000] [      T0] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] [      T0] reserve setup_data: [mem 0x0000000100000000-0x000000107fffffff] usable
[    0.000000] [      T0] efi: EFI v2.4 by American Megatrends
[    0.000000] [      T0] efi: ACPI=0x79807000 ACPI 2.0=0x79807000 ESRT=0x7ba5fc98 SMBIOS=0xf05e0 SMBIOS 3.0=0x7ba5b000 MOKvar=0x7ba5a000 INITRD=0x74fd9898 
[    0.000000] [      T0] efi: Remove mem30: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] [      T0] e820: remove [mem 0x80000000-0x8fffffff] reserved
[    0.000000] [      T0] efi: Not removing mem31: MMIO range=[0xfed1c000-0xfed44fff] (164KB) from e820 map
[    0.000000] [      T0] efi: Remove mem32: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[    0.000000] [      T0] e820: remove [mem 0xff000000-0xffffffff] reserved
[    0.000000] [      T0] SMBIOS 3.0.0 present.
[    0.000000] [      T0] DMI: Supermicro SYS-2028BT-HNR+/X10DRT-B+, BIOS 2.0 01/10/2017
[    0.000000] [      T0] DMI: Memory slots populated: 4/24
[    0.000000] [      T0] tsc: Fast TSC calibration using PIT
[    0.000000] [      T0] tsc: Detected 2099.868 MHz processor
[    0.000010] [      T0] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000013] [      T0] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000033] [      T0] last_pfn = 0x1080000 max_arch_pfn = 0x400000000
[    0.000039] [      T0] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[    0.000041] [      T0] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000705] [      T0] last_pfn = 0x7c000 max_arch_pfn = 0x400000000
[    0.010788] [      T0] found SMP MP-table at [mem 0x000fd020-0x000fd02f]
[    0.010805] [      T0] esrt: Reserving ESRT space from 0x000000007ba5fc98 to 0x000000007ba5fcd0.
[    0.010816] [      T0] Using GB pages for direct mapping
[    0.011308] [      T0] Secure boot disabled
[    0.011309] [      T0] RAMDISK: [mem 0x434a0000-0x63f56fff]
[    0.011838] [      T0] ACPI: Early table checksum verification disabled
[    0.011843] [      T0] ACPI: RSDP 0x0000000079807000 000024 (v02 SUPERM)
[    0.011848] [      T0] ACPI: XSDT 0x00000000798070B0 0000DC (v01                 01072009 AMI  00010013)
[    0.011856] [      T0] ACPI: FACP 0x0000000079838130 00010C (v05 SUPERM SMCI--MB 01072009 AMI  00010013)
[    0.011863] [      T0] ACPI: DSDT 0x0000000079807220 030F0D (v02 SUPERM SMCI--MB 01072009 INTL 20091013)
[    0.011868] [      T0] ACPI: FACS 0x0000000079CB6F80 000040
[    0.011872] [      T0] ACPI: APIC 0x0000000079838240 000224 (v03 SUPERM SMCI--MB 01072009 AMI  00010013)
[    0.011876] [      T0] ACPI: FPDT 0x0000000079838468 000044 (v01 SUPERM SMCI--MB 01072009 AMI  00010013)
[    0.011881] [      T0] ACPI: FIDT 0x00000000798384B0 00009C (v01 SUPERM SMCI--MB 01072009 AMI  00010013)
[    0.011885] [      T0] ACPI: SPMI 0x0000000079838550 000040 (v05 SUPERM SMCI--MB 00000000 AMI. 00000000)
[    0.011889] [      T0] ACPI: MCFG 0x0000000079838590 00003C (v01 SUPERM SMCI--MB 01072009 MSFT 00000097)
[    0.011894] [      T0] ACPI: UEFI 0x00000000798385D0 000042 (v01 SUPERM SMCI--MB 01072009      00000000)
[    0.011898] [      T0] ACPI: HPET 0x0000000079838618 000038 (v01 SUPERM SMCI--MB 00000001 INTL 20091013)
[    0.011902] [      T0] ACPI: MSCT 0x0000000079838650 000090 (v01 SUPERM SMCI--MB 00000001 INTL 20091013)
[    0.011907] [      T0] ACPI: SLIT 0x00000000798386E0 000030 (v01 SUPERM SMCI--MB 00000001 INTL 20091013)
[    0.011911] [      T0] ACPI: SRAT 0x0000000079838710 001158 (v03 SUPERM SMCI--MB 00000001 INTL 20091013)
[    0.011915] [      T0] ACPI: WDDT 0x0000000079839868 000040 (v01 SUPERM SMCI--MB 00000000 INTL 20091013)
[    0.011920] [      T0] ACPI: SSDT 0x00000000798398A8 016FB3 (v02 SUPERM PmMgt    00000001 INTL 20120913)
[    0.011924] [      T0] ACPI: NITR 0x0000000079850860 000071 (v02 SUPERM SMCI--MB 00000001 INTL 20091013)
[    0.011928] [      T0] ACPI: BGRT 0x00000000798508D8 000038 (v01 SUPERM SMCI--MB 01072009 AMI  00010013)
[    0.011932] [      T0] ACPI: SSDT 0x0000000079850910 00264C (v02 SUPERM SpsNm    00000002 INTL 20120913)
[    0.011937] [      T0] ACPI: SSDT 0x0000000079852F60 000064 (v02 SUPERM SpsNvs   00000002 INTL 20120913)
[    0.011941] [      T0] ACPI: PRAD 0x0000000079852FC8 000102 (v02 SUPERM SMCI--MB 00000002 INTL 20120913)
[    0.011945] [      T0] ACPI: DMAR 0x00000000798530D0 0001B0 (v01 SUPERM SMCI--MB 00000001 INTL 20091013)
[    0.011950] [      T0] ACPI: HEST 0x0000000079853280 00027C (v01 SUPERM SMCI--MB 00000001 INTL 00000001)
[    0.011954] [      T0] ACPI: BERT 0x0000000079853500 000030 (v01 SUPERM SMCI--MB 00000001 INTL 00000001)
[    0.011958] [      T0] ACPI: ERST 0x0000000079853530 000230 (v01 SUPERM SMCI--MB 00000001 INTL 00000001)
[    0.011962] [      T0] ACPI: EINJ 0x0000000079853760 000130 (v01 SUPERM SMCI--MB 00000001 INTL 00000001)
[    0.011966] [      T0] ACPI: Reserving FACP table memory at [mem 0x79838130-0x7983823b]
[    0.011968] [      T0] ACPI: Reserving DSDT table memory at [mem 0x79807220-0x7983812c]
[    0.011969] [      T0] ACPI: Reserving FACS table memory at [mem 0x79cb6f80-0x79cb6fbf]
[    0.011970] [      T0] ACPI: Reserving APIC table memory at [mem 0x79838240-0x79838463]
[    0.011972] [      T0] ACPI: Reserving FPDT table memory at [mem 0x79838468-0x798384ab]
[    0.011973] [      T0] ACPI: Reserving FIDT table memory at [mem 0x798384b0-0x7983854b]
[    0.011974] [      T0] ACPI: Reserving SPMI table memory at [mem 0x79838550-0x7983858f]
[    0.011975] [      T0] ACPI: Reserving MCFG table memory at [mem 0x79838590-0x798385cb]
[    0.011976] [      T0] ACPI: Reserving UEFI table memory at [mem 0x798385d0-0x79838611]
[    0.011977] [      T0] ACPI: Reserving HPET table memory at [mem 0x79838618-0x7983864f]
[    0.011978] [      T0] ACPI: Reserving MSCT table memory at [mem 0x79838650-0x798386df]
[    0.011980] [      T0] ACPI: Reserving SLIT table memory at [mem 0x798386e0-0x7983870f]
[    0.011981] [      T0] ACPI: Reserving SRAT table memory at [mem 0x79838710-0x79839867]
[    0.011982] [      T0] ACPI: Reserving WDDT table memory at [mem 0x79839868-0x798398a7]
[    0.011983] [      T0] ACPI: Reserving SSDT table memory at [mem 0x798398a8-0x7985085a]
[    0.011984] [      T0] ACPI: Reserving NITR table memory at [mem 0x79850860-0x798508d0]
[    0.011985] [      T0] ACPI: Reserving BGRT table memory at [mem 0x798508d8-0x7985090f]
[    0.011987] [      T0] ACPI: Reserving SSDT table memory at [mem 0x79850910-0x79852f5b]
[    0.011988] [      T0] ACPI: Reserving SSDT table memory at [mem 0x79852f60-0x79852fc3]
[    0.011989] [      T0] ACPI: Reserving PRAD table memory at [mem 0x79852fc8-0x798530c9]
[    0.011990] [      T0] ACPI: Reserving DMAR table memory at [mem 0x798530d0-0x7985327f]
[    0.011991] [      T0] ACPI: Reserving HEST table memory at [mem 0x79853280-0x798534fb]
[    0.011992] [      T0] ACPI: Reserving BERT table memory at [mem 0x79853500-0x7985352f]
[    0.011994] [      T0] ACPI: Reserving ERST table memory at [mem 0x79853530-0x7985375f]
[    0.011995] [      T0] ACPI: Reserving EINJ table memory at [mem 0x79853760-0x7985388f]
[    0.012060] [      T0] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.012063] [      T0] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x87fffffff]
[    0.012064] [      T0] ACPI: SRAT: Node 1 PXM 1 [mem 0x880000000-0x107fffffff]
[    0.012072] [      T0] NUMA: Initialized distance table, cnt=2
[    0.012076] [      T0] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x87fffffff] -> [mem 0x00001000-0x87fffffff]
[    0.012090] [      T0] NODE_DATA(0) allocated [mem 0x87ffd5680-0x87fffffff]
[    0.012124] [      T0] NODE_DATA(1) allocated [mem 0x107ffd4680-0x107fffefff]
[    0.012307] [      T0] crashkernel low memory reserved: 0x33000000 - 0x43000000 (256 MB)
[    0.012309] [      T0] crashkernel reserved: 0x0000000f7f000000 - 0x000000107f000000 (4096 MB)
[    0.012424] [      T0] Zone ranges:
[    0.012425] [      T0]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.012428] [      T0]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.012430] [      T0]   Normal   [mem 0x0000000100000000-0x000000107fffffff]
[    0.012432] [      T0]   Device   empty
[    0.012433] [      T0] Movable zone start for each node
[    0.012437] [      T0] Early memory node ranges
[    0.012437] [      T0]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.012439] [      T0]   node   0: [mem 0x0000000000100000-0x0000000078e53fff]
[    0.012441] [      T0]   node   0: [mem 0x000000007bcfd000-0x000000007bcfdfff]
[    0.012442] [      T0]   node   0: [mem 0x000000007bd84000-0x000000007bffffff]
[    0.012443] [      T0]   node   0: [mem 0x0000000100000000-0x000000087fffffff]
[    0.012448] [      T0]   node   1: [mem 0x0000000880000000-0x000000107fffffff]
[    0.012453] [      T0] Initmem setup node 0 [mem 0x0000000000001000-0x000000087fffffff]
[    0.012457] [      T0] Initmem setup node 1 [mem 0x0000000880000000-0x000000107fffffff]
[    0.012463] [      T0] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.012502] [      T0] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.017300] [      T0] On node 0, zone DMA32: 11945 pages in unavailable ranges
[    0.017313] [      T0] On node 0, zone DMA32: 134 pages in unavailable ranges
[    0.093373] [      T0] On node 0, zone Normal: 16384 pages in unavailable ranges
[    0.185807] [      T0] ACPI: PM-Timer IO Port: 0x408
[    0.185828] [      T0] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.185831] [      T0] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.185832] [      T0] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.185833] [      T0] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.185834] [      T0] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.185835] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.185836] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.185838] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.185839] [      T0] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.185840] [      T0] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.185841] [      T0] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.185842] [      T0] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.185844] [      T0] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.185845] [      T0] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.185846] [      T0] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.185847] [      T0] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.185848] [      T0] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.185849] [      T0] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.185850] [      T0] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.185851] [      T0] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.185852] [      T0] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.185853] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.185854] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.185855] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.185856] [      T0] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.185857] [      T0] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.185858] [      T0] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.185859] [      T0] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.185860] [      T0] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.185861] [      T0] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.185862] [      T0] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.185863] [      T0] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.185874] [      T0] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[    0.185880] [      T0] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.185885] [      T0] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.185889] [      T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.185891] [      T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.185897] [      T0] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.185899] [      T0] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.185910] [      T0] e820: update [mem 0x76feb000-0x770ccfff] usable ==> reserved
[    0.185935] [      T0] TSC deadline timer available
[    0.185942] [      T0] CPU topo: Max. logical packages:   2
[    0.185943] [      T0] CPU topo: Max. logical dies:       2
[    0.185944] [      T0] CPU topo: Max. dies per package:   1
[    0.185950] [      T0] CPU topo: Max. threads per core:   2
[    0.185952] [      T0] CPU topo: Num. cores per package:     8
[    0.185953] [      T0] CPU topo: Num. threads per package:  16
[    0.185954] [      T0] CPU topo: Allowing 32 present CPUs plus 0 hotplug CPUs
[    0.185978] [      T0] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.185980] [      T0] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.185983] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c24000-0x72c24fff]
[    0.185985] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c2b000-0x72c2bfff]
[    0.185986] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c2c000-0x72c2cfff]
[    0.185989] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c33000-0x72c33fff]
[    0.185990] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c34000-0x72c34fff]
[    0.185992] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c3b000-0x72c3bfff]
[    0.185993] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c3c000-0x72c3cfff]
[    0.185995] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c65000-0x72c65fff]
[    0.185997] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c66000-0x72c66fff]
[    0.185999] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c8f000-0x72c8ffff]
[    0.186000] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c90000-0x72c90fff]
[    0.186003] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c96000-0x72c96fff]
[    0.186004] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c97000-0x72c97fff]
[    0.186006] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72c9f000-0x72c9ffff]
[    0.186007] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72ca0000-0x72ca0fff]
[    0.186009] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72cb1000-0x72cb1fff]
[    0.186010] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72cb2000-0x72cb2fff]
[    0.186013] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72cc3000-0x72cc3fff]
[    0.186014] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72cc4000-0x72cc4fff]
[    0.186017] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72cd5000-0x72cd5fff]
[    0.186018] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72cd6000-0x72cd6fff]
[    0.186021] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72ce7000-0x72ce7fff]
[    0.186022] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72ce8000-0x72ce8fff]
[    0.186024] [      T0] PM: hibernation: Registered nosave memory: [mem 0x72cee000-0x72ceefff]
[    0.186027] [      T0] PM: hibernation: Registered nosave memory: [mem 0x76feb000-0x770ccfff]
[    0.186029] [      T0] PM: hibernation: Registered nosave memory: [mem 0x78e54000-0x7966efff]
[    0.186030] [      T0] PM: hibernation: Registered nosave memory: [mem 0x7966f000-0x796acfff]
[    0.186031] [      T0] PM: hibernation: Registered nosave memory: [mem 0x796ad000-0x79cb7fff]
[    0.186032] [      T0] PM: hibernation: Registered nosave memory: [mem 0x79cb8000-0x7bcfcfff]
[    0.186035] [      T0] PM: hibernation: Registered nosave memory: [mem 0x7bcfe000-0x7bd83fff]
[    0.186037] [      T0] PM: hibernation: Registered nosave memory: [mem 0x7c000000-0x7fffffff]
[    0.186038] [      T0] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xfed1bfff]
[    0.186039] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed44fff]
[    0.186040] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xffffffff]
[    0.186043] [      T0] [mem 0x80000000-0xfed1bfff] available for PCI devices
[    0.186045] [      T0] Booting paravirtualized kernel on bare hardware
[    0.186047] [      T0] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.186064] [      T0] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:2
[    0.189591] [      T0] percpu: Embedded 88 pages/cpu s237568 r8192 d114688 u524288
[    0.189602] [      T0] pcpu-alloc: s237568 r8192 d114688 u524288 alloc=1*2097152
[    0.189604] [      T0] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
[    0.189612] [      T0] pcpu-alloc: [0] 16 17 18 19 [0] 20 21 22 23 
[    0.189618] [      T0] pcpu-alloc: [1] 08 09 10 11 [1] 12 13 14 15 
[    0.189625] [      T0] pcpu-alloc: [1] 24 25 26 27 [1] 28 29 30 31 
[    0.189658] [      T0] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.14.0+ root=UUID=942a67f1-6e6c-4a49-8018-ff4408817ffd ro drm.panic_screen=kmsg crashkernel=4G
[    0.189739] [      T0] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.14.0+", will be passed to user space.
[    0.189750] [      T0] random: crng init done
[    0.189751] [      T0] printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes
[    0.190516] [      T0] Fallback order for Node 0: 0 1 
[    0.190521] [      T0] Fallback order for Node 1: 1 0 
[    0.190527] [      T0] Built 2 zonelists, mobility grouping on.  Total pages: 16748656
[    0.190528] [      T0] Policy zone: Normal
[    0.190537] [      T0] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.190548] [      T0] software IO TLB: area num 32.
[    0.434507] [      T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=2
[    0.434602] [      T0] Kernel/User page tables isolation: enabled
[    0.434689] [      T0] ftrace: allocating 57069 entries in 223 pages
[    0.476508] [      T0] ftrace: allocated 223 pages with 7 groups
[    0.477801] [      T0] Dynamic Preempt: voluntary
[    0.478085] [      T0] rcu: Preemptible hierarchical RCU implementation.
[    0.478086] [      T0] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[    0.478089] [      T0] 	Trampoline variant of Tasks RCU enabled.
[    0.478089] [      T0] 	Rude variant of Tasks RCU enabled.
[    0.478090] [      T0] 	Tracing variant of Tasks RCU enabled.
[    0.478091] [      T0] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.478092] [      T0] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.478157] [      T0] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[    0.478163] [      T0] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[    0.478173] [      T0] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[    0.483461] [      T0] NR_IRQS: 524544, nr_irqs: 1496, preallocated irqs: 16
[    0.483735] [      T0] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.483927] [      T0] Console: colour dummy device 80x25
[    0.483931] [      T0] printk: legacy console [tty0] enabled
[    0.484730] [      T0] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.484738] [      T0] ACPI: Core revision 20240827
[    0.485085] [      T0] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.485104] [      T0] APIC: Switch to symmetric I/O mode setup
[    0.485109] [      T0] DMAR: Host address width 46
[    0.485112] [      T0] DMAR: DRHD base: 0x000000fbffc000 flags: 0x0
[    0.485136] [      T0] DMAR: dmar0: reg_base_addr fbffc000 ver 1:0 cap 8d2078c106f0466 ecap f020de
[    0.485143] [      T0] DMAR: DRHD base: 0x000000c7ffc000 flags: 0x1
[    0.485150] [      T0] DMAR: dmar1: reg_base_addr c7ffc000 ver 1:0 cap 8d2078c106f0466 ecap f020de
[    0.485155] [      T0] DMAR: RMRR base: 0x0000007ba6e000 end: 0x0000007ba7dfff
[    0.485161] [      T0] DMAR: ATSR flags: 0x0
[    0.485166] [      T0] DMAR: RHSA base: 0x000000c7ffc000 proximity domain: 0x0
[    0.485170] [      T0] DMAR: RHSA base: 0x000000fbffc000 proximity domain: 0x1
[    0.485175] [      T0] DMAR-IR: IOAPIC id 3 under DRHD base  0xfbffc000 IOMMU 0
[    0.485180] [      T0] DMAR-IR: IOAPIC id 1 under DRHD base  0xc7ffc000 IOMMU 1
[    0.485184] [      T0] DMAR-IR: IOAPIC id 2 under DRHD base  0xc7ffc000 IOMMU 1
[    0.485187] [      T0] DMAR-IR: HPET id 0 under DRHD base 0xc7ffc000
[    0.485192] [      T0] DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
[    0.485193] [      T0] DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
[    0.486050] [      T0] DMAR-IR: Enabled IRQ remapping in xapic mode
[    0.486054] [      T0] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.486691] [      T0] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.491107] [      T0] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e44b3d805a, max_idle_ns: 440795294831 ns
[    0.491117] [      T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 4199.73 BogoMIPS (lpj=2099868)
[    0.491156] [      T0] CPU0: Thermal monitoring enabled (TM1)
[    0.491246] [      T0] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.491250] [      T0] Last level dTLB entries: 4KB 64, 2MB 32, 4MB 32, 1GB 4
[    0.491257] [      T0] process: using mwait in idle threads
[    0.491262] [      T0] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.491268] [      T0] Spectre V2 : Mitigation: Retpolines
[    0.491271] [      T0] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.491276] [      T0] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.491279] [      T0] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.491284] [      T0] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.491289] [      T0] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.491293] [      T0] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.491304] [      T0] MDS: Mitigation: Clear CPU buffers
[    0.491307] [      T0] TAA: Mitigation: Clear CPU buffers
[    0.491310] [      T0] MMIO Stale Data: Mitigation: Clear CPU buffers
[    0.491318] [      T0] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.491323] [      T0] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.491327] [      T0] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.491331] [      T0] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.491335] [      T0] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.524290] [      T0] Freeing SMP alternatives memory: 48K
[    0.524299] [      T0] pid_max: default: 32768 minimum: 301
[    0.527207] [      T0] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
[    0.527298] [      T0] landlock: Up and running.
[    0.527301] [      T0] Yama: becoming mindful.
[    0.527432] [      T0] AppArmor: AppArmor initialized
[    0.544215] [      T0] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    0.552463] [      T0] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, vmalloc hugepage)
[    0.552823] [      T0] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
[    0.553118] [      T0] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
[    0.554038] [      T1] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz (family: 0x6, model: 0x4f, stepping: 0x1)
[    0.554114] [      T1] Performance Events: PEBS fmt2+, Broadwell events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.554114] [      T1] ... version:                3
[    0.554114] [      T1] ... bit width:              48
[    0.554114] [      T1] ... generic registers:      4
[    0.554114] [      T1] ... value mask:             0000ffffffffffff
[    0.554114] [      T1] ... max period:             00007fffffffffff
[    0.554114] [      T1] ... fixed-purpose events:   3
[    0.554114] [      T1] ... event mask:             000000070000000f
[    0.554114] [      T1] signal: max sigframe size: 1776
[    0.554114] [      T1] Estimated ratio of average max frequency by base frequency (times 1024): 1316
[    0.555781] [      T1] rcu: Hierarchical SRCU implementation.
[    0.555785] [      T1] rcu: 	Max phase no-delay instances is 400.
[    0.555867] [      T1] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    0.559476] [     T10] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.560028] [      T1] smp: Bringing up secondary CPUs ...
[    0.562238] [      T1] smpboot: x86: Booting SMP configuration:
[    0.562246] [      T1] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7
[    0.574253] [      T1] .... node  #1, CPUs:    #8  #9 #10 #11 #12 #13 #14 #15
[    0.588236] [      T1] .... node  #0, CPUs:   #16 #17 #18 #19 #20 #21 #22 #23
[    0.596289] [      T1] .... node  #1, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31
[    0.606135] [      T1] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.606145] [      T1] TAA CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/tsx_async_abort.html for more details.
[    0.606150] [      T1] MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
[    0.609215] [      T1] smp: Brought up 2 nodes, 32 CPUs
[    0.609215] [      T1] smpboot: Total of 32 processors activated (134391.55 BogoMIPS)
[    0.611257] [      T1] Memory: 60669204K/66994624K available (21272K kernel code, 4629K rwdata, 14600K rodata, 5144K init, 4368K bss, 6174168K reserved, 0K cma-reserved)
[    0.613818] [      T1] devtmpfs: initialized
[    0.613818] [      T1] x86/mm: Memory block size: 2048MB
[    0.615912] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0x796ad000-0x79cb7fff] (6336512 bytes)
[    0.616147] [      T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.616293] [      T1] futex hash table entries: 8192 (order: 7, 524288 bytes, vmalloc)
[    0.616496] [      T1] pinctrl core: initialized pinctrl subsystem
[    0.616660] [      T1] PM: RTC time: 10:53:19, date: 2025-04-22
[    0.618514] [      T1] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.619616] [      T1] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.620486] [      T1] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.621365] [      T1] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.621387] [      T1] audit: initializing netlink subsys (disabled)
[    0.621420] [    T215] audit: type=2000 audit(1745319199.135:1): state=initialized audit_enabled=0 res=1
[    0.621420] [      T1] thermal_sys: Registered thermal governor 'fair_share'
[    0.621420] [      T1] thermal_sys: Registered thermal governor 'bang_bang'
[    0.621420] [      T1] thermal_sys: Registered thermal governor 'step_wise'
[    0.621420] [      T1] thermal_sys: Registered thermal governor 'user_space'
[    0.621420] [      T1] thermal_sys: Registered thermal governor 'power_allocator'
[    0.621420] [      T1] EISA bus registered
[    0.621424] [      T1] cpuidle: using governor ladder
[    0.621434] [      T1] cpuidle: using governor menu
[    0.622132] [      T1] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.622138] [      T1] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.622310] [      T1] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    0.622332] [      T1] PCI: Using configuration type 1 for base access
[    0.622535] [      T1] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.623133] [      T1] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.623133] [      T1] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.623133] [      T1] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.623133] [      T1] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.623348] [      T1] fbcon: Taking over console
[    0.624203] [      T1] ACPI: Added _OSI(Module Device)
[    0.624207] [      T1] ACPI: Added _OSI(Processor Device)
[    0.624211] [      T1] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.624214] [      T1] ACPI: Added _OSI(Processor Aggregator Device)
[    0.697491] [      T1] ACPI: 4 ACPI AML tables successfully acquired and loaded
[    0.703605] [      T1] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.709231] [      T1] ACPI: Dynamic OEM Table Load:
[    0.755962] [      T1] ACPI: Interpreter enabled
[    0.755989] [      T1] ACPI: PM: (supports S0 S4 S5)
[    0.755993] [      T1] ACPI: Using IOAPIC for interrupt routing
[    0.760633] [      T1] HEST: Enabling Firmware First mode for corrected errors.
[    0.760974] [      T1] HEST: Table parsing has been initialized.
[    0.761134] [      T1] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    0.761142] [      T1] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.761146] [      T1] PCI: Using E820 reservations for host bridge windows
[    0.762436] [      T1] ACPI: Enabled 5 GPEs in block 00 to 3F
[    0.824628] [      T1] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    0.824640] [      T1] acpi PNP0A03:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.827992] [      T1] acpi PNP0A03:02: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    0.829632] [      T1] acpi PNP0A03:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    0.829637] [      T1] acpi PNP0A03:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.829707] [      T1] PCI host bridge to bus 0000:ff
[    0.829711] [      T1] pci_bus 0000:ff: Unknown NUMA node; performance will be reduced
[    0.829717] [      T1] pci_bus 0000:ff: root bus resource [bus ff]
[    0.829734] [      T1] pci 0000:ff:08.0: [8086:6f80] type 00 class 0x088000 conventional PCI endpoint
[    0.829859] [      T1] pci 0000:ff:08.2: [8086:6f32] type 00 class 0x110100 conventional PCI endpoint
[    0.829969] [      T1] pci 0000:ff:08.3: [8086:6f83] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.830095] [      T1] pci 0000:ff:09.0: [8086:6f90] type 00 class 0x088000 conventional PCI endpoint
[    0.830198] [      T1] pci 0000:ff:09.2: [8086:6f33] type 00 class 0x110100 conventional PCI endpoint
[    0.830302] [      T1] pci 0000:ff:09.3: [8086:6f93] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.830427] [      T1] pci 0000:ff:0b.0: [8086:6f81] type 00 class 0x088000 conventional PCI endpoint
[    0.830532] [      T1] pci 0000:ff:0b.1: [8086:6f36] type 00 class 0x110100 conventional PCI endpoint
[    0.830630] [      T1] pci 0000:ff:0b.2: [8086:6f37] type 00 class 0x110100 conventional PCI endpoint
[    0.830729] [      T1] pci 0000:ff:0b.3: [8086:6f76] type 00 class 0x088000 conventional PCI endpoint
[    0.830830] [      T1] pci 0000:ff:0c.0: [8086:6fe0] type 00 class 0x088000 conventional PCI endpoint
[    0.830928] [      T1] pci 0000:ff:0c.1: [8086:6fe1] type 00 class 0x088000 conventional PCI endpoint
[    0.831027] [      T1] pci 0000:ff:0c.2: [8086:6fe2] type 00 class 0x088000 conventional PCI endpoint
[    0.831125] [      T1] pci 0000:ff:0c.3: [8086:6fe3] type 00 class 0x088000 conventional PCI endpoint
[    0.831223] [      T1] pci 0000:ff:0c.4: [8086:6fe4] type 00 class 0x088000 conventional PCI endpoint
[    0.831327] [      T1] pci 0000:ff:0c.5: [8086:6fe5] type 00 class 0x088000 conventional PCI endpoint
[    0.831426] [      T1] pci 0000:ff:0c.6: [8086:6fe6] type 00 class 0x088000 conventional PCI endpoint
[    0.831523] [      T1] pci 0000:ff:0c.7: [8086:6fe7] type 00 class 0x088000 conventional PCI endpoint
[    0.831622] [      T1] pci 0000:ff:0f.0: [8086:6ff8] type 00 class 0x088000 conventional PCI endpoint
[    0.831720] [      T1] pci 0000:ff:0f.1: [8086:6ff9] type 00 class 0x088000 conventional PCI endpoint
[    0.831821] [      T1] pci 0000:ff:0f.4: [8086:6ffc] type 00 class 0x088000 conventional PCI endpoint
[    0.831919] [      T1] pci 0000:ff:0f.5: [8086:6ffd] type 00 class 0x088000 conventional PCI endpoint
[    0.832017] [      T1] pci 0000:ff:0f.6: [8086:6ffe] type 00 class 0x088000 conventional PCI endpoint
[    0.832124] [      T1] pci 0000:ff:10.0: [8086:6f1d] type 00 class 0x088000 conventional PCI endpoint
[    0.832222] [      T1] pci 0000:ff:10.1: [8086:6f34] type 00 class 0x110100 conventional PCI endpoint
[    0.832322] [      T1] pci 0000:ff:10.5: [8086:6f1e] type 00 class 0x088000 conventional PCI endpoint
[    0.832420] [      T1] pci 0000:ff:10.6: [8086:6f7d] type 00 class 0x110100 conventional PCI endpoint
[    0.832517] [      T1] pci 0000:ff:10.7: [8086:6f1f] type 00 class 0x088000 conventional PCI endpoint
[    0.832615] [      T1] pci 0000:ff:12.0: [8086:6fa0] type 00 class 0x088000 conventional PCI endpoint
[    0.832674] [      T1] pci 0000:ff:12.1: [8086:6f30] type 00 class 0x110100 conventional PCI endpoint
[    0.832792] [      T1] pci 0000:ff:13.0: [8086:6fa8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.833010] [      T1] pci 0000:ff:13.1: [8086:6f71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.833147] [      T1] pci 0000:ff:13.2: [8086:6faa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.833269] [      T1] pci 0000:ff:13.3: [8086:6fab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.833392] [      T1] pci 0000:ff:13.4: [8086:6fac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.833514] [      T1] pci 0000:ff:13.5: [8086:6fad] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.833634] [      T1] pci 0000:ff:13.6: [8086:6fae] type 00 class 0x088000 conventional PCI endpoint
[    0.833735] [      T1] pci 0000:ff:13.7: [8086:6faf] type 00 class 0x088000 conventional PCI endpoint
[    0.833841] [      T1] pci 0000:ff:14.0: [8086:6fb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.833975] [      T1] pci 0000:ff:14.1: [8086:6fb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.834099] [      T1] pci 0000:ff:14.2: [8086:6fb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.834220] [      T1] pci 0000:ff:14.3: [8086:6fb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.834341] [      T1] pci 0000:ff:14.4: [8086:6fbc] type 00 class 0x088000 conventional PCI endpoint
[    0.834450] [      T1] pci 0000:ff:14.5: [8086:6fbd] type 00 class 0x088000 conventional PCI endpoint
[    0.834551] [      T1] pci 0000:ff:14.6: [8086:6fbe] type 00 class 0x088000 conventional PCI endpoint
[    0.834654] [      T1] pci 0000:ff:14.7: [8086:6fbf] type 00 class 0x088000 conventional PCI endpoint
[    0.834757] [      T1] pci 0000:ff:15.0: [8086:6fb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.834893] [      T1] pci 0000:ff:15.1: [8086:6fb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.835017] [      T1] pci 0000:ff:15.2: [8086:6fb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.835139] [      T1] pci 0000:ff:15.3: [8086:6fb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.835266] [      T1] pci 0000:ff:16.0: [8086:6f68] type 00 class 0x088000 conventional PCI endpoint
[    0.835375] [      T1] pci 0000:ff:16.6: [8086:6f6e] type 00 class 0x088000 conventional PCI endpoint
[    0.835476] [      T1] pci 0000:ff:16.7: [8086:6f6f] type 00 class 0x088000 conventional PCI endpoint
[    0.835580] [      T1] pci 0000:ff:17.0: [8086:6fd0] type 00 class 0x088000 conventional PCI endpoint
[    0.835688] [      T1] pci 0000:ff:17.4: [8086:6fb8] type 00 class 0x088000 conventional PCI endpoint
[    0.835800] [      T1] pci 0000:ff:17.5: [8086:6fb9] type 00 class 0x088000 conventional PCI endpoint
[    0.835903] [      T1] pci 0000:ff:17.6: [8086:6fba] type 00 class 0x088000 conventional PCI endpoint
[    0.836003] [      T1] pci 0000:ff:17.7: [8086:6fbb] type 00 class 0x088000 conventional PCI endpoint
[    0.836110] [      T1] pci 0000:ff:1e.0: [8086:6f98] type 00 class 0x088000 conventional PCI endpoint
[    0.836208] [      T1] pci 0000:ff:1e.1: [8086:6f99] type 00 class 0x088000 conventional PCI endpoint
[    0.836310] [      T1] pci 0000:ff:1e.2: [8086:6f9a] type 00 class 0x088000 conventional PCI endpoint
[    0.836410] [      T1] pci 0000:ff:1e.3: [8086:6fc0] type 00 class 0x088000 conventional PCI endpoint
[    0.836464] [      T1] pci 0000:ff:1e.4: [8086:6f9c] type 00 class 0x088000 conventional PCI endpoint
[    0.836577] [      T1] pci 0000:ff:1f.0: [8086:6f88] type 00 class 0x088000 conventional PCI endpoint
[    0.836681] [      T1] pci 0000:ff:1f.2: [8086:6f8a] type 00 class 0x088000 conventional PCI endpoint
[    0.836896] [      T1] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    0.836905] [      T1] acpi PNP0A03:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.837750] [      T1] acpi PNP0A03:03: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    0.839405] [      T1] acpi PNP0A03:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    0.839411] [      T1] acpi PNP0A03:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.839466] [      T1] PCI host bridge to bus 0000:7f
[    0.839470] [      T1] pci_bus 0000:7f: Unknown NUMA node; performance will be reduced
[    0.839476] [      T1] pci_bus 0000:7f: root bus resource [bus 7f]
[    0.839489] [      T1] pci 0000:7f:08.0: [8086:6f80] type 00 class 0x088000 conventional PCI endpoint
[    0.839595] [      T1] pci 0000:7f:08.2: [8086:6f32] type 00 class 0x110100 conventional PCI endpoint
[    0.839699] [      T1] pci 0000:7f:08.3: [8086:6f83] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.839821] [      T1] pci 0000:7f:09.0: [8086:6f90] type 00 class 0x088000 conventional PCI endpoint
[    0.839920] [      T1] pci 0000:7f:09.2: [8086:6f33] type 00 class 0x110100 conventional PCI endpoint
[    0.840023] [      T1] pci 0000:7f:09.3: [8086:6f93] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.840149] [      T1] pci 0000:7f:0b.0: [8086:6f81] type 00 class 0x088000 conventional PCI endpoint
[    0.840245] [      T1] pci 0000:7f:0b.1: [8086:6f36] type 00 class 0x110100 conventional PCI endpoint
[    0.840342] [      T1] pci 0000:7f:0b.2: [8086:6f37] type 00 class 0x110100 conventional PCI endpoint
[    0.840437] [      T1] pci 0000:7f:0b.3: [8086:6f76] type 00 class 0x088000 conventional PCI endpoint
[    0.840534] [      T1] pci 0000:7f:0c.0: [8086:6fe0] type 00 class 0x088000 conventional PCI endpoint
[    0.840630] [      T1] pci 0000:7f:0c.1: [8086:6fe1] type 00 class 0x088000 conventional PCI endpoint
[    0.840724] [      T1] pci 0000:7f:0c.2: [8086:6fe2] type 00 class 0x088000 conventional PCI endpoint
[    0.840822] [      T1] pci 0000:7f:0c.3: [8086:6fe3] type 00 class 0x088000 conventional PCI endpoint
[    0.840924] [      T1] pci 0000:7f:0c.4: [8086:6fe4] type 00 class 0x088000 conventional PCI endpoint
[    0.841025] [      T1] pci 0000:7f:0c.5: [8086:6fe5] type 00 class 0x088000 conventional PCI endpoint
[    0.841119] [      T1] pci 0000:7f:0c.6: [8086:6fe6] type 00 class 0x088000 conventional PCI endpoint
[    0.841215] [      T1] pci 0000:7f:0c.7: [8086:6fe7] type 00 class 0x088000 conventional PCI endpoint
[    0.841312] [      T1] pci 0000:7f:0f.0: [8086:6ff8] type 00 class 0x088000 conventional PCI endpoint
[    0.841406] [      T1] pci 0000:7f:0f.1: [8086:6ff9] type 00 class 0x088000 conventional PCI endpoint
[    0.841502] [      T1] pci 0000:7f:0f.4: [8086:6ffc] type 00 class 0x088000 conventional PCI endpoint
[    0.841598] [      T1] pci 0000:7f:0f.5: [8086:6ffd] type 00 class 0x088000 conventional PCI endpoint
[    0.841705] [      T1] pci 0000:7f:0f.6: [8086:6ffe] type 00 class 0x088000 conventional PCI endpoint
[    0.841804] [      T1] pci 0000:7f:10.0: [8086:6f1d] type 00 class 0x088000 conventional PCI endpoint
[    0.841900] [      T1] pci 0000:7f:10.1: [8086:6f34] type 00 class 0x110100 conventional PCI endpoint
[    0.841999] [      T1] pci 0000:7f:10.5: [8086:6f1e] type 00 class 0x088000 conventional PCI endpoint
[    0.842093] [      T1] pci 0000:7f:10.6: [8086:6f7d] type 00 class 0x110100 conventional PCI endpoint
[    0.842188] [      T1] pci 0000:7f:10.7: [8086:6f1f] type 00 class 0x088000 conventional PCI endpoint
[    0.842285] [      T1] pci 0000:7f:12.0: [8086:6fa0] type 00 class 0x088000 conventional PCI endpoint
[    0.842339] [      T1] pci 0000:7f:12.1: [8086:6f30] type 00 class 0x110100 conventional PCI endpoint
[    0.842457] [      T1] pci 0000:7f:13.0: [8086:6fa8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.842665] [      T1] pci 0000:7f:13.1: [8086:6f71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.842790] [      T1] pci 0000:7f:13.2: [8086:6faa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.842910] [      T1] pci 0000:7f:13.3: [8086:6fab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.843027] [      T1] pci 0000:7f:13.4: [8086:6fac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.843143] [      T1] pci 0000:7f:13.5: [8086:6fad] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.843258] [      T1] pci 0000:7f:13.6: [8086:6fae] type 00 class 0x088000 conventional PCI endpoint
[    0.843356] [      T1] pci 0000:7f:13.7: [8086:6faf] type 00 class 0x088000 conventional PCI endpoint
[    0.843464] [      T1] pci 0000:7f:14.0: [8086:6fb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.843582] [      T1] pci 0000:7f:14.1: [8086:6fb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.843699] [      T1] pci 0000:7f:14.2: [8086:6fb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.843818] [      T1] pci 0000:7f:14.3: [8086:6fb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.843932] [      T1] pci 0000:7f:14.4: [8086:6fbc] type 00 class 0x088000 conventional PCI endpoint
[    0.844029] [      T1] pci 0000:7f:14.5: [8086:6fbd] type 00 class 0x088000 conventional PCI endpoint
[    0.844129] [      T1] pci 0000:7f:14.6: [8086:6fbe] type 00 class 0x088000 conventional PCI endpoint
[    0.844227] [      T1] pci 0000:7f:14.7: [8086:6fbf] type 00 class 0x088000 conventional PCI endpoint
[    0.844337] [      T1] pci 0000:7f:15.0: [8086:6fb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.844456] [      T1] pci 0000:7f:15.1: [8086:6fb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.844575] [      T1] pci 0000:7f:15.2: [8086:6fb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.844693] [      T1] pci 0000:7f:15.3: [8086:6fb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.844814] [      T1] pci 0000:7f:16.0: [8086:6f68] type 00 class 0x088000 conventional PCI endpoint
[    0.844920] [      T1] pci 0000:7f:16.6: [8086:6f6e] type 00 class 0x088000 conventional PCI endpoint
[    0.845019] [      T1] pci 0000:7f:16.7: [8086:6f6f] type 00 class 0x088000 conventional PCI endpoint
[    0.845119] [      T1] pci 0000:7f:17.0: [8086:6fd0] type 00 class 0x088000 conventional PCI endpoint
[    0.845233] [      T1] pci 0000:7f:17.4: [8086:6fb8] type 00 class 0x088000 conventional PCI endpoint
[    0.845333] [      T1] pci 0000:7f:17.5: [8086:6fb9] type 00 class 0x088000 conventional PCI endpoint
[    0.845431] [      T1] pci 0000:7f:17.6: [8086:6fba] type 00 class 0x088000 conventional PCI endpoint
[    0.845528] [      T1] pci 0000:7f:17.7: [8086:6fbb] type 00 class 0x088000 conventional PCI endpoint
[    0.845631] [      T1] pci 0000:7f:1e.0: [8086:6f98] type 00 class 0x088000 conventional PCI endpoint
[    0.845729] [      T1] pci 0000:7f:1e.1: [8086:6f99] type 00 class 0x088000 conventional PCI endpoint
[    0.845828] [      T1] pci 0000:7f:1e.2: [8086:6f9a] type 00 class 0x088000 conventional PCI endpoint
[    0.845927] [      T1] pci 0000:7f:1e.3: [8086:6fc0] type 00 class 0x088000 conventional PCI endpoint
[    0.845991] [      T1] pci 0000:7f:1e.4: [8086:6f9c] type 00 class 0x088000 conventional PCI endpoint
[    0.846091] [      T1] pci 0000:7f:1f.0: [8086:6f88] type 00 class 0x088000 conventional PCI endpoint
[    0.846188] [      T1] pci 0000:7f:1f.2: [8086:6f8a] type 00 class 0x088000 conventional PCI endpoint
[    0.864069] [      T1] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    0.864079] [      T1] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.864644] [      T1] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    0.865733] [      T1] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    0.865739] [      T1] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.866638] [      T1] PCI host bridge to bus 0000:00
[    0.866645] [      T1] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.866651] [      T1] pci_bus 0000:00: root bus resource [io  0x1000-0x7fff window]
[    0.866655] [      T1] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.866659] [      T1] pci_bus 0000:00: root bus resource [mem 0xfedb0000-0xfedb000f window]
[    0.866664] [      T1] pci_bus 0000:00: root bus resource [mem 0xfedc0000-0xfedc000f window]
[    0.866668] [      T1] pci_bus 0000:00: root bus resource [mem 0x90000000-0xc7ffbfff window]
[    0.866673] [      T1] pci_bus 0000:00: root bus resource [bus 00-7e]
[    0.866707] [      T1] pci 0000:00:00.0: [8086:6f00] type 00 class 0x060000 PCIe Root Port
[    0.866923] [      T1] pci 0000:00:01.0: [8086:6f02] type 01 class 0x060400 PCIe Root Port
[    0.866964] [      T1] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.867020] [      T1] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.867196] [      T1] pci 0000:00:01.1: [8086:6f03] type 01 class 0x060400 PCIe Root Port
[    0.867236] [      T1] pci 0000:00:01.1: PCI bridge to [bus 02]
[    0.867243] [      T1] pci 0000:00:01.1:   bridge window [mem 0xc7200000-0xc72fffff]
[    0.867295] [      T1] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.867479] [      T1] pci 0000:00:02.0: [8086:6f04] type 01 class 0x060400 PCIe Root Port
[    0.867518] [      T1] pci 0000:00:02.0: PCI bridge to [bus 03]
[    0.867573] [      T1] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    0.867742] [      T1] pci 0000:00:03.0: [8086:6f08] type 01 class 0x060400 PCIe Root Port
[    0.867782] [      T1] pci 0000:00:03.0: PCI bridge to [bus 04]
[    0.867787] [      T1] pci 0000:00:03.0:   bridge window [io  0x6000-0x6fff]
[    0.867792] [      T1] pci 0000:00:03.0:   bridge window [mem 0xc7100000-0xc71fffff]
[    0.867844] [      T1] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    0.868030] [      T1] pci 0000:00:04.0: [8086:6f20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.868095] [      T1] pci 0000:00:04.0: BAR 0 [mem 0xc732c000-0xc732ffff 64bit]
[    0.868223] [      T1] pci 0000:00:04.1: [8086:6f21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.868287] [      T1] pci 0000:00:04.1: BAR 0 [mem 0xc7328000-0xc732bfff 64bit]
[    0.868410] [      T1] pci 0000:00:04.2: [8086:6f22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.868474] [      T1] pci 0000:00:04.2: BAR 0 [mem 0xc7324000-0xc7327fff 64bit]
[    0.868597] [      T1] pci 0000:00:04.3: [8086:6f23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.868660] [      T1] pci 0000:00:04.3: BAR 0 [mem 0xc7320000-0xc7323fff 64bit]
[    0.868784] [      T1] pci 0000:00:04.4: [8086:6f24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.868847] [      T1] pci 0000:00:04.4: BAR 0 [mem 0xc731c000-0xc731ffff 64bit]
[    0.868969] [      T1] pci 0000:00:04.5: [8086:6f25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.869033] [      T1] pci 0000:00:04.5: BAR 0 [mem 0xc7318000-0xc731bfff 64bit]
[    0.869160] [      T1] pci 0000:00:04.6: [8086:6f26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.869223] [      T1] pci 0000:00:04.6: BAR 0 [mem 0xc7314000-0xc7317fff 64bit]
[    0.869346] [      T1] pci 0000:00:04.7: [8086:6f27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.869410] [      T1] pci 0000:00:04.7: BAR 0 [mem 0xc7310000-0xc7313fff 64bit]
[    0.869538] [      T1] pci 0000:00:05.0: [8086:6f28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.869682] [      T1] pci 0000:00:05.1: [8086:6f29] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.869864] [      T1] pci 0000:00:05.2: [8086:6f2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.869998] [      T1] pci 0000:00:05.4: [8086:6f2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    0.870060] [      T1] pci 0000:00:05.4: BAR 0 [mem 0xc7339000-0xc7339fff]
[    0.870171] [      T1] pci 0000:00:11.0: [8086:8d7c] type 00 class 0xff0000 PCIe Root Complex Integrated Endpoint
[    0.870420] [      T1] pci 0000:00:11.4: [8086:8d62] type 00 class 0x010601 conventional PCI endpoint
[    0.870502] [      T1] pci 0000:00:11.4: BAR 0 [io  0x7110-0x7117]
[    0.870507] [      T1] pci 0000:00:11.4: BAR 1 [io  0x7100-0x7103]
[    0.870512] [      T1] pci 0000:00:11.4: BAR 2 [io  0x70f0-0x70f7]
[    0.870517] [      T1] pci 0000:00:11.4: BAR 3 [io  0x70e0-0x70e3]
[    0.870521] [      T1] pci 0000:00:11.4: BAR 4 [io  0x7020-0x703f]
[    0.870526] [      T1] pci 0000:00:11.4: BAR 5 [mem 0xc7338000-0xc73387ff]
[    0.870565] [      T1] pci 0000:00:11.4: PME# supported from D3hot
[    0.870685] [      T1] pci 0000:00:14.0: [8086:8d31] type 00 class 0x0c0330 conventional PCI endpoint
[    0.870763] [      T1] pci 0000:00:14.0: BAR 0 [mem 0xc7300000-0xc730ffff 64bit]
[    0.870800] [      T1] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.870950] [      T1] pci 0000:00:16.0: [8086:8d3a] type 00 class 0x078000 conventional PCI endpoint
[    0.871029] [      T1] pci 0000:00:16.0: BAR 0 [mem 0xc7337000-0xc733700f 64bit]
[    0.871067] [      T1] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.871185] [      T1] pci 0000:00:16.1: [8086:8d3b] type 00 class 0x078000 conventional PCI endpoint
[    0.871264] [      T1] pci 0000:00:16.1: BAR 0 [mem 0xc7336000-0xc733600f 64bit]
[    0.871302] [      T1] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    0.871422] [      T1] pci 0000:00:1a.0: [8086:8d2d] type 00 class 0x0c0320 conventional PCI endpoint
[    0.871507] [      T1] pci 0000:00:1a.0: BAR 0 [mem 0xc7334000-0xc73343ff]
[    0.871556] [      T1] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.871682] [      T1] pci 0000:00:1c.0: [8086:8d10] type 01 class 0x060400 PCIe Root Port
[    0.871730] [      T1] pci 0000:00:1c.0: PCI bridge to [bus 05]
[    0.871801] [      T1] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.871829] [      T1] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    0.871835] [      T1] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    0.871973] [      T1] pci 0000:00:1c.2: [8086:8d14] type 01 class 0x060400 PCIe Root Port
[    0.872021] [      T1] pci 0000:00:1c.2: PCI bridge to [bus 06-07]
[    0.872028] [      T1] pci 0000:00:1c.2:   bridge window [io  0x5000-0x5fff]
[    0.872033] [      T1] pci 0000:00:1c.2:   bridge window [mem 0xc6000000-0xc70fffff]
[    0.872104] [      T1] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.872131] [      T1] pci 0000:00:1c.2: Enabling MPC IRBNCE
[    0.872137] [      T1] pci 0000:00:1c.2: Intel PCH root port ACS workaround enabled
[    0.872278] [      T1] pci 0000:00:1d.0: [8086:8d26] type 00 class 0x0c0320 conventional PCI endpoint
[    0.872364] [      T1] pci 0000:00:1d.0: BAR 0 [mem 0xc7333000-0xc73333ff]
[    0.872413] [      T1] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.872543] [      T1] pci 0000:00:1f.0: [8086:8d44] type 00 class 0x060100 conventional PCI endpoint
[    0.872789] [      T1] pci 0000:00:1f.2: [8086:8d02] type 00 class 0x010601 conventional PCI endpoint
[    0.872864] [      T1] pci 0000:00:1f.2: BAR 0 [io  0x7070-0x7077]
[    0.872869] [      T1] pci 0000:00:1f.2: BAR 1 [io  0x7060-0x7063]
[    0.872874] [      T1] pci 0000:00:1f.2: BAR 2 [io  0x7050-0x7057]
[    0.872878] [      T1] pci 0000:00:1f.2: BAR 3 [io  0x7040-0x7043]
[    0.872882] [      T1] pci 0000:00:1f.2: BAR 4 [io  0x7000-0x701f]
[    0.872887] [      T1] pci 0000:00:1f.2: BAR 5 [mem 0xc7332000-0xc73327ff]
[    0.872921] [      T1] pci 0000:00:1f.2: PME# supported from D3hot
[    0.873037] [      T1] pci 0000:00:1f.3: [8086:8d22] type 00 class 0x0c0500 conventional PCI endpoint
[    0.873109] [      T1] pci 0000:00:1f.3: BAR 0 [mem 0xc7331000-0xc73310ff 64bit]
[    0.873117] [      T1] pci 0000:00:1f.3: BAR 4 [io  0x0580-0x059f]
[    0.873445] [      T1] acpiphp: Slot [2] registered
[    0.873480] [      T1] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.873751] [      T1] pci 0000:02:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
[    0.873826] [      T1] pci 0000:02:00.0: BAR 0 [mem 0xc7210000-0xc7213fff 64bit]
[    0.873834] [      T1] pci 0000:02:00.0: ROM [mem 0xc7200000-0xc720ffff pref]
[    0.874061] [      T1] pci 0000:00:01.1: PCI bridge to [bus 02]
[    0.874327] [      T1] pci 0000:00:02.0: PCI bridge to [bus 03]
[    0.874654] [      T1] pci 0000:04:00.0: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    0.874730] [      T1] pci 0000:04:00.0: BAR 0 [mem 0xc7160000-0xc717ffff]
[    0.874736] [      T1] pci 0000:04:00.0: BAR 2 [io  0x6060-0x607f]
[    0.874741] [      T1] pci 0000:04:00.0: BAR 3 [mem 0xc718c000-0xc718ffff]
[    0.874826] [      T1] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    0.874867] [      T1] pci 0000:04:00.0: VF BAR 0 [mem 0x00000000-0x00003fff 64bit pref]
[    0.874872] [      T1] pci 0000:04:00.0: VF BAR 0 [mem 0x00000000-0x0001ffff 64bit pref]: contains BAR 0 for 8 VFs
[    0.874879] [      T1] pci 0000:04:00.0: VF BAR 3 [mem 0x00000000-0x00003fff 64bit pref]
[    0.874883] [      T1] pci 0000:04:00.0: VF BAR 3 [mem 0x00000000-0x0001ffff 64bit pref]: contains BAR 3 for 8 VFs
[    0.875100] [      T1] pci 0000:04:00.1: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    0.875179] [      T1] pci 0000:04:00.1: BAR 0 [mem 0xc7140000-0xc715ffff]
[    0.875185] [      T1] pci 0000:04:00.1: BAR 2 [io  0x6040-0x605f]
[    0.875190] [      T1] pci 0000:04:00.1: BAR 3 [mem 0xc7188000-0xc718bfff]
[    0.875273] [      T1] pci 0000:04:00.1: PME# supported from D0 D3hot D3cold
[    0.875308] [      T1] pci 0000:04:00.1: VF BAR 0 [mem 0x00000000-0x00003fff 64bit pref]
[    0.875312] [      T1] pci 0000:04:00.1: VF BAR 0 [mem 0x00000000-0x0001ffff 64bit pref]: contains BAR 0 for 8 VFs
[    0.875319] [      T1] pci 0000:04:00.1: VF BAR 3 [mem 0x00000000-0x00003fff 64bit pref]
[    0.875323] [      T1] pci 0000:04:00.1: VF BAR 3 [mem 0x00000000-0x0001ffff 64bit pref]: contains BAR 3 for 8 VFs
[    0.875525] [      T1] pci 0000:04:00.2: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    0.875600] [      T1] pci 0000:04:00.2: BAR 0 [mem 0xc7120000-0xc713ffff]
[    0.875606] [      T1] pci 0000:04:00.2: BAR 2 [io  0x6020-0x603f]
[    0.875611] [      T1] pci 0000:04:00.2: BAR 3 [mem 0xc7184000-0xc7187fff]
[    0.875692] [      T1] pci 0000:04:00.2: PME# supported from D0 D3hot D3cold
[    0.875727] [      T1] pci 0000:04:00.2: VF BAR 0 [mem 0x00000000-0x00003fff 64bit pref]
[    0.875731] [      T1] pci 0000:04:00.2: VF BAR 0 [mem 0x00000000-0x0001ffff 64bit pref]: contains BAR 0 for 8 VFs
[    0.875738] [      T1] pci 0000:04:00.2: VF BAR 3 [mem 0x00000000-0x00003fff 64bit pref]
[    0.875742] [      T1] pci 0000:04:00.2: VF BAR 3 [mem 0x00000000-0x0001ffff 64bit pref]: contains BAR 3 for 8 VFs
[    0.875940] [      T1] pci 0000:04:00.3: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    0.876015] [      T1] pci 0000:04:00.3: BAR 0 [mem 0xc7100000-0xc711ffff]
[    0.876021] [      T1] pci 0000:04:00.3: BAR 2 [io  0x6000-0x601f]
[    0.876025] [      T1] pci 0000:04:00.3: BAR 3 [mem 0xc7180000-0xc7183fff]
[    0.876106] [      T1] pci 0000:04:00.3: PME# supported from D0 D3hot D3cold
[    0.876140] [      T1] pci 0000:04:00.3: VF BAR 0 [mem 0x00000000-0x00003fff 64bit pref]
[    0.876145] [      T1] pci 0000:04:00.3: VF BAR 0 [mem 0x00000000-0x0001ffff 64bit pref]: contains BAR 0 for 8 VFs
[    0.876152] [      T1] pci 0000:04:00.3: VF BAR 3 [mem 0x00000000-0x00003fff 64bit pref]
[    0.876156] [      T1] pci 0000:04:00.3: VF BAR 3 [mem 0x00000000-0x0001ffff 64bit pref]: contains BAR 3 for 8 VFs
[    0.876336] [      T1] pci 0000:00:03.0: PCI bridge to [bus 04]
[    0.876395] [      T1] pci 0000:00:1c.0: PCI bridge to [bus 05]
[    0.876489] [      T1] pci 0000:06:00.0: [1a03:1150] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    0.876555] [      T1] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.876567] [      T1] pci 0000:06:00.0:   bridge window [io  0x5000-0x5fff]
[    0.876574] [      T1] pci 0000:06:00.0:   bridge window [mem 0xc6000000-0xc70fffff]
[    0.876616] [      T1] pci 0000:06:00.0: enabling Extended Tags
[    0.876705] [      T1] pci 0000:06:00.0: supports D1 D2
[    0.876709] [      T1] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.876885] [      T1] pci 0000:00:1c.2: PCI bridge to [bus 06-07]
[    0.876946] [      T1] pci_bus 0000:07: extended config space not accessible
[    0.876994] [      T1] pci 0000:07:00.0: [1a03:2000] type 00 class 0x030000 conventional PCI endpoint
[    0.877106] [      T1] pci 0000:07:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff]
[    0.877111] [      T1] pci 0000:07:00.0: BAR 1 [mem 0xc7000000-0xc701ffff]
[    0.877118] [      T1] pci 0000:07:00.0: BAR 2 [io  0x5000-0x507f]
[    0.877152] [      T1] pci 0000:07:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.877202] [      T1] pci 0000:07:00.0: supports D1 D2
[    0.877206] [      T1] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.877369] [      T1] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.877493] [      T1] pci_bus 0000:00: on NUMA node 0
[    0.878731] [      T1] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    0.878740] [      T1] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.879297] [      T1] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    0.880366] [      T1] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    0.880371] [      T1] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.880801] [      T1] PCI host bridge to bus 0000:80
[    0.880808] [      T1] pci_bus 0000:80: root bus resource [io  0x8000-0xffff window]
[    0.880813] [      T1] pci_bus 0000:80: root bus resource [mem 0xc8000000-0xfbffbfff window]
[    0.880818] [      T1] pci_bus 0000:80: root bus resource [bus 80-fe]
[    0.880847] [      T1] pci 0000:80:00.0: [8086:6f01] type 01 class 0x060400 PCIe Root Port
[    0.880888] [      T1] pci 0000:80:00.0: PCI bridge to [bus 81]
[    0.880948] [      T1] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    0.881141] [      T1] pci 0000:80:01.0: [8086:6f02] type 01 class 0x060400 PCIe Root Port
[    0.881183] [      T1] pci 0000:80:01.0: PCI bridge to [bus 82-83]
[    0.881188] [      T1] pci 0000:80:01.0:   bridge window [io  0xf000-0xffff]
[    0.881193] [      T1] pci 0000:80:01.0:   bridge window [mem 0xfa000000-0xfaffffff]
[    0.881207] [      T1] pci 0000:80:01.0:   bridge window [mem 0xf6000000-0xf6ffffff 64bit pref]
[    0.881260] [      T1] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    0.881425] [      T1] pci 0000:80:01.1: [8086:6f03] type 01 class 0x060400 PCIe Root Port
[    0.881466] [      T1] pci 0000:80:01.1: PCI bridge to [bus 84]
[    0.881530] [      T1] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    0.881699] [      T1] pci 0000:80:02.0: [8086:6f04] type 01 class 0x060400 PCIe Root Port
[    0.881739] [      T1] pci 0000:80:02.0: PCI bridge to [bus 85]
[    0.881746] [      T1] pci 0000:80:02.0:   bridge window [mem 0xfb000000-0xfb1fffff]
[    0.881759] [      T1] pci 0000:80:02.0:   bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
[    0.881808] [      T1] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    0.881985] [      T1] pci 0000:80:03.0: [8086:6f08] type 01 class 0x060400 PCIe Root Port
[    0.882025] [      T1] pci 0000:80:03.0: PCI bridge to [bus 86-87]
[    0.882031] [      T1] pci 0000:80:03.0:   bridge window [io  0xe000-0xefff]
[    0.882036] [      T1] pci 0000:80:03.0:   bridge window [mem 0xf9000000-0xf9ffffff]
[    0.882049] [      T1] pci 0000:80:03.0:   bridge window [mem 0xf5000000-0xf5ffffff 64bit pref]
[    0.882103] [      T1] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    0.882267] [      T1] pci 0000:80:03.1: [8086:6f09] type 01 class 0x060400 PCIe Root Port
[    0.882308] [      T1] pci 0000:80:03.1: PCI bridge to [bus 88]
[    0.882314] [      T1] pci 0000:80:03.1:   bridge window [mem 0xfb300000-0xfb3fffff]
[    0.882376] [      T1] pci 0000:80:03.1: PME# supported from D0 D3hot D3cold
[    0.882536] [      T1] pci 0000:80:03.2: [8086:6f0a] type 01 class 0x060400 PCIe Root Port
[    0.882577] [      T1] pci 0000:80:03.2: PCI bridge to [bus 89-8a]
[    0.882582] [      T1] pci 0000:80:03.2:   bridge window [io  0xd000-0xdfff]
[    0.882587] [      T1] pci 0000:80:03.2:   bridge window [mem 0xf8000000-0xf8ffffff]
[    0.882600] [      T1] pci 0000:80:03.2:   bridge window [mem 0xf4000000-0xf4ffffff 64bit pref]
[    0.882653] [      T1] pci 0000:80:03.2: PME# supported from D0 D3hot D3cold
[    0.882818] [      T1] pci 0000:80:03.3: [8086:6f0b] type 01 class 0x060400 PCIe Root Port
[    0.882859] [      T1] pci 0000:80:03.3: PCI bridge to [bus 8b]
[    0.882865] [      T1] pci 0000:80:03.3:   bridge window [mem 0xfb200000-0xfb2fffff]
[    0.882926] [      T1] pci 0000:80:03.3: PME# supported from D0 D3hot D3cold
[    0.883079] [      T1] pci 0000:80:04.0: [8086:6f20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.883146] [      T1] pci 0000:80:04.0: BAR 0 [mem 0xfb41c000-0xfb41ffff 64bit]
[    0.883283] [      T1] pci 0000:80:04.1: [8086:6f21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.883349] [      T1] pci 0000:80:04.1: BAR 0 [mem 0xfb418000-0xfb41bfff 64bit]
[    0.883473] [      T1] pci 0000:80:04.2: [8086:6f22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.883539] [      T1] pci 0000:80:04.2: BAR 0 [mem 0xfb414000-0xfb417fff 64bit]
[    0.883662] [      T1] pci 0000:80:04.3: [8086:6f23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.883728] [      T1] pci 0000:80:04.3: BAR 0 [mem 0xfb410000-0xfb413fff 64bit]
[    0.883850] [      T1] pci 0000:80:04.4: [8086:6f24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.883915] [      T1] pci 0000:80:04.4: BAR 0 [mem 0xfb40c000-0xfb40ffff 64bit]
[    0.884040] [      T1] pci 0000:80:04.5: [8086:6f25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.884106] [      T1] pci 0000:80:04.5: BAR 0 [mem 0xfb408000-0xfb40bfff 64bit]
[    0.884232] [      T1] pci 0000:80:04.6: [8086:6f26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.884298] [      T1] pci 0000:80:04.6: BAR 0 [mem 0xfb404000-0xfb407fff 64bit]
[    0.884424] [      T1] pci 0000:80:04.7: [8086:6f27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.884489] [      T1] pci 0000:80:04.7: BAR 0 [mem 0xfb400000-0xfb403fff 64bit]
[    0.884608] [      T1] pci 0000:80:05.0: [8086:6f28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.884764] [      T1] pci 0000:80:05.1: [8086:6f29] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.884954] [      T1] pci 0000:80:05.2: [8086:6f2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    0.885091] [      T1] pci 0000:80:05.4: [8086:6f2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    0.885156] [      T1] pci 0000:80:05.4: BAR 0 [mem 0xfb420000-0xfb420fff]
[    0.885498] [      T1] pci 0000:80:00.0: PCI bridge to [bus 81]
[    0.885767] [      T1] pci 0000:82:00.0: [144d:a822] type 00 class 0x010802 PCIe Endpoint
[    0.885841] [      T1] pci 0000:82:00.0: BAR 0 [mem 0xfa010000-0xfa013fff 64bit]
[    0.885850] [      T1] pci 0000:82:00.0: ROM [mem 0xfa000000-0xfa00ffff pref]
[    0.886071] [      T1] pci 0000:80:01.0: PCI bridge to [bus 82-83]
[    0.886326] [      T1] pci 0000:80:01.1: PCI bridge to [bus 84]
[    0.886810] [      T1] pci 0000:85:00.0: [15b3:1017] type 00 class 0x020000 PCIe Endpoint
[    0.887194] [      T1] pci 0000:85:00.0: BAR 0 [mem 0xf2000000-0xf3ffffff 64bit pref]
[    0.887238] [      T1] pci 0000:85:00.0: ROM [mem 0xfb100000-0xfb1fffff pref]
[    0.888079] [      T1] pci 0000:85:00.0: PME# supported from D3cold
[    0.888570] [      T1] pci 0000:85:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit pref]
[    0.888574] [      T1] pci 0000:85:00.0: VF BAR 0 [mem 0x00000000-0x007fffff 64bit pref]: contains BAR 0 for 8 VFs
[    0.890224] [      T1] pci 0000:85:00.1: [15b3:1017] type 00 class 0x020000 PCIe Endpoint
[    0.890609] [      T1] pci 0000:85:00.1: BAR 0 [mem 0xf0000000-0xf1ffffff 64bit pref]
[    0.890654] [      T1] pci 0000:85:00.1: ROM [mem 0xfb000000-0xfb0fffff pref]
[    0.891429] [      T1] pci 0000:85:00.1: PME# supported from D3cold
[    0.891913] [      T1] pci 0000:85:00.1: VF BAR 0 [mem 0x00000000-0x000fffff 64bit pref]
[    0.891918] [      T1] pci 0000:85:00.1: VF BAR 0 [mem 0x00000000-0x007fffff 64bit pref]: contains BAR 0 for 8 VFs
[    0.893262] [      T1] pci 0000:80:02.0: PCI bridge to [bus 85]
[    0.893514] [      T1] pci 0000:80:03.0: PCI bridge to [bus 86-87]
[    0.893780] [      T1] pci 0000:88:00.0: [144d:a802] type 00 class 0x010802 PCIe Endpoint
[    0.893853] [      T1] pci 0000:88:00.0: BAR 0 [mem 0xfb320000-0xfb323fff 64bit]
[    0.893859] [      T1] pci 0000:88:00.0: BAR 2 [mem 0xfb324000-0xfb3240ff]
[    0.893866] [      T1] pci 0000:88:00.0: ROM [mem 0xfb300000-0xfb31ffff pref]
[    0.894095] [      T1] pci 0000:80:03.1: PCI bridge to [bus 88]
[    0.894365] [      T1] pci 0000:89:00.0: [144d:a802] type 00 class 0x010802 PCIe Endpoint
[    0.894438] [      T1] pci 0000:89:00.0: BAR 0 [mem 0xf8020000-0xf8023fff 64bit]
[    0.894443] [      T1] pci 0000:89:00.0: BAR 2 [mem 0xf8024000-0xf80240ff]
[    0.894450] [      T1] pci 0000:89:00.0: ROM [mem 0xf8000000-0xf801ffff pref]
[    0.894671] [      T1] pci 0000:80:03.2: PCI bridge to [bus 89-8a]
[    0.894951] [      T1] pci 0000:8b:00.0: [144d:a802] type 00 class 0x010802 PCIe Endpoint
[    0.895024] [      T1] pci 0000:8b:00.0: BAR 0 [mem 0xfb220000-0xfb223fff 64bit]
[    0.895029] [      T1] pci 0000:8b:00.0: BAR 2 [mem 0xfb224000-0xfb2240ff]
[    0.895036] [      T1] pci 0000:8b:00.0: ROM [mem 0xfb200000-0xfb21ffff pref]
[    0.895258] [      T1] pci 0000:80:03.3: PCI bridge to [bus 8b]
[    0.895375] [      T1] pci_bus 0000:80: on NUMA node 1
[    0.895922] [      T1] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    0.896001] [      T1] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.896077] [      T1] ACPI: PCI: Interrupt link LNKC configured for IRQ 5
[    0.896156] [      T1] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    0.896231] [      T1] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.896234] [      T1] ACPI: PCI: Interrupt link LNKE disabled
[    0.896308] [      T1] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.896312] [      T1] ACPI: PCI: Interrupt link LNKF disabled
[    0.896386] [      T1] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.896389] [      T1] ACPI: PCI: Interrupt link LNKG disabled
[    0.896463] [      T1] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.896466] [      T1] ACPI: PCI: Interrupt link LNKH disabled
[    0.896841] [      T1] iommu: Default domain type: Translated
[    0.896841] [      T1] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.897161] [      T1] SCSI subsystem initialized
[    0.897184] [      T1] libata version 3.00 loaded.
[    0.897184] [      T1] ACPI: bus type USB registered
[    0.897184] [      T1] usbcore: registered new interface driver usbfs
[    0.897185] [      T1] usbcore: registered new interface driver hub
[    0.897210] [      T1] usbcore: registered new device driver usb
[    0.897251] [      T1] pps_core: LinuxPPS API ver. 1 registered
[    0.897254] [      T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[    0.897261] [      T1] PTP clock support registered
[    0.897300] [      T1] EDAC MC: Ver: 3.0.0
[    0.897441] [      T1] efivars: Registered efivars operations
[    0.898515] [      T1] NetLabel: Initializing
[    0.898520] [      T1] NetLabel:  domain hash size = 128
[    0.898523] [      T1] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.898554] [      T1] NetLabel:  unlabeled traffic allowed by default
[    0.898581] [      T1] mctp: management component transport protocol core
[    0.898581] [      T1] NET: Registered PF_MCTP protocol family
[    0.898581] [      T1] PCI: Using ACPI for IRQ routing
[    0.903109] [      T1] PCI: pci_cache_line_size set to 64 bytes
[    0.903362] [      T1] e820: reserve RAM buffer [mem 0x72c24018-0x73ffffff]
[    0.903367] [      T1] e820: reserve RAM buffer [mem 0x72c2c018-0x73ffffff]
[    0.903370] [      T1] e820: reserve RAM buffer [mem 0x72c34018-0x73ffffff]
[    0.903373] [      T1] e820: reserve RAM buffer [mem 0x72c3c018-0x73ffffff]
[    0.903376] [      T1] e820: reserve RAM buffer [mem 0x72c66018-0x73ffffff]
[    0.903379] [      T1] e820: reserve RAM buffer [mem 0x72c90018-0x73ffffff]
[    0.903381] [      T1] e820: reserve RAM buffer [mem 0x72c97018-0x73ffffff]
[    0.903383] [      T1] e820: reserve RAM buffer [mem 0x72ca0018-0x73ffffff]
[    0.903386] [      T1] e820: reserve RAM buffer [mem 0x72cb2018-0x73ffffff]
[    0.903388] [      T1] e820: reserve RAM buffer [mem 0x72cc4018-0x73ffffff]
[    0.903390] [      T1] e820: reserve RAM buffer [mem 0x72cd6018-0x73ffffff]
[    0.903391] [      T1] e820: reserve RAM buffer [mem 0x72ce8018-0x73ffffff]
[    0.903393] [      T1] e820: reserve RAM buffer [mem 0x76feb000-0x77ffffff]
[    0.903394] [      T1] e820: reserve RAM buffer [mem 0x78e54000-0x7bffffff]
[    0.903397] [      T1] e820: reserve RAM buffer [mem 0x7bcfe000-0x7bffffff]
[    0.903453] [      T1] pci 0000:07:00.0: vgaarb: setting as boot VGA device
[    0.903453] [      T1] pci 0000:07:00.0: vgaarb: bridge control possible
[    0.903453] [      T1] pci 0000:07:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.903453] [      T1] vgaarb: loaded
[    0.903453] [      T1] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.903453] [      T1] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.905189] [      T1] clocksource: Switched to clocksource tsc-early
[    0.906120] [      T1] VFS: Disk quotas dquot_6.6.0
[    0.906143] [      T1] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.906378] [      T1] AppArmor: AppArmor Filesystem Enabled
[    0.906425] [      T1] pnp: PnP ACPI init
[    0.907097] [      T1] system 00:01: [io  0x0500-0x057f] has been reserved
[    0.907104] [      T1] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.907109] [      T1] system 00:01: [io  0x0580-0x059f] has been reserved
[    0.907113] [      T1] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.907117] [      T1] system 00:01: [io  0x0880-0x0883] has been reserved
[    0.907121] [      T1] system 00:01: [io  0x0800-0x081f] has been reserved
[    0.907126] [      T1] system 00:01: [mem 0xfed1c000-0xfed3ffff] has been reserved
[    0.907131] [      T1] system 00:01: [mem 0xfed45000-0xfed8bfff] has been reserved
[    0.907135] [      T1] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    0.907139] [      T1] system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.907144] [      T1] system 00:01: [mem 0xfed12000-0xfed1200f] has been reserved
[    0.907148] [      T1] system 00:01: [mem 0xfed12010-0xfed1201f] has been reserved
[    0.907152] [      T1] system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
[    0.907544] [      T1] system 00:02: [io  0x0a00-0x0a0f] has been reserved
[    0.907550] [      T1] system 00:02: [io  0x0a10-0x0a1f] has been reserved
[    0.907554] [      T1] system 00:02: [io  0x0a20-0x0a2f] has been reserved
[    0.907558] [      T1] system 00:02: [io  0x0a30-0x0a3f] has been reserved
[    0.907562] [      T1] system 00:02: [io  0x0a40-0x0a4f] has been reserved
[    0.907839] [      T1] pnp 00:03: [dma 0 disabled]
[    0.908148] [      T1] pnp 00:04: [dma 0 disabled]
[    0.909112] [      T1] pnp: PnP ACPI: found 5 devices
[    0.915543] [      T1] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.915650] [      T1] NET: Registered PF_INET protocol family
[    0.916134] [      T1] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    0.938650] [      T1] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, vmalloc)
[    0.938762] [      T1] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    0.939642] [      T1] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    0.940551] [      T1] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    0.940884] [      T1] TCP: Hash tables configured (established 524288 bind 65536)
[    0.941299] [      T1] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
[    0.941886] [      T1] UDP hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc hugepage)
[    0.942817] [      T1] UDP-Lite hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc hugepage)
[    0.943291] [      T1] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.943303] [      T1] NET: Registered PF_XDP protocol family
[    0.943391] [      T1] pci_bus 0000:00: max bus depth: 2 pci_try_num: 3
[    0.943421] [      T1] pci 0000:00:03.0: bridge window [mem 0x90000000-0x900fffff 64bit pref]: assigned
[    0.943428] [      T1] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.943458] [      T1] pci 0000:00:01.1: PCI bridge to [bus 02]
[    0.943469] [      T1] pci 0000:00:01.1:   bridge window [mem 0xc7200000-0xc72fffff]
[    0.943490] [      T1] pci 0000:00:02.0: PCI bridge to [bus 03]
[    0.943520] [      T1] pci 0000:04:00.0: VF BAR 0 [mem 0x90000000-0x9001ffff 64bit pref]: assigned
[    0.943528] [      T1] pci 0000:04:00.0: VF BAR 3 [mem 0x90020000-0x9003ffff 64bit pref]: assigned
[    0.943535] [      T1] pci 0000:04:00.1: VF BAR 0 [mem 0x90040000-0x9005ffff 64bit pref]: assigned
[    0.943541] [      T1] pci 0000:04:00.1: VF BAR 3 [mem 0x90060000-0x9007ffff 64bit pref]: assigned
[    0.943548] [      T1] pci 0000:04:00.2: VF BAR 0 [mem 0x90080000-0x9009ffff 64bit pref]: assigned
[    0.943555] [      T1] pci 0000:04:00.2: VF BAR 3 [mem 0x900a0000-0x900bffff 64bit pref]: assigned
[    0.943562] [      T1] pci 0000:04:00.3: VF BAR 0 [mem 0x900c0000-0x900dffff 64bit pref]: assigned
[    0.943568] [      T1] pci 0000:04:00.3: VF BAR 3 [mem 0x900e0000-0x900fffff 64bit pref]: assigned
[    0.943575] [      T1] pci 0000:00:03.0: PCI bridge to [bus 04]
[    0.943579] [      T1] pci 0000:00:03.0:   bridge window [io  0x6000-0x6fff]
[    0.943591] [      T1] pci 0000:00:03.0:   bridge window [mem 0xc7100000-0xc71fffff]
[    0.943600] [      T1] pci 0000:00:03.0:   bridge window [mem 0x90000000-0x900fffff 64bit pref]
[    0.943617] [      T1] pci 0000:00:1c.0: PCI bridge to [bus 05]
[    0.943649] [      T1] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.943654] [      T1] pci 0000:06:00.0:   bridge window [io  0x5000-0x5fff]
[    0.943669] [      T1] pci 0000:06:00.0:   bridge window [mem 0xc6000000-0xc70fffff]
[    0.943696] [      T1] pci 0000:00:1c.2: PCI bridge to [bus 06-07]
[    0.943700] [      T1] pci 0000:00:1c.2:   bridge window [io  0x5000-0x5fff]
[    0.943713] [      T1] pci 0000:00:1c.2:   bridge window [mem 0xc6000000-0xc70fffff]
[    0.943736] [      T1] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.943740] [      T1] pci_bus 0000:00: resource 5 [io  0x1000-0x7fff window]
[    0.943744] [      T1] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.943748] [      T1] pci_bus 0000:00: resource 7 [mem 0xfedb0000-0xfedb000f window]
[    0.943752] [      T1] pci_bus 0000:00: resource 8 [mem 0xfedc0000-0xfedc000f window]
[    0.943756] [      T1] pci_bus 0000:00: resource 9 [mem 0x90000000-0xc7ffbfff window]
[    0.943760] [      T1] pci_bus 0000:02: resource 1 [mem 0xc7200000-0xc72fffff]
[    0.943764] [      T1] pci_bus 0000:04: resource 0 [io  0x6000-0x6fff]
[    0.943768] [      T1] pci_bus 0000:04: resource 1 [mem 0xc7100000-0xc71fffff]
[    0.943771] [      T1] pci_bus 0000:04: resource 2 [mem 0x90000000-0x900fffff 64bit pref]
[    0.943776] [      T1] pci_bus 0000:06: resource 0 [io  0x5000-0x5fff]
[    0.943780] [      T1] pci_bus 0000:06: resource 1 [mem 0xc6000000-0xc70fffff]
[    0.943784] [      T1] pci_bus 0000:07: resource 0 [io  0x5000-0x5fff]
[    0.943787] [      T1] pci_bus 0000:07: resource 1 [mem 0xc6000000-0xc70fffff]
[    0.944024] [      T1] pci_bus 0000:80: max bus depth: 1 pci_try_num: 2
[    0.944042] [      T1] pci 0000:80:01.1: bridge window [mem 0xc8000000-0xc81fffff]: assigned
[    0.944047] [      T1] pci 0000:80:01.1: bridge window [mem 0xc8200000-0xc83fffff 64bit pref]: assigned
[    0.944053] [      T1] pci 0000:80:03.1: bridge window [mem 0xc8400000-0xc85fffff 64bit pref]: assigned
[    0.944058] [      T1] pci 0000:80:03.3: bridge window [mem 0xc8600000-0xc87fffff 64bit pref]: assigned
[    0.944063] [      T1] pci 0000:80:01.1: bridge window [io  0x8000-0x8fff]: assigned
[    0.944067] [      T1] pci 0000:80:03.1: bridge window [io  0x9000-0x9fff]: assigned
[    0.944071] [      T1] pci 0000:80:03.3: bridge window [io  0xa000-0xafff]: assigned
[    0.944076] [      T1] pci 0000:80:00.0: PCI bridge to [bus 81]
[    0.944104] [      T1] pci 0000:80:01.0: PCI bridge to [bus 82-83]
[    0.944109] [      T1] pci 0000:80:01.0:   bridge window [io  0xf000-0xffff]
[    0.944120] [      T1] pci 0000:80:01.0:   bridge window [mem 0xfa000000-0xfaffffff]
[    0.944130] [      T1] pci 0000:80:01.0:   bridge window [mem 0xf6000000-0xf6ffffff 64bit pref]
[    0.944145] [      T1] pci 0000:80:01.1: PCI bridge to [bus 84]
[    0.944149] [      T1] pci 0000:80:01.1:   bridge window [io  0x8000-0x8fff]
[    0.944161] [      T1] pci 0000:80:01.1:   bridge window [mem 0xc8000000-0xc81fffff]
[    0.944170] [      T1] pci 0000:80:01.1:   bridge window [mem 0xc8200000-0xc83fffff 64bit pref]
[    0.944188] [      T1] pci 0000:85:00.0: VF BAR 0 [mem size 0x00800000 64bit pref]: can't assign; no space
[    0.944193] [      T1] pci 0000:85:00.0: VF BAR 0 [mem size 0x00800000 64bit pref]: failed to assign
[    0.944198] [      T1] pci 0000:85:00.1: VF BAR 0 [mem size 0x00800000 64bit pref]: can't assign; no space
[    0.944203] [      T1] pci 0000:85:00.1: VF BAR 0 [mem size 0x00800000 64bit pref]: failed to assign
[    0.944208] [      T1] pci 0000:80:02.0: PCI bridge to [bus 85]
[    0.944219] [      T1] pci 0000:80:02.0:   bridge window [mem 0xfb000000-0xfb1fffff]
[    0.944228] [      T1] pci 0000:80:02.0:   bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
[    0.944244] [      T1] pci 0000:80:03.0: PCI bridge to [bus 86-87]
[    0.944248] [      T1] pci 0000:80:03.0:   bridge window [io  0xe000-0xefff]
[    0.944259] [      T1] pci 0000:80:03.0:   bridge window [mem 0xf9000000-0xf9ffffff]
[    0.944269] [      T1] pci 0000:80:03.0:   bridge window [mem 0xf5000000-0xf5ffffff 64bit pref]
[    0.944284] [      T1] pci 0000:80:03.1: PCI bridge to [bus 88]
[    0.944288] [      T1] pci 0000:80:03.1:   bridge window [io  0x9000-0x9fff]
[    0.944300] [      T1] pci 0000:80:03.1:   bridge window [mem 0xfb300000-0xfb3fffff]
[    0.944309] [      T1] pci 0000:80:03.1:   bridge window [mem 0xc8400000-0xc85fffff 64bit pref]
[    0.944325] [      T1] pci 0000:80:03.2: PCI bridge to [bus 89-8a]
[    0.944329] [      T1] pci 0000:80:03.2:   bridge window [io  0xd000-0xdfff]
[    0.944341] [      T1] pci 0000:80:03.2:   bridge window [mem 0xf8000000-0xf8ffffff]
[    0.944353] [      T1] pci 0000:80:03.2:   bridge window [mem 0xf4000000-0xf4ffffff 64bit pref]
[    0.944369] [      T1] pci 0000:80:03.3: PCI bridge to [bus 8b]
[    0.944373] [      T1] pci 0000:80:03.3:   bridge window [io  0xa000-0xafff]
[    0.944384] [      T1] pci 0000:80:03.3:   bridge window [mem 0xfb200000-0xfb2fffff]
[    0.944394] [      T1] pci 0000:80:03.3:   bridge window [mem 0xc8600000-0xc87fffff 64bit pref]
[    0.944410] [      T1] pci_bus 0000:80: No. 2 try to assign unassigned res
[    0.944414] [      T1] release child resource [mem 0xf0000000-0xf1ffffff 64bit pref]
[    0.944415] [      T1] release child resource [mem 0xf2000000-0xf3ffffff 64bit pref]
[    0.944418] [      T1] pci 0000:80:02.0: resource 15 [mem 0xf0000000-0xf3ffffff 64bit pref] released
[    0.944423] [      T1] pci 0000:80:02.0: PCI bridge to [bus 85]
[    0.944442] [      T1] pci 0000:80:02.0: bridge window [mem 0x02000000-0x05ffffff 64bit pref] to [bus 85] add_size 2000000 add_align 2000000
[    0.944454] [      T1] pci 0000:80:02.0: bridge window [mem 0xca000000-0xcfffffff 64bit pref]: assigned
[    0.944459] [      T1] pci 0000:80:00.0: PCI bridge to [bus 81]
[    0.944487] [      T1] pci 0000:80:01.0: PCI bridge to [bus 82-83]
[    0.944491] [      T1] pci 0000:80:01.0:   bridge window [io  0xf000-0xffff]
[    0.944503] [      T1] pci 0000:80:01.0:   bridge window [mem 0xfa000000-0xfaffffff]
[    0.944512] [      T1] pci 0000:80:01.0:   bridge window [mem 0xf6000000-0xf6ffffff 64bit pref]
[    0.944528] [      T1] pci 0000:80:01.1: PCI bridge to [bus 84]
[    0.944532] [      T1] pci 0000:80:01.1:   bridge window [io  0x8000-0x8fff]
[    0.944544] [      T1] pci 0000:80:01.1:   bridge window [mem 0xc8000000-0xc81fffff]
[    0.944553] [      T1] pci 0000:80:01.1:   bridge window [mem 0xc8200000-0xc83fffff 64bit pref]
[    0.944570] [      T1] pci 0000:85:00.0: BAR 0 [mem 0xca000000-0xcbffffff 64bit pref]: assigned
[    0.944654] [      T1] pci 0000:85:00.1: BAR 0 [mem 0xcc000000-0xcdffffff 64bit pref]: assigned
[    0.944732] [      T1] pci 0000:85:00.0: VF BAR 0 [mem 0xce000000-0xce7fffff 64bit pref]: assigned
[    0.944773] [      T1] pci 0000:85:00.1: VF BAR 0 [mem 0xce800000-0xceffffff 64bit pref]: assigned
[    0.944815] [      T1] pci 0000:80:02.0: PCI bridge to [bus 85]
[    0.944826] [      T1] pci 0000:80:02.0:   bridge window [mem 0xfb000000-0xfb1fffff]
[    0.944835] [      T1] pci 0000:80:02.0:   bridge window [mem 0xca000000-0xcfffffff 64bit pref]
[    0.944851] [      T1] pci 0000:80:03.0: PCI bridge to [bus 86-87]
[    0.944854] [      T1] pci 0000:80:03.0:   bridge window [io  0xe000-0xefff]
[    0.944866] [      T1] pci 0000:80:03.0:   bridge window [mem 0xf9000000-0xf9ffffff]
[    0.944875] [      T1] pci 0000:80:03.0:   bridge window [mem 0xf5000000-0xf5ffffff 64bit pref]
[    0.944891] [      T1] pci 0000:80:03.1: PCI bridge to [bus 88]
[    0.944895] [      T1] pci 0000:80:03.1:   bridge window [io  0x9000-0x9fff]
[    0.944906] [      T1] pci 0000:80:03.1:   bridge window [mem 0xfb300000-0xfb3fffff]
[    0.944916] [      T1] pci 0000:80:03.1:   bridge window [mem 0xc8400000-0xc85fffff 64bit pref]
[    0.944931] [      T1] pci 0000:80:03.2: PCI bridge to [bus 89-8a]
[    0.944935] [      T1] pci 0000:80:03.2:   bridge window [io  0xd000-0xdfff]
[    0.944946] [      T1] pci 0000:80:03.2:   bridge window [mem 0xf8000000-0xf8ffffff]
[    0.944956] [      T1] pci 0000:80:03.2:   bridge window [mem 0xf4000000-0xf4ffffff 64bit pref]
[    0.944971] [      T1] pci 0000:80:03.3: PCI bridge to [bus 8b]
[    0.944975] [      T1] pci 0000:80:03.3:   bridge window [io  0xa000-0xafff]
[    0.944986] [      T1] pci 0000:80:03.3:   bridge window [mem 0xfb200000-0xfb2fffff]
[    0.944996] [      T1] pci 0000:80:03.3:   bridge window [mem 0xc8600000-0xc87fffff 64bit pref]
[    0.945011] [      T1] pci_bus 0000:80: resource 4 [io  0x8000-0xffff window]
[    0.945015] [      T1] pci_bus 0000:80: resource 5 [mem 0xc8000000-0xfbffbfff window]
[    0.945020] [      T1] pci_bus 0000:82: resource 0 [io  0xf000-0xffff]
[    0.945023] [      T1] pci_bus 0000:82: resource 1 [mem 0xfa000000-0xfaffffff]
[    0.945027] [      T1] pci_bus 0000:82: resource 2 [mem 0xf6000000-0xf6ffffff 64bit pref]
[    0.945031] [      T1] pci_bus 0000:84: resource 0 [io  0x8000-0x8fff]
[    0.945035] [      T1] pci_bus 0000:84: resource 1 [mem 0xc8000000-0xc81fffff]
[    0.945039] [      T1] pci_bus 0000:84: resource 2 [mem 0xc8200000-0xc83fffff 64bit pref]
[    0.945043] [      T1] pci_bus 0000:85: resource 1 [mem 0xfb000000-0xfb1fffff]
[    0.945047] [      T1] pci_bus 0000:85: resource 2 [mem 0xca000000-0xcfffffff 64bit pref]
[    0.945051] [      T1] pci_bus 0000:86: resource 0 [io  0xe000-0xefff]
[    0.945055] [      T1] pci_bus 0000:86: resource 1 [mem 0xf9000000-0xf9ffffff]
[    0.945058] [      T1] pci_bus 0000:86: resource 2 [mem 0xf5000000-0xf5ffffff 64bit pref]
[    0.945063] [      T1] pci_bus 0000:88: resource 0 [io  0x9000-0x9fff]
[    0.945066] [      T1] pci_bus 0000:88: resource 1 [mem 0xfb300000-0xfb3fffff]
[    0.945070] [      T1] pci_bus 0000:88: resource 2 [mem 0xc8400000-0xc85fffff 64bit pref]
[    0.945074] [      T1] pci_bus 0000:89: resource 0 [io  0xd000-0xdfff]
[    0.945078] [      T1] pci_bus 0000:89: resource 1 [mem 0xf8000000-0xf8ffffff]
[    0.945082] [      T1] pci_bus 0000:89: resource 2 [mem 0xf4000000-0xf4ffffff 64bit pref]
[    0.945086] [      T1] pci_bus 0000:8b: resource 0 [io  0xa000-0xafff]
[    0.945089] [      T1] pci_bus 0000:8b: resource 1 [mem 0xfb200000-0xfb2fffff]
[    0.945093] [      T1] pci_bus 0000:8b: resource 2 [mem 0xc8600000-0xc87fffff 64bit pref]
[    0.945521] [      T1] pci 0000:00:05.0: disabled boot interrupts on device [8086:6f28]
[    0.961503] [      T1] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x7d0 took 15289 usecs
[    0.977502] [      T1] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x7d0 took 15601 usecs
[    0.977536] [      T1] pci 0000:02:00.0: CLS mismatch (64 != 32), using 64 bytes
[    0.977619] [      T1] pci 0000:80:05.0: disabled boot interrupts on device [8086:6f28]
[    0.977733] [    T211] Trying to unpack rootfs image as initramfs...
[    0.977766] [      T1] DMAR: No SATC found
[    0.977770] [      T1] DMAR: dmar0: Using Queued invalidation
[    0.977785] [      T1] DMAR: dmar1: Using Queued invalidation
[    0.977969] [      T1] pci 0000:80:00.0: Adding to iommu group 0
[    0.978026] [      T1] pci 0000:80:01.0: Adding to iommu group 1
[    0.978079] [      T1] pci 0000:80:01.1: Adding to iommu group 2
[    0.978131] [      T1] pci 0000:80:02.0: Adding to iommu group 3
[    0.978186] [      T1] pci 0000:80:03.0: Adding to iommu group 4
[    0.978239] [      T1] pci 0000:80:03.1: Adding to iommu group 5
[    0.978292] [      T1] pci 0000:80:03.2: Adding to iommu group 6
[    0.978352] [      T1] pci 0000:80:03.3: Adding to iommu group 7
[    0.978408] [      T1] pci 0000:80:04.0: Adding to iommu group 8
[    0.978461] [      T1] pci 0000:80:04.1: Adding to iommu group 9
[    0.978513] [      T1] pci 0000:80:04.2: Adding to iommu group 10
[    0.978566] [      T1] pci 0000:80:04.3: Adding to iommu group 11
[    0.978620] [      T1] pci 0000:80:04.4: Adding to iommu group 12
[    0.978672] [      T1] pci 0000:80:04.5: Adding to iommu group 13
[    0.978724] [      T1] pci 0000:80:04.6: Adding to iommu group 14
[    0.978778] [      T1] pci 0000:80:04.7: Adding to iommu group 15
[    0.978833] [      T1] pci 0000:82:00.0: Adding to iommu group 16
[    0.978906] [      T1] pci 0000:85:00.0: Adding to iommu group 17
[    0.978980] [      T1] pci 0000:85:00.1: Adding to iommu group 18
[    0.979035] [      T1] pci 0000:88:00.0: Adding to iommu group 19
[    0.979089] [      T1] pci 0000:89:00.0: Adding to iommu group 20
[    0.979142] [      T1] pci 0000:8b:00.0: Adding to iommu group 21
[    0.986686] [      T1] pci 0000:ff:08.0: Adding to iommu group 22
[    0.986745] [      T1] pci 0000:ff:08.2: Adding to iommu group 22
[    0.986798] [      T1] pci 0000:ff:08.3: Adding to iommu group 23
[    0.986934] [      T1] pci 0000:ff:09.0: Adding to iommu group 24
[    0.986985] [      T1] pci 0000:ff:09.2: Adding to iommu group 24
[    0.987040] [      T1] pci 0000:ff:09.3: Adding to iommu group 25
[    0.987257] [      T1] pci 0000:ff:0b.0: Adding to iommu group 26
[    0.987308] [      T1] pci 0000:ff:0b.1: Adding to iommu group 26
[    0.987364] [      T1] pci 0000:ff:0b.2: Adding to iommu group 26
[    0.987417] [      T1] pci 0000:ff:0b.3: Adding to iommu group 26
[    0.987801] [      T1] pci 0000:ff:0c.0: Adding to iommu group 27
[    0.987853] [      T1] pci 0000:ff:0c.1: Adding to iommu group 27
[    0.987904] [      T1] pci 0000:ff:0c.2: Adding to iommu group 27
[    0.987956] [      T1] pci 0000:ff:0c.3: Adding to iommu group 27
[    0.988008] [      T1] pci 0000:ff:0c.4: Adding to iommu group 27
[    0.988061] [      T1] pci 0000:ff:0c.5: Adding to iommu group 27
[    0.988113] [      T1] pci 0000:ff:0c.6: Adding to iommu group 27
[    0.988165] [      T1] pci 0000:ff:0c.7: Adding to iommu group 27
[    0.988426] [      T1] pci 0000:ff:0f.0: Adding to iommu group 28
[    0.988483] [      T1] pci 0000:ff:0f.1: Adding to iommu group 28
[    0.988537] [      T1] pci 0000:ff:0f.4: Adding to iommu group 28
[    0.988590] [      T1] pci 0000:ff:0f.5: Adding to iommu group 28
[    0.988645] [      T1] pci 0000:ff:0f.6: Adding to iommu group 28
[    0.988905] [      T1] pci 0000:ff:10.0: Adding to iommu group 29
[    0.988959] [      T1] pci 0000:ff:10.1: Adding to iommu group 29
[    0.989014] [      T1] pci 0000:ff:10.5: Adding to iommu group 29
[    0.989069] [      T1] pci 0000:ff:10.6: Adding to iommu group 29
[    0.989124] [      T1] pci 0000:ff:10.7: Adding to iommu group 29
[    0.989260] [      T1] pci 0000:ff:12.0: Adding to iommu group 30
[    0.989317] [      T1] pci 0000:ff:12.1: Adding to iommu group 30
[    0.989372] [      T1] pci 0000:ff:13.0: Adding to iommu group 31
[    0.989429] [      T1] pci 0000:ff:13.1: Adding to iommu group 32
[    0.989485] [      T1] pci 0000:ff:13.2: Adding to iommu group 33
[    0.989539] [      T1] pci 0000:ff:13.3: Adding to iommu group 34
[    0.989593] [      T1] pci 0000:ff:13.4: Adding to iommu group 35
[    0.989645] [      T1] pci 0000:ff:13.5: Adding to iommu group 36
[    0.989784] [      T1] pci 0000:ff:13.6: Adding to iommu group 37
[    0.989847] [      T1] pci 0000:ff:13.7: Adding to iommu group 37
[    0.989899] [      T1] pci 0000:ff:14.0: Adding to iommu group 38
[    0.989952] [      T1] pci 0000:ff:14.1: Adding to iommu group 39
[    0.990007] [      T1] pci 0000:ff:14.2: Adding to iommu group 40
[    0.990059] [      T1] pci 0000:ff:14.3: Adding to iommu group 41
[    0.990280] [      T1] pci 0000:ff:14.4: Adding to iommu group 42
[    0.990340] [      T1] pci 0000:ff:14.5: Adding to iommu group 42
[    0.990403] [      T1] pci 0000:ff:14.6: Adding to iommu group 42
[    0.990465] [      T1] pci 0000:ff:14.7: Adding to iommu group 42
[    0.990517] [      T1] pci 0000:ff:15.0: Adding to iommu group 43
[    0.990570] [      T1] pci 0000:ff:15.1: Adding to iommu group 44
[    0.990622] [      T1] pci 0000:ff:15.2: Adding to iommu group 45
[    0.990676] [      T1] pci 0000:ff:15.3: Adding to iommu group 46
[    0.990852] [      T1] pci 0000:ff:16.0: Adding to iommu group 47
[    0.990913] [      T1] pci 0000:ff:16.6: Adding to iommu group 47
[    0.990974] [      T1] pci 0000:ff:16.7: Adding to iommu group 47
[    0.991233] [      T1] pci 0000:ff:17.0: Adding to iommu group 48
[    0.991297] [      T1] pci 0000:ff:17.4: Adding to iommu group 48
[    0.991361] [      T1] pci 0000:ff:17.5: Adding to iommu group 48
[    0.991423] [      T1] pci 0000:ff:17.6: Adding to iommu group 48
[    0.991484] [      T1] pci 0000:ff:17.7: Adding to iommu group 48
[    0.991743] [      T1] pci 0000:ff:1e.0: Adding to iommu group 49
[    0.991806] [      T1] pci 0000:ff:1e.1: Adding to iommu group 49
[    0.991869] [      T1] pci 0000:ff:1e.2: Adding to iommu group 49
[    0.991935] [      T1] pci 0000:ff:1e.3: Adding to iommu group 49
[    0.991998] [      T1] pci 0000:ff:1e.4: Adding to iommu group 49
[    0.992132] [      T1] pci 0000:ff:1f.0: Adding to iommu group 50
[    0.992197] [      T1] pci 0000:ff:1f.2: Adding to iommu group 50
[    0.992331] [      T1] pci 0000:7f:08.0: Adding to iommu group 51
[    0.992399] [      T1] pci 0000:7f:08.2: Adding to iommu group 51
[    0.992452] [      T1] pci 0000:7f:08.3: Adding to iommu group 52
[    0.992587] [      T1] pci 0000:7f:09.0: Adding to iommu group 53
[    0.992652] [      T1] pci 0000:7f:09.2: Adding to iommu group 53
[    0.992704] [      T1] pci 0000:7f:09.3: Adding to iommu group 54
[    0.992924] [      T1] pci 0000:7f:0b.0: Adding to iommu group 55
[    0.992989] [      T1] pci 0000:7f:0b.1: Adding to iommu group 55
[    0.993054] [      T1] pci 0000:7f:0b.2: Adding to iommu group 55
[    0.993118] [      T1] pci 0000:7f:0b.3: Adding to iommu group 55
[    0.993508] [      T1] pci 0000:7f:0c.0: Adding to iommu group 56
[    0.993576] [      T1] pci 0000:7f:0c.1: Adding to iommu group 56
[    0.993642] [      T1] pci 0000:7f:0c.2: Adding to iommu group 56
[    0.993708] [      T1] pci 0000:7f:0c.3: Adding to iommu group 56
[    0.993773] [      T1] pci 0000:7f:0c.4: Adding to iommu group 56
[    0.993840] [      T1] pci 0000:7f:0c.5: Adding to iommu group 56
[    0.993906] [      T1] pci 0000:7f:0c.6: Adding to iommu group 56
[    0.993973] [      T1] pci 0000:7f:0c.7: Adding to iommu group 56
[    0.994233] [      T1] pci 0000:7f:0f.0: Adding to iommu group 57
[    0.994303] [      T1] pci 0000:7f:0f.1: Adding to iommu group 57
[    0.994373] [      T1] pci 0000:7f:0f.4: Adding to iommu group 57
[    0.994441] [      T1] pci 0000:7f:0f.5: Adding to iommu group 57
[    0.994509] [      T1] pci 0000:7f:0f.6: Adding to iommu group 57
[    0.994767] [      T1] pci 0000:7f:10.0: Adding to iommu group 58
[    0.994837] [      T1] pci 0000:7f:10.1: Adding to iommu group 58
[    0.994906] [      T1] pci 0000:7f:10.5: Adding to iommu group 58
[    0.994974] [      T1] pci 0000:7f:10.6: Adding to iommu group 58
[    0.995042] [      T1] pci 0000:7f:10.7: Adding to iommu group 58
[    0.995182] [      T1] pci 0000:7f:12.0: Adding to iommu group 59
[    0.995252] [      T1] pci 0000:7f:12.1: Adding to iommu group 59
[    0.995306] [      T1] pci 0000:7f:13.0: Adding to iommu group 60
[    0.995360] [      T1] pci 0000:7f:13.1: Adding to iommu group 61
[    0.995412] [      T1] pci 0000:7f:13.2: Adding to iommu group 62
[    0.995466] [      T1] pci 0000:7f:13.3: Adding to iommu group 63
[    0.995523] [      T1] pci 0000:7f:13.4: Adding to iommu group 64
[    0.995575] [      T1] pci 0000:7f:13.5: Adding to iommu group 65
[    0.995710] [      T1] pci 0000:7f:13.6: Adding to iommu group 66
[    0.995782] [      T1] pci 0000:7f:13.7: Adding to iommu group 66
[    0.995839] [      T1] pci 0000:7f:14.0: Adding to iommu group 67
[    0.995891] [      T1] pci 0000:7f:14.1: Adding to iommu group 68
[    0.995943] [      T1] pci 0000:7f:14.2: Adding to iommu group 69
[    0.995995] [      T1] pci 0000:7f:14.3: Adding to iommu group 70
[    0.996214] [      T1] pci 0000:7f:14.4: Adding to iommu group 71
[    0.996288] [      T1] pci 0000:7f:14.5: Adding to iommu group 71
[    0.996366] [      T1] pci 0000:7f:14.6: Adding to iommu group 71
[    0.996440] [      T1] pci 0000:7f:14.7: Adding to iommu group 71
[    0.996493] [      T1] pci 0000:7f:15.0: Adding to iommu group 72
[    0.996548] [      T1] pci 0000:7f:15.1: Adding to iommu group 73
[    0.996601] [      T1] pci 0000:7f:15.2: Adding to iommu group 74
[    0.996653] [      T1] pci 0000:7f:15.3: Adding to iommu group 75
[    0.996829] [      T1] pci 0000:7f:16.0: Adding to iommu group 76
[    0.996906] [      T1] pci 0000:7f:16.6: Adding to iommu group 76
[    0.996982] [      T1] pci 0000:7f:16.7: Adding to iommu group 76
[    0.997242] [      T1] pci 0000:7f:17.0: Adding to iommu group 77
[    0.997318] [      T1] pci 0000:7f:17.4: Adding to iommu group 77
[    0.997408] [      T1] pci 0000:7f:17.5: Adding to iommu group 77
[    0.997500] [      T1] pci 0000:7f:17.6: Adding to iommu group 77
[    0.997576] [      T1] pci 0000:7f:17.7: Adding to iommu group 77
[    0.997837] [      T1] pci 0000:7f:1e.0: Adding to iommu group 78
[    0.997913] [      T1] pci 0000:7f:1e.1: Adding to iommu group 78
[    0.997988] [      T1] pci 0000:7f:1e.2: Adding to iommu group 78
[    0.998066] [      T1] pci 0000:7f:1e.3: Adding to iommu group 78
[    0.998142] [      T1] pci 0000:7f:1e.4: Adding to iommu group 78
[    0.998278] [      T1] pci 0000:7f:1f.0: Adding to iommu group 79
[    0.998361] [      T1] pci 0000:7f:1f.2: Adding to iommu group 79
[    0.998414] [      T1] pci 0000:00:00.0: Adding to iommu group 80
[    0.998469] [      T1] pci 0000:00:01.0: Adding to iommu group 81
[    0.998523] [      T1] pci 0000:00:01.1: Adding to iommu group 82
[    0.998577] [      T1] pci 0000:00:02.0: Adding to iommu group 83
[    0.998630] [      T1] pci 0000:00:03.0: Adding to iommu group 84
[    0.998683] [      T1] pci 0000:00:04.0: Adding to iommu group 85
[    0.998738] [      T1] pci 0000:00:04.1: Adding to iommu group 86
[    0.998791] [      T1] pci 0000:00:04.2: Adding to iommu group 87
[    0.998843] [      T1] pci 0000:00:04.3: Adding to iommu group 88
[    0.998898] [      T1] pci 0000:00:04.4: Adding to iommu group 89
[    0.998952] [      T1] pci 0000:00:04.5: Adding to iommu group 90
[    0.999005] [      T1] pci 0000:00:04.6: Adding to iommu group 91
[    0.999058] [      T1] pci 0000:00:04.7: Adding to iommu group 92
[    0.999111] [      T1] pci 0000:00:05.0: Adding to iommu group 93
[    0.999165] [      T1] pci 0000:00:05.1: Adding to iommu group 94
[    0.999219] [      T1] pci 0000:00:05.2: Adding to iommu group 95
[    0.999275] [      T1] pci 0000:00:05.4: Adding to iommu group 96
[    0.999328] [      T1] pci 0000:00:11.0: Adding to iommu group 97
[    0.999425] [      T1] pci 0000:00:11.4: Adding to iommu group 98
[    0.999479] [      T1] pci 0000:00:14.0: Adding to iommu group 99
[    0.999613] [      T1] pci 0000:00:16.0: Adding to iommu group 100
[    0.999695] [      T1] pci 0000:00:16.1: Adding to iommu group 100
[    0.999749] [      T1] pci 0000:00:1a.0: Adding to iommu group 101
[    0.999802] [      T1] pci 0000:00:1c.0: Adding to iommu group 102
[    0.999855] [      T1] pci 0000:00:1c.2: Adding to iommu group 103
[    0.999907] [      T1] pci 0000:00:1d.0: Adding to iommu group 104
[    1.000084] [      T1] pci 0000:00:1f.0: Adding to iommu group 105
[    1.000168] [      T1] pci 0000:00:1f.2: Adding to iommu group 105
[    1.000251] [      T1] pci 0000:00:1f.3: Adding to iommu group 105
[    1.000304] [      T1] pci 0000:02:00.0: Adding to iommu group 106
[    1.000363] [      T1] pci 0000:04:00.0: Adding to iommu group 107
[    1.000417] [      T1] pci 0000:04:00.1: Adding to iommu group 108
[    1.000471] [      T1] pci 0000:04:00.2: Adding to iommu group 109
[    1.000524] [      T1] pci 0000:04:00.3: Adding to iommu group 110
[    1.000579] [      T1] pci 0000:06:00.0: Adding to iommu group 111
[    1.000592] [      T1] pci 0000:07:00.0: Adding to iommu group 111
[    1.000649] [      T1] pci 0000:80:05.0: Adding to iommu group 112
[    1.000702] [      T1] pci 0000:80:05.1: Adding to iommu group 113
[    1.000757] [      T1] pci 0000:80:05.2: Adding to iommu group 114
[    1.000810] [      T1] pci 0000:80:05.4: Adding to iommu group 115
[    1.032841] [      T1] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    1.032853] [      T1] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.032857] [      T1] software IO TLB: mapped [mem 0x000000006ec24000-0x0000000072c24000] (64MB)
[    1.051898] [      T1] Initialise system trusted keyrings
[    1.051932] [      T1] Key type blacklist registered
[    1.052086] [      T1] workingset: timestamp_bits=36 max_order=24 bucket_order=0
[    1.052108] [      T1] zbud: loaded
[    1.052670] [      T1] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.052840] [      T1] fuse: init (API version 7.42)
[    1.053091] [      T1] integrity: Platform Keyring initialized
[    1.053099] [      T1] integrity: Machine keyring initialized
[    1.070727] [      T1] Key type asymmetric registered
[    1.070736] [      T1] Asymmetric key parser 'x509' registered
[    1.070800] [      T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    1.070935] [      T1] io scheduler mq-deadline registered
[    1.073013] [      T1] ledtrig-cpu: registered to indicate activity on CPUs
[    1.073482] [     T10] pcieport 0000:00:01.0: PME: Signaling with IRQ 26
[    1.073888] [     T10] pcieport 0000:00:01.1: PME: Signaling with IRQ 27
[    1.074288] [     T10] pcieport 0000:00:02.0: PME: Signaling with IRQ 29
[    1.074688] [     T10] pcieport 0000:00:03.0: PME: Signaling with IRQ 31
[    1.074990] [     T10] pcieport 0000:00:1c.0: PME: Signaling with IRQ 32
[    1.075293] [     T10] pcieport 0000:00:1c.2: PME: Signaling with IRQ 33
[    1.076067] [     T70] pcieport 0000:80:00.0: PME: Signaling with IRQ 35
[    1.076485] [    T247] pcieport 0000:80:01.0: PME: Signaling with IRQ 37
[    1.076535] [    T247] pcieport 0000:80:01.0: pciehp: Slot #16 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.076971] [    T247] pcieport 0000:80:01.1: PME: Signaling with IRQ 38
[    1.077005] [    T247] pcieport 0000:80:01.1: pciehp: Slot #17 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.077440] [    T247] pcieport 0000:80:02.0: PME: Signaling with IRQ 40
[    1.077803] [    T247] pcieport 0000:80:03.0: PME: Signaling with IRQ 42
[    1.077836] [    T247] pcieport 0000:80:03.0: pciehp: Slot #18 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.078240] [    T247] pcieport 0000:80:03.1: PME: Signaling with IRQ 43
[    1.078285] [    T247] pcieport 0000:80:03.1: pciehp: Slot #19 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.078701] [    T247] pcieport 0000:80:03.2: PME: Signaling with IRQ 44
[    1.078744] [    T247] pcieport 0000:80:03.2: pciehp: Slot #20 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.079157] [    T247] pcieport 0000:80:03.3: PME: Signaling with IRQ 45
[    1.079201] [    T247] pcieport 0000:80:03.3: pciehp: Slot #21 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.079718] [      T1] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    1.079997] [     T10] Monitor-Mwait will be used to enter C-1 state
[    1.080010] [     T10] Monitor-Mwait will be used to enter C-2 state
[    1.082825] [      T1] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.082880] [      T1] ACPI: button: Power Button [PWRB]
[    1.082925] [      T1] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.082998] [      T1] ACPI: button: Power Button [PWRF]
[    1.094109] [      T1] ERST: Error Record Serialization Table (ERST) support is initialized.
[    1.094206] [      T1] pstore: Using crash dump compression: deflate
[    1.094211] [      T1] pstore: Registered erst as persistent store backend
[    1.094513] [      T1] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.115300] [      T1] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.137544] [      T1] 00:04: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    1.142114] [      T1] Linux agpgart interface v0.103
[    1.142438] [      T1] ACPI: bus type drm_connector registered
[    1.151069] [      T1] loop: module loaded
[    1.151750] [      T1] tun: Universal TUN/TAP device driver, 1.6
[    1.151843] [      T1] PPP generic driver version 2.4.2
[    1.152334] [     T10] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.152355] [     T10] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.152379] [     T10] ehci-pci 0000:00:1a.0: debug port 2
[    1.156356] [     T10] ehci-pci 0000:00:1a.0: irq 18, io mem 0xc7334000
[    1.162392] [     T10] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.162493] [     T10] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
[    1.162503] [     T10] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.162510] [     T10] usb usb1: Product: EHCI Host Controller
[    1.162515] [     T10] usb usb1: Manufacturer: Linux 6.14.0+ ehci_hcd
[    1.162521] [     T10] usb usb1: SerialNumber: 0000:00:1a.0
[    1.162716] [     T10] hub 1-0:1.0: USB hub found
[    1.162727] [     T10] hub 1-0:1.0: 2 ports detected
[    1.163057] [      T9] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.163068] [      T9] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.164254] [      T9] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
[    1.164680] [      T9] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.164688] [      T9] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    1.164694] [      T9] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[    1.164756] [    T256] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.164797] [      T9] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
[    1.164803] [      T9] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.164808] [      T9] usb usb2: Product: xHCI Host Controller
[    1.164812] [      T9] usb usb2: Manufacturer: Linux 6.14.0+ xhci-hcd
[    1.164815] [      T9] usb usb2: SerialNumber: 0000:00:14.0
[    1.165031] [      T9] hub 2-0:1.0: USB hub found
[    1.165054] [      T9] hub 2-0:1.0: 15 ports detected
[    1.166528] [    T256] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    1.166544] [    T256] ehci-pci 0000:00:1d.0: debug port 2
[    1.170550] [      T9] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14
[    1.170557] [      T9] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.170561] [      T9] usb usb3: Product: xHCI Host Controller
[    1.170565] [      T9] usb usb3: Manufacturer: Linux 6.14.0+ xhci-hcd
[    1.170568] [      T9] usb usb3: SerialNumber: 0000:00:14.0
[    1.170628] [    T256] ehci-pci 0000:00:1d.0: irq 18, io mem 0xc7333000
[    1.170715] [      T9] hub 3-0:1.0: USB hub found
[    1.170733] [      T9] hub 3-0:1.0: 6 ports detected
[    1.171846] [      T1] i8042: PNP: No PS/2 controller found.
[    1.171982] [      T1] mousedev: PS/2 mouse device common for all mice
[    1.172110] [      T1] rtc_cmos 00:00: RTC can wake from S4
[    1.172402] [      T1] rtc_cmos 00:00: registered as rtc0
[    1.172447] [      T1] rtc_cmos 00:00: setting system clock to 2025-04-22T10:53:20 UTC (1745319200)
[    1.172487] [      T1] rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram
[    1.172501] [      T1] i2c_dev: i2c /dev entries driver
[    1.174631] [      T1] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.174675] [      T1] device-mapper: uevent: version 1.0.3
[    1.174804] [      T1] device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@xxxxxxxxxxxxxxx
[    1.174844] [      T1] platform eisa.0: Probing EISA bus 0
[    1.174849] [      T1] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    1.174854] [      T1] platform eisa.0: Cannot allocate resource for EISA slot 1
[    1.174858] [      T1] platform eisa.0: Cannot allocate resource for EISA slot 2
[    1.174862] [      T1] platform eisa.0: Cannot allocate resource for EISA slot 3
[    1.174865] [      T1] platform eisa.0: Cannot allocate resource for EISA slot 4
[    1.174869] [      T1] platform eisa.0: Cannot allocate resource for EISA slot 5
[    1.174873] [      T1] platform eisa.0: Cannot allocate resource for EISA slot 6
[    1.174876] [      T1] platform eisa.0: Cannot allocate resource for EISA slot 7
[    1.174880] [      T1] platform eisa.0: Cannot allocate resource for EISA slot 8
[    1.174883] [      T1] platform eisa.0: EISA: Detected 0 cards
[    1.174932] [      T1] intel_pstate: Intel P-state driver initializing
[    1.176366] [    T256] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.176449] [    T256] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
[    1.176460] [    T256] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.176469] [    T256] usb usb4: Product: EHCI Host Controller
[    1.176475] [    T256] usb usb4: Manufacturer: Linux 6.14.0+ ehci_hcd
[    1.176482] [    T256] usb usb4: SerialNumber: 0000:00:1d.0
[    1.176717] [    T256] hub 4-0:1.0: USB hub found
[    1.176733] [    T256] hub 4-0:1.0: 2 ports detected
[    1.182206] [      T1] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[    1.182217] [      T1] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[    1.193920] [      T1] Console: switching to colour frame buffer device 100x37
[    1.205448] [      T1] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[    1.206105] [      T1] drop_monitor: Initializing network drop monitor service
[    1.206366] [      T1] NET: Registered PF_INET6 protocol family
[    1.397407] [    T125] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.405433] [     T28] usb 2-14: new high-speed USB device number 2 using xhci_hcd
[    1.413403] [    T266] usb 4-1: new high-speed USB device number 2 using ehci-pci
[    1.485773] [    T211] Freeing initrd memory: 535260K
[    1.497962] [      T1] Segment Routing with IPv6
[    1.498246] [      T1] In-situ OAM (IOAM) with IPv6
[    1.498301] [      T1] NET: Registered PF_PACKET protocol family
[    1.498474] [      T1] Key type dns_resolver registered
[    1.515566] [      T1] microcode: Current revision: 0x0b000040
[    1.516021] [      T1] microcode: Updated early from: 0x0b00001f
[    1.523151] [    T125] usb 1-1: New USB device found, idVendor=8087, idProduct=800a, bcdDevice= 0.05
[    1.523720] [    T125] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.525010] [    T125] hub 1-1:1.0: USB hub found
[    1.525878] [    T125] hub 1-1:1.0: 6 ports detected
[    1.529740] [     T28] usb 2-14: New USB device found, idVendor=0000, idProduct=0001, bcdDevice= 0.00
[    1.530405] [     T28] usb 2-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.532923] [     T28] hub 2-14:1.0: USB hub found
[    1.533686] [     T28] hub 2-14:1.0: 4 ports detected
[    1.539343] [      T1] resctrl: L3 allocation detected
[    1.540685] [      T1] resctrl: L3 monitoring detected
[    1.542262] [    T266] usb 4-1: New USB device found, idVendor=8087, idProduct=8002, bcdDevice= 0.05
[    1.542689] [      T1] IPI shorthand broadcast: enabled
[    1.542905] [    T266] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.545335] [    T266] hub 4-1:1.0: USB hub found
[    1.546193] [    T266] hub 4-1:1.0: 8 ports detected
[    1.557461] [      T1] sched_clock: Marking stable (1555001928, 2345797)->(1712301450, -154953725)
[    1.559704] [      T1] registered taskstats version 1
[    1.580335] [      T1] Loading compiled-in X.509 certificates
[    1.590650] [      T1] Loaded X.509 cert 'Build time autogenerated kernel key: 2f293dac7ce676639b5d495d5522d3bdcd289df9'
[    1.598399] [      T1] Demotion targets for Node 0: null
[    1.598778] [      T1] Demotion targets for Node 1: null
[    1.599781] [      T1] Key type .fscrypt registered
[    1.600277] [      T1] Key type fscrypt-provisioning registered
[    1.616581] [    T295] cryptd: max_cpu_qlen set to 1000
[    1.635489] [    T295] AES CTR mode by8 optimization enabled
[    1.664924] [      T1] Key type encrypted registered
[    1.665474] [      T1] AppArmor: AppArmor sha256 policy hashing enabled
[    1.669873] [      T1] ima: No TPM chip found, activating TPM-bypass!
[    1.670953] [      T1] Loading compiled-in module X.509 certificates
[    1.674304] [      T1] Loaded X.509 cert 'Build time autogenerated kernel key: 2f293dac7ce676639b5d495d5522d3bdcd289df9'
[    1.676521] [      T1] ima: Allocated hash algorithm: sha256
[    1.677602] [      T1] ima: No architecture policies found
[    1.678738] [      T1] evm: Initialising EVM extended attributes:
[    1.679788] [      T1] evm: security.selinux
[    1.680906] [      T1] evm: security.SMACK64
[    1.681927] [      T1] evm: security.SMACK64EXEC
[    1.683033] [      T1] evm: security.SMACK64TRANSMUTE
[    1.684122] [      T1] evm: security.SMACK64MMAP
[    1.685093] [      T1] evm: security.apparmor
[    1.686206] [      T1] evm: security.ima
[    1.687126] [      T1] evm: security.capability
[    1.688011] [      T1] evm: HMAC attrs: 0x1
[    1.690802] [      T1] PM:   Magic number: 5:41:882
[    1.692105] [      T1] acpi device:f1: hash matches
[    1.708215] [      T1] RAS: Correctable Errors collector initialized.
[    1.733016] [      T1] clk: Disabling unused clocks
[    1.733423] [      T1] PM: genpd: Disabling unused power domains
[    1.743020] [      T1] Freeing unused decrypted memory: 2028K
[    1.743357] [      C2] workqueue: drm_fb_helper_damage_work hogged CPU for >10000us 4 times, consider switching to WQ_UNBOUND
[    1.756679] [      T1] Freeing unused kernel image (initmem) memory: 5144K
[    1.758490] [      T1] Write protecting the kernel read-only data: 38912k
[    1.764046] [      T1] Freeing unused kernel image (text/rodata gap) memory: 1252K
[    1.770222] [      T1] Freeing unused kernel image (rodata/data gap) memory: 1784K
[    1.783355] [      C2] workqueue: drm_fb_helper_damage_work hogged CPU for >10000us 5 times, consider switching to WQ_UNBOUND
[    1.825399] [    T230] usb 2-14.1: new low-speed USB device number 3 using xhci_hcd
[    1.856119] [      T1] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.856370] [      T1] x86/mm: Checking user space page tables
[    1.906723] [      T1] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.906911] [      T1] Run /init as init process
[    1.907082] [      T1]   with arguments:
[    1.907084] [      T1]     /init
[    1.907085] [      T1]   with environment:
[    1.907086] [      T1]     HOME=/
[    1.907087] [      T1]     TERM=linux
[    1.907087] [      T1]     BOOT_IMAGE=/boot/vmlinuz-6.14.0+
[    1.936846] [    T230] usb 2-14.1: New USB device found, idVendor=0557, idProduct=2419, bcdDevice= 1.00
[    1.938477] [    T230] usb 2-14.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.053359] [    T308] tsc: Refined TSC clocksource calibration: 2099.998 MHz
[    2.053568] [    T308] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e452ea631d, max_idle_ns: 440795244572 ns
[    2.057356] [    T308] clocksource: Switched to clocksource tsc
[    2.235830] [    T364] dca service started, version 1.12.1
[    2.246351] [      C3] workqueue: drm_fb_helper_damage_work hogged CPU for >10000us 7 times, consider switching to WQ_UNBOUND
[    2.261887] [     T10] ahci 0000:00:11.4: version 3.0
[    2.262217] [    T363] hid: raw HID events driver (C) Jiri Kosina
[    2.262223] [     T10] ahci 0000:00:11.4: AHCI vers 0001.0300, 32 command slots, 6 Gbps, SATA mode
[    2.262954] [     T10] ahci 0000:00:11.4: 4/4 ports implemented (port mask 0xf)
[    2.263270] [     T10] ahci 0000:00:11.4: flags: 64bit ncq led clo pio slum part ems apst 
[    2.272236] [     T10] scsi host0: ahci
[    2.273049] [     T10] scsi host1: ahci
[    2.273674] [     T10] scsi host2: ahci
[    2.274250] [     T10] scsi host3: ahci
[    2.274883] [     T10] ata1: SATA max UDMA/133 abar m2048@0xc7338000 port 0xc7338100 irq 54 lpm-pol 0
[    2.275321] [     T10] ata2: SATA max UDMA/133 abar m2048@0xc7338000 port 0xc7338180 irq 54 lpm-pol 0
[    2.275708] [     T10] ata3: SATA max UDMA/133 abar m2048@0xc7338000 port 0xc7338200 irq 54 lpm-pol 0
[    2.276310] [     T10] ata4: SATA max UDMA/133 abar m2048@0xc7338000 port 0xc7338280 irq 54 lpm-pol 0
[    2.278175] [     T10] ahci 0000:00:1f.2: AHCI vers 0001.0300, 32 command slots, 6 Gbps, SATA mode
[    2.278848] [     T10] ahci 0000:00:1f.2: 6/6 ports implemented (port mask 0x3f)
[    2.279493] [     T10] ahci 0000:00:1f.2: flags: 64bit ncq led clo pio slum part ems apst 
[    2.291385] [     T10] scsi host4: ahci
[    2.292061] [     T10] scsi host5: ahci
[    2.292606] [     T10] scsi host6: ahci
[    2.293203] [     T10] scsi host7: ahci
[    2.293742] [     T10] scsi host8: ahci
[    2.294317] [     T10] scsi host9: ahci
[    2.294679] [     T10] ata5: SATA max UDMA/133 abar m2048@0xc7332000 port 0xc7332100 irq 55 lpm-pol 0
[    2.295027] [     T10] ata6: SATA max UDMA/133 abar m2048@0xc7332000 port 0xc7332180 irq 55 lpm-pol 0
[    2.295328] [     T10] ata7: SATA max UDMA/133 abar m2048@0xc7332000 port 0xc7332200 irq 55 lpm-pol 0
[    2.295651] [     T10] ata8: SATA max UDMA/133 abar m2048@0xc7332000 port 0xc7332280 irq 55 lpm-pol 0
[    2.295943] [     T10] ata9: SATA max UDMA/133 abar m2048@0xc7332000 port 0xc7332300 irq 55 lpm-pol 0
[    2.296197] [     T10] ata10: SATA max UDMA/133 abar m2048@0xc7332000 port 0xc7332380 irq 55 lpm-pol 0
[    2.305729] [    T363] usbcore: registered new interface driver usbhid
[    2.305998] [    T363] usbhid: USB HID core driver
[    2.313362] [    T364] igb: Intel(R) Gigabit Ethernet Network Driver
[    2.313659] [    T364] igb: Copyright (c) 2007-2014 Intel Corporation.
[    2.370049] [     T10] igb 0000:04:00.0: added PHC on eth0
[    2.370475] [     T10] igb 0000:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    2.370861] [     T10] igb 0000:04:00.0: eth0: (PCIe:5.0Gb/s:Width x4) 0c:c4:7a:f8:e2:70
[    2.371333] [     T10] igb 0000:04:00.0: eth0: PBA No: 010000-000
[    2.371705] [     T10] igb 0000:04:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    2.438254] [     T10] igb 0000:04:00.1: added PHC on eth1
[    2.438651] [     T10] igb 0000:04:00.1: Intel(R) Gigabit Ethernet Network Connection
[    2.439010] [     T10] igb 0000:04:00.1: eth1: (PCIe:5.0Gb/s:Width x4) 0c:c4:7a:f8:e2:71
[    2.439446] [     T10] igb 0000:04:00.1: eth1: PBA No: 010000-000
[    2.439795] [     T10] igb 0000:04:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    2.505617] [     T10] igb 0000:04:00.2: added PHC on eth2
[    2.506003] [     T10] igb 0000:04:00.2: Intel(R) Gigabit Ethernet Network Connection
[    2.506384] [     T10] igb 0000:04:00.2: eth2: (PCIe:5.0Gb/s:Width x4) 0c:c4:7a:f8:e2:72
[    2.506837] [     T10] igb 0000:04:00.2: eth2: PBA No: 010000-000
[    2.507203] [     T10] igb 0000:04:00.2: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    2.574524] [     T10] igb 0000:04:00.3: added PHC on eth3
[    2.574942] [     T10] igb 0000:04:00.3: Intel(R) Gigabit Ethernet Network Connection
[    2.575345] [     T10] igb 0000:04:00.3: eth3: (PCIe:5.0Gb/s:Width x4) 0c:c4:7a:f8:e2:73
[    2.575824] [     T10] igb 0000:04:00.3: eth3: PBA No: 010000-000
[    2.576209] [     T10] igb 0000:04:00.3: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    2.587678] [    T456] ata4: SATA link down (SStatus 0 SControl 300)
[    2.588113] [    T435] ata1: SATA link down (SStatus 0 SControl 300)
[    2.588775] [    T449] ata3: SATA link down (SStatus 0 SControl 300)
[    2.589689] [    T443] ata2: SATA link down (SStatus 0 SControl 300)
[    2.603011] [    T474] ata10: SATA link down (SStatus 0 SControl 300)
[    2.603688] [    T468] ata7: SATA link down (SStatus 0 SControl 300)
[    2.604398] [    T472] ata9: SATA link down (SStatus 0 SControl 300)
[    2.605034] [    T464] ata5: SATA link down (SStatus 0 SControl 300)
[    2.605680] [    T470] ata8: SATA link down (SStatus 0 SControl 300)
[    2.606402] [    T466] ata6: SATA link down (SStatus 0 SControl 300)
[    2.621857] [    T507] igb 0000:04:00.0 ens4f0: renamed from eth0
[    2.623778] [    T495] igb 0000:04:00.2 ens4f2: renamed from eth2
[    2.624407] [    T461] igb 0000:04:00.1 ens4f1: renamed from eth1
[    2.624518] [     T10] nvme nvme0: pci function 0000:02:00.0
[    2.625402] [    T498] igb 0000:04:00.3 ens4f3: renamed from eth3
[    2.626108] [    T508] input: HID 0557:2419 as /devices/pci0000:00/0000:00:14.0/usb2/2-14/2-14.1/2-14.1:1.0/0003:0557:2419.0001/input/input2
[    2.632142] [     T10] nvme nvme0: D3 entry latency set to 8 seconds
[    2.632358] [      C8] workqueue: drm_fb_helper_damage_work hogged CPU for >10000us 11 times, consider switching to WQ_UNBOUND
[    2.643106] [    T513] nvme nvme2: pci function 0000:88:00.0
[    2.643804] [    T247] nvme nvme1: pci function 0000:82:00.0
[    2.644343] [    T514] nvme nvme3: pci function 0000:89:00.0
[    2.645015] [    T515] nvme nvme4: pci function 0000:8b:00.0
[    2.659719] [    T515] nvme nvme4: 8/0/0 default/read/poll queues
[    2.662884] [    T517] nvme nvme4: Ignoring bogus Namespace Identifiers
[    2.664426] [     T10] nvme nvme0: 32/0/0 default/read/poll queues
[    2.671824] [    T513] nvme nvme2: 8/0/0 default/read/poll queues
[    2.673694] [    T514] nvme nvme3: 8/0/0 default/read/poll queues
[    2.674543] [    T510] nvme nvme2: Ignoring bogus Namespace Identifiers
[    2.675579] [    T477]  nvme0n1: p1 p2 p3
[    2.676579] [    T518] nvme nvme3: Ignoring bogus Namespace Identifiers
[    2.678655] [    T508] hid-generic 0003:0557:2419.0001: input,hidraw0: USB HID v1.00 Keyboard [HID 0557:2419] on usb-0000:00:14.0-14.1/input0
[    2.679547] [    T508] input: HID 0557:2419 as /devices/pci0000:00/0000:00:14.0/usb2/2-14/2-14.1/2-14.1:1.1/0003:0557:2419.0002/input/input3
[    2.680422] [    T508] hid-generic 0003:0557:2419.0002: input,hidraw1: USB HID v1.00 Mouse [HID 0557:2419] on usb-0000:00:14.0-14.1/input1
[    3.570105] [    T516] mlx5_core 0000:85:00.0: firmware version: 16.35.4030
[    3.570419] [    T516] mlx5_core 0000:85:00.0: 126.016 Gb/s available PCIe bandwidth (8.0 GT/s PCIe x16 link)
[    4.054434] [    T516] mlx5_core 0000:85:00.0: Rate limit: 127 rates are supported, range: 0Mbps to 48828Mbps
[    4.065578] [    T516] mlx5_core 0000:85:00.0: E-Switch: Total vports 10, per vport: max uc(128) max mc(2048)
[    4.077495] [    T516] mlx5_core 0000:85:00.0: Flow counters bulk query buffer size increased, bulk_query_len(8)
[    4.094745] [     C25] mlx5_core 0000:85:00.0: Port module event: module 0, Cable plugged
[    4.095995] [    T236] mlx5_core 0000:85:00.0: mlx5_pcie_event:301:(pid 236): PCIe slot advertised sufficient power (27W).
[    4.322818] [    T516] mlx5_core 0000:85:00.0: MLX5E: StrdRq(1) RqSz(8) StrdSz(2048) RxCqeCmprss(0 basic)
[    4.339571] [    T516] mlx5_core 0000:85:00.1: firmware version: 16.35.4030
[    4.340197] [    T516] mlx5_core 0000:85:00.1: 126.016 Gb/s available PCIe bandwidth (8.0 GT/s PCIe x16 link)
[    4.845609] [    T516] mlx5_core 0000:85:00.1: Rate limit: 127 rates are supported, range: 0Mbps to 48828Mbps
[    4.857000] [    T516] mlx5_core 0000:85:00.1: E-Switch: Total vports 10, per vport: max uc(128) max mc(2048)
[    4.869061] [    T516] mlx5_core 0000:85:00.1: Flow counters bulk query buffer size increased, bulk_query_len(8)
[    4.886756] [     C26] mlx5_core 0000:85:00.1: Port module event: module 1, Cable plugged
[    4.888041] [    T523] mlx5_core 0000:85:00.1: mlx5_pcie_event:301:(pid 523): PCIe slot advertised sufficient power (27W).
[    4.999729] [    T247] nvme nvme1: D3 entry latency set to 10 seconds
[    5.015635] [    T247] nvme nvme1: 32/0/0 default/read/poll queues
[    5.134430] [    T516] mlx5_core 0000:85:00.1: MLX5E: StrdRq(1) RqSz(8) StrdSz(2048) RxCqeCmprss(0 basic)
[    5.150002] [    T406] mlx5_core 0000:85:00.0 ens3f0np0: renamed from eth0
[    5.151934] [    T411] mlx5_core 0000:85:00.1 ens3f1np1: renamed from eth1
[    5.301513] [    T493] MACsec IEEE 802.1AE
[    5.723375] [    T609] raid6: avx2x4   gen() 19712 MB/s
[    5.740375] [    T609] raid6: avx2x2   gen() 20017 MB/s
[    5.757377] [    T609] raid6: avx2x1   gen() 17887 MB/s
[    5.757759] [    T609] raid6: using algorithm avx2x2 gen() 20017 MB/s
[    5.774378] [    T609] raid6: .... xor() 13897 MB/s, rmw enabled
[    5.774730] [    T609] raid6: using avx2x2 recovery algorithm
[    5.786443] [    T609] xor: automatically using best checksumming function   avx       
[    5.790820] [    T609] async_tx: api initialized (async)
[    6.198962] [    T633] Btrfs loaded, zoned=yes, fsverity=yes
[    6.278149] [    T652] EXT4-fs (nvme0n1p2): Supports (experimental) DIO atomic writes awu_min: 4096, awu_max: 4096
[    6.281276] [    T652] EXT4-fs (nvme0n1p2): mounted filesystem 942a67f1-6e6c-4a49-8018-ff4408817ffd ro with ordered data mode. Quota mode: none.
[    6.484462] [      T1] systemd[1]: Inserted module 'autofs4'
[    6.526573] [      T1] systemd[1]: systemd 255.4-1ubuntu8.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    6.527869] [      T1] systemd[1]: Detected architecture x86-64.
[    6.531034] [      T1] systemd[1]: Hostname set to <nvme195>.
[    6.742770] [      T1] systemd[1]: Queued start job for default target graphical.target.
[    6.764290] [      T1] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[    6.765637] [      T1] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[    6.770341] [      T1] systemd[1]: Created slice user.slice - User and Session Slice.
[    6.775950] [      T1] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    6.784111] [      T1] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    6.790154] [      T1] systemd[1]: Expecting device dev-disk-by\x2duuid-79BD\x2d3456.device - /dev/disk/by-uuid/79BD-3456...
[    6.796612] [      T1] systemd[1]: Expecting device dev-disk-by\x2duuid-a8664e5a\x2da937\x2d493b\x2d853f\x2d34706a26394e.device - /dev/disk/by-uuid/a8664e5a-a937-493b-853f-34706a26394e...
[    6.803211] [      T1] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[    6.808142] [      T1] systemd[1]: Reached target slices.target - Slice Units.
[    6.812764] [      T1] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[    6.817204] [      T1] systemd[1]: Reached target snapd.mounts.target - Mounted snaps.
[    6.822360] [      T1] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[    6.828342] [      T1] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[    6.834937] [      T1] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[    6.841265] [      T1] systemd[1]: Listening on multipathd.socket - multipathd control socket.
[    6.847904] [      T1] systemd[1]: Listening on syslog.socket - Syslog Socket.
[    6.857359] [      C1] workqueue: drm_fb_helper_damage_work hogged CPU for >10000us 19 times, consider switching to WQ_UNBOUND
[    6.867852] [      T1] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[    6.874511] [      T1] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[    6.880522] [      T1] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[    6.887839] [      T1] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    6.895426] [      T1] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[    6.902760] [      T1] systemd[1]: Listening on systemd-networkd.socket - Network Service Netlink Socket.
[    6.908794] [      T1] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    6.916033] [      T1] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    6.923084] [      T1] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    6.957467] [      T1] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    6.970383] [      T1] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    6.977118] [      T1] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    6.979473] [      T1] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[    6.983305] [      T1] systemd[1]: Starting systemd-journald.service - Journal Service...
[    6.985857] [      T1] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[    6.988256] [      T1] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    6.990925] [      T1] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    6.994021] [      T1] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[    6.996575] [      T1] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[    6.999051] [      T1] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[    7.001608] [      T1] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[    7.004194] [      T1] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[    7.006549] [      T1] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[    7.008982] [      T1] systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
[    7.009030] [    T720] systemd-journald[720]: Collecting audit messages is disabled.
[    7.011039] [      T1] systemd[1]: netplan-ovs-cleanup.service - OpenVSwitch configuration for cleanup was skipped because of an unmet condition check (ConditionFileIsExecutable=/usr/bin/ovs-vsctl).
[    7.012199] [      T1] 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).
[    7.014728] [    T732] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
[    7.015013] [      T1] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    7.016252] [      T1] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    7.018600] [      T1] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    7.020203] [      T1] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    7.021442] [    T740] Key type psk registered
[    7.022494] [      T1] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    7.026323] [      T1] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    7.027601] [      T1] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    7.028912] [      T1] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    7.030180] [      T1] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[    7.031622] [      T1] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    7.033113] [      T1] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    7.033905] [      T1] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[    7.035237] [      T1] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[    7.036152] [      T1] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[    7.037494] [      T1] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    7.038122] [      T1] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[    7.039586] [      T1] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[    7.040217] [      T1] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[    7.041420] [      T1] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    7.042093] [      T1] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[    7.043440] [      T1] systemd[1]: modprobe@loop.service: Deactivated successfully.
[    7.044052] [      T1] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[    7.045299] [      T1] systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
[    7.046126] [      T1] systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
[    7.046916] [    T744] EXT4-fs (nvme0n1p2): re-mounted 942a67f1-6e6c-4a49-8018-ff4408817ffd r/w. Quota mode: none.
[    7.049108] [      T1] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[    7.052276] [      T1] systemd[1]: Activating swap swap.img.swap - /swap.img...
[    7.055470] [      T1] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[    7.063519] [    T746] Adding 8388604k swap on /swap.img.  Priority:-2 extents:66 across:11649024k SS
[    7.069041] [      T1] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[    7.082201] [      T1] systemd[1]: Starting multipathd.service - Device-Mapper Multipath Device Controller...
[    7.091855] [      T1] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[    7.096904] [      T1] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[    7.109831] [      T1] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[    7.112052] [      T1] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[    7.114709] [      T1] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[    7.116214] [      T1] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    7.118008] [      T1] systemd[1]: Activated swap swap.img.swap - /swap.img.
[    7.119790] [      T1] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[    7.121267] [      T1] systemd[1]: Finished lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[    7.123439] [      T1] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[    7.124856] [      T1] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[    7.126092] [      T1] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[    7.128329] [      T1] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
[    7.129688] [      T1] systemd[1]: Reached target swap.target - Swaps.
[    7.132282] [      T1] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[    7.140732] [      T1] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[    7.142538] [      T1] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[    7.145138] [      T1] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[    7.160244] [    T756] coredump: 756(systemd-sysctl): Unsafe core_pattern used with fs.suid_dumpable=2: pipe handler or fully qualified core dump path required. Set kernel.core_pattern before fs.suid_dumpable.
[    7.160587] [    T756] coredump: 756(systemd-sysctl): Unsafe core_pattern used with fs.suid_dumpable=2: pipe handler or fully qualified core dump path required. Set kernel.core_pattern before fs.suid_dumpable.
[    7.162035] [      T1] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[    7.163958] [      T1] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[    7.166415] [      T1] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[    7.167237] [    T755] nvme nvme0: using unchecked data buffer
[    7.174660] [      T1] systemd[1]: Started multipathd.service - Device-Mapper Multipath Device Controller.
[    7.182059] [      T1] systemd[1]: Started systemd-journald.service - Journal Service.
[    7.206947] [    T720] systemd-journald[720]: Received client request to flush runtime journal.
[    7.215625] [    T720] systemd-journald[720]: /var/log/journal/c324017110f9448ca60e105d192206d2/system.journal: Journal file uses a different sequence number ID, rotating.
[    7.215632] [    T720] systemd-journald[720]: Rotating system journal.
[    7.258373] [      C2] workqueue: drm_fb_helper_damage_work hogged CPU for >10000us 35 times, consider switching to WQ_UNBOUND
[    7.425267] [    T904] IPMI message handler: version 39.2
[    7.448280] [    T799] ipmi device interface
[    7.490830] [    T799] ipmi_si: IPMI System Interface driver
[    7.491639] [    T799] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[    7.491646] [    T799] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[    7.491659] [    T799] ipmi_si: Adding SMBIOS-specified kcs state machine
[    7.505995] [    T799] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[    7.506242] [    T799] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
[    7.506956] [    T799] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[    7.506962] [    T799] ipmi_si: Adding ACPI-specified kcs state machine
[    7.523115] [    T799] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[    7.555171] [    T864] ioatdma: Intel(R) QuickData Technology Driver 5.00
[    7.556120] [    T814] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    7.556480] [    T814] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    7.556692] [    T814] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    7.570161] [      T9] igb 0000:04:00.0: DCA enabled
[    7.570186] [      T9] igb 0000:04:00.1: DCA enabled
[    7.570202] [      T9] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[    7.570215] [      T9] i801_smbus 0000:00:1f.3: enabling device (0140 -> 0143)
[    7.570366] [      T9] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    7.582349] [      C0] workqueue: work_for_cpu_fn hogged CPU for >10000us 4 times, consider switching to WQ_UNBOUND
[    7.586255] [      T9] i2c i2c-4: Successfully instantiated SPD at 0x50
[    7.586448] [    T256] igb 0000:04:00.2: DCA enabled
[    7.586470] [    T256] igb 0000:04:00.3: DCA enabled
[    7.593832] [    T928] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 655360 ms ovfl timer
[    7.593838] [    T928] RAPL PMU: hw unit of domain package 2^-14 Joules
[    7.593840] [    T928] RAPL PMU: hw unit of domain dram 2^-16 Joules
[    7.597349] [      C0] workqueue: work_for_cpu_fn hogged CPU for >10000us 5 times, consider switching to WQ_UNBOUND
[    7.598598] [     T10] Console: switching to colour dummy device 80x25
[    7.608479] [    T845] ee1004 4-0050: Failed to select page 0 (-6)
[    7.608518] [    T845] ee1004 4-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[    7.629951] [     T10] ast 0000:07:00.0: vgaarb: deactivate vga console
[    7.630080] [     T10] ast 0000:07:00.0: Using default configuration
[    7.630081] [     T10] ast 0000:07:00.0: AST 2400 detected
[    7.630149] [     T10] ast 0000:07:00.0: [drm] Using analog VGA
[    7.630150] [     T10] ast 0000:07:00.0: [drm] dram MCLK=396 Mhz type=1 bus_width=16
[    7.630621] [     T10] ast 0000:07:00.0: [drm] Registered 1 planes with drm panic
[    7.630626] [     T10] [drm] Initialized ast 0.1.0 for 0000:07:00.0 on minor 0
[    7.638763] [     T10] fbcon: astdrmfb (fb0) is primary device
[    7.643879] [    T799] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x002a7c, prod_id: 0x093e, dev_id: 0x20)
[    7.651350] [      C0] workqueue: work_for_cpu_fn hogged CPU for >10000us 7 times, consider switching to WQ_UNBOUND
[    7.655985] [    T810] power_meter ACPI000D:00: Found ACPI power meter.
[    7.656029] [    T810] power_meter ACPI000D:00: Ignoring unsafe software power cap!
[    7.656035] [    T810] power_meter ACPI000D:00: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    7.694546] [    T799] ipmi_si IPI0001:00: IPMI kcs interface initialized
[    7.701572] [    T805] ipmi_ssif: IPMI SSIF Interface driver
[    7.704010] [     T10] Console: switching to colour frame buffer device 128x48
[    7.750739] [     T10] ast 0000:07:00.0: [drm] fb0: astdrmfb frame buffer device
[    7.878474] [   T1497] EXT4-fs (nvme0n1p3): Supports (experimental) DIO atomic writes awu_min: 4096, awu_max: 4096
[    7.882748] [   T1497] EXT4-fs (nvme0n1p3): mounted filesystem a8664e5a-a937-493b-853f-34706a26394e r/w with ordered data mode. Quota mode: none.
[    7.931491] [    T215] audit: type=1400 audit(1745319207.258:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=1539 comm="apparmor_parser"
[    7.931568] [    T215] audit: type=1400 audit(1745319207.258:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="devhelp" pid=1546 comm="apparmor_parser"
[    7.931627] [    T215] audit: type=1400 audit(1745319207.258:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="epiphany" pid=1548 comm="apparmor_parser"
[    7.931688] [    T215] audit: type=1400 audit(1745319207.258:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=1541 comm="apparmor_parser"
[    7.931746] [    T215] audit: type=1400 audit(1745319207.258:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=1528 comm="apparmor_parser"
[    7.931816] [    T215] audit: type=1400 audit(1745319207.258:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=1544 comm="apparmor_parser"
[    7.931872] [    T215] audit: type=1400 audit(1745319207.258:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="crun" pid=1545 comm="apparmor_parser"
[    7.931938] [    T215] audit: type=1400 audit(1745319207.258:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=1534 comm="apparmor_parser"
[    7.932008] [    T215] audit: type=1400 audit(1745319207.258:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=1530 comm="apparmor_parser"
[    7.932069] [    T215] audit: type=1400 audit(1745319207.258:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=1529 comm="apparmor_parser"
[    8.003571] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fa0
[    8.003589] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fa0
[    8.003603] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fa0
[    8.003622] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6f60
[    8.003635] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fa8
[    8.003639] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fa8
[    8.003646] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fa8
[    8.003653] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6f71
[    8.003676] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6f71
[    8.003704] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6f71
[    8.003710] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6faa
[    8.003721] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6faa
[    8.003726] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6faa
[    8.003732] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fab
[    8.003737] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fab
[    8.003742] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fab
[    8.003748] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fac
[    8.003752] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fac
[    8.003758] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fac
[    8.003764] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fad
[    8.003773] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fad
[    8.003778] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6fad
[    8.003784] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6f68
[    8.003788] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6f79
[    8.003798] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6f6a
[    8.003808] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6f6b
[    8.003819] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6f6c
[    8.003829] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6f6d
[    8.003839] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6ffc
[    8.003843] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6ffc
[    8.003848] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6ffc
[    8.003855] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6ffd
[    8.003858] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6ffd
[    8.003864] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6ffd
[    8.003870] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6faf
[    8.003874] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6faf
[    8.003880] [    T818] EDAC sbridge: Seeking for: PCI ID 8086:6faf
[    8.003984] [    T818] EDAC MC0: Giving out device to module sb_edac controller Broadwell SrcID#1_Ha#0: DEV 0000:ff:12.0 (INTERRUPT)
[    8.004057] [    T818] EDAC MC1: Giving out device to module sb_edac controller Broadwell SrcID#0_Ha#0: DEV 0000:7f:12.0 (INTERRUPT)
[    8.004059] [    T818] EDAC sbridge:  Ver: 1.1.2 
[    8.028117] [     T23] intel_rapl_common: Found RAPL domain package
[    8.028126] [     T23] intel_rapl_common: Found RAPL domain dram
[    8.028828] [     T66] intel_rapl_common: Found RAPL domain package
[    8.028892] [     T66] intel_rapl_common: Found RAPL domain dram
[    8.078748] [   T1707] PEFILE: Unsigned PE binary
[    8.612396] [    T813] mlx5_core 0000:85:00.0 ens3f0np0: Link up
[    8.636058] [   T1477] Loading iSCSI transport class v2.0-870.
[    8.664169] [   T1477] iscsi: registered transport (iser)
[    8.818134] [   T1477] RPC: Registered named UNIX socket transport module.
[    8.818141] [   T1477] RPC: Registered udp transport module.
[    8.818142] [   T1477] RPC: Registered tcp transport module.
[    8.818143] [   T1477] RPC: Registered tcp-with-tls transport module.
[    8.818145] [   T1477] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    8.894763] [   T1477] RPC: Registered rdma transport module.
[    8.894768] [   T1477] RPC: Registered rdma backchannel transport module.
[    9.183750] [    T813] mlx5_core 0000:85:00.1 ens3f1np1: Link up
[    9.428369] [      C2] workqueue: drm_fb_helper_damage_work hogged CPU for >10000us 67 times, consider switching to WQ_UNBOUND
[    9.564195] [   T1740] block nvme0n1: No UUID available providing old NGUID
[    9.599924] [   T1847] loop0: detected capacity change from 0 to 8
[    9.613391] [   T1846] NET: Registered PF_QIPCRTR protocol family
[   10.568792] [    T284] igb 0000:04:00.0 ens4f0: igb: ens4f0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[  134.088331] [    T720] systemd-journald[720]: /var/log/journal/c324017110f9448ca60e105d192206d2/user-1011.journal: Journal file uses a different sequence number ID, rotating.
[  363.275287] [  T11773] ublk_drv: loading out-of-tree module taints kernel.
[  747.335354] [ T109323] mlx5_core 0000:85:00.0: Using 48-bit DMA addresses
[  747.335354] [ T109331] mlx5_core 0000:85:00.0: Using 48-bit DMA addresses
[  747.335354] [ T109322] mlx5_core 0000:85:00.0: Using 48-bit DMA addresses
[  747.335356] [ T109298] mlx5_core 0000:85:00.0: Using 48-bit DMA addresses
[  747.335364] [ T109319] mlx5_core 0000:85:00.0: Using 48-bit DMA addresses
[  747.351159] [ T109298] mlx5_core 0000:85:00.1: Using 48-bit DMA addresses
[  747.351159] [ T109319] mlx5_core 0000:85:00.1: Using 48-bit DMA addresses
[  747.351159] [ T109331] mlx5_core 0000:85:00.1: Using 48-bit DMA addresses
[  747.351165] [ T109322] mlx5_core 0000:85:00.1: Using 48-bit DMA addresses
[  747.351167] [ T109323] mlx5_core 0000:85:00.1: Using 48-bit DMA addresses
[  847.239763] [ T109312] ------------[ cut here ]------------
[  847.239771] [ T109312] WARNING: CPU: 4 PID: 109312 at ublk_drv.c:1507 ublk_ch_uring_cmd+0x1be/0x1d0 [ublk_drv]
[  847.239786] [ T109312] Modules linked in: ublk_drv(O) qrtr rpcrdma sunrpc rdma_ucm ib_iser libiscsi scsi_transport_iscsi intel_rapl_msr intel_rapl_common intel_uncore_frequency intel_uncore_frequency_common sb_edac x86_pkg_temp_thermal intel_powerclamp coretemp binfmt_misc ib_umad rdma_cm ib_ipoib kvm_intel iw_cm nls_iso8859_1 ib_cm kvm ipmi_ssif ee1004 rapl intel_cstate i2c_i801 mei_me i2c_smbus ast acpi_power_meter mei ioatdma i2c_mux ipmi_si cfg80211 lpc_ich acpi_ipmi ipmi_devintf ipmi_msghandler acpi_pad joydev input_leds mac_hid sch_fq_codel dm_multipath msr nvme_fabrics nvme_keyring efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 btrfs blake2b_generic raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 linear mlx5_ib ib_uverbs macsec ib_core mlx5_core polyval_clmulni hid_generic mlxfw polyval_generic nvme ghash_clmulni_intel psample sha256_ssse3 igb nvme_core tls usbhid sha1_ssse3 ahci hid pci_hyperv_intf libahci i2c_algo_bit dca nvme_auth wmi aesni_intel crypto_simd
[  847.239880] [ T109312]  cryptd
[  847.239884] [ T109312] CPU: 4 UID: 0 PID: 109312 Comm: kworker/u129:18 Kdump: loaded Tainted: G           O       6.14.0+ #1
[  847.239888] [ T109312] Tainted: [O]=OOT_MODULE
[  847.239890] [ T109312] Hardware name: Supermicro SYS-2028BT-HNR+/X10DRT-B+, BIOS 2.0 01/10/2017
[  847.239892] [ T109312] Workqueue: iou_exit io_ring_exit_work
[  847.239898] [ T109312] RIP: 0010:ublk_ch_uring_cmd+0x1be/0x1d0 [ublk_drv]
[  847.239902] [ T109312] Code: e5 f6 e9 69 ff ff ff e8 a0 d9 80 f7 e9 5f ff ff ff 0f 0b 31 c0 e9 b6 fe ff ff 0f 0b 31 c0 e9 ad fe ff ff 0f 0b e9 32 ff ff ff <0f> 0b eb c4 e8 39 c2 7f f7 66 0f 1f 84 00 00 00 00 00 90 90 90 90
[  847.239905] [ T109312] RSP: 0000:ffffb86bb2b0fc80 EFLAGS: 00010286
[  847.239907] [ T109312] RAX: 00000000c0000000 RBX: 0000000000000801 RCX: 0000000000000000
[  847.239909] [ T109312] RDX: 000000000000000a RSI: 0000000000000000 RDI: ffff98dd5ef7db00
[  847.239911] [ T109312] RBP: ffffb86bb2b0fcd0 R08: 0000000000000000 R09: 0000000000000000
[  847.239913] [ T109312] R10: 0000000000000000 R11: 0000000000000000 R12: ffff98dd50b180f0
[  847.239914] [ T109312] R13: ffff98dd50b18000 R14: 0000000000000000 R15: ffff98dd447b8800
[  847.239916] [ T109312] FS:  0000000000000000(0000) GS:ffff98e49f800000(0000) knlGS:0000000000000000
[  847.239918] [ T109312] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  847.239920] [ T109312] CR2: 000051100082b000 CR3: 000000013da40006 CR4: 00000000003726f0
[  847.239922] [ T109312] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[  847.239923] [ T109312] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[  847.239925] [ T109312] Call Trace:
[  847.239927] [ T109312]  <TASK>
[  847.239929] [ T109312]  ? show_regs+0x6c/0x80
[  847.239935] [ T109312]  ? __warn+0x8d/0x150
[  847.239940] [ T109312]  ? ublk_ch_uring_cmd+0x1be/0x1d0 [ublk_drv]
[  847.239944] [ T109312]  ? report_bug+0x182/0x1b0
[  847.239950] [ T109312]  ? handle_bug+0x6e/0xb0
[  847.239954] [ T109312]  ? exc_invalid_op+0x18/0x80
[  847.239958] [ T109312]  ? asm_exc_invalid_op+0x1b/0x20
[  847.239964] [ T109312]  ? ublk_ch_uring_cmd+0x1be/0x1d0 [ublk_drv]
[  847.239967] [ T109312]  ? sched_clock+0x10/0x30
[  847.239970] [ T109312]  io_uring_try_cancel_uring_cmd+0xa6/0xe0
[  847.239976] [ T109312]  io_uring_try_cancel_requests+0x2ee/0x3f0
[  847.239979] [ T109312]  io_ring_exit_work+0xa4/0x500
[  847.239983] [ T109312]  process_one_work+0x17b/0x3d0
[  847.239987] [ T109312]  worker_thread+0x2de/0x410
[  847.239990] [ T109312]  ? __pfx_worker_thread+0x10/0x10
[  847.239993] [ T109312]  kthread+0xfe/0x230
[  847.239997] [ T109312]  ? __pfx_kthread+0x10/0x10
[  847.240000] [ T109312]  ret_from_fork+0x47/0x70
[  847.240003] [ T109312]  ? __pfx_kthread+0x10/0x10
[  847.240006] [ T109312]  ret_from_fork_asm+0x1a/0x30
[  847.240011] [ T109312]  </TASK>
[  847.240012] [ T109312] ---[ end trace 0000000000000000 ]---
[  851.053673] [ T109280] BUG: kernel NULL pointer dereference, address: 0000000000000000
[  851.053694] [ T109280] #PF: supervisor write access in kernel mode
[  851.053703] [ T109280] #PF: error_code(0x0002) - not-present page
[  851.053712] [ T109280] PGD 0 P4D 0 
[  851.053721] [ T109280] Oops: Oops: 0002 [#1] PREEMPT SMP PTI
[  851.053732] [ T109280] CPU: 0 UID: 0 PID: 109280 Comm: reactor_0 Kdump: loaded Tainted: G        W  O       6.14.0+ #1
[  851.053749] [ T109280] Tainted: [W]=WARN, [O]=OOT_MODULE
[  851.053757] [ T109280] Hardware name: Supermicro SYS-2028BT-HNR+/X10DRT-B+, BIOS 2.0 01/10/2017
[  851.053769] [ T109280] RIP: 0010:__io_fallback_tw+0x133/0x1a0
[  851.053781] [ T109280] Code: 5d 31 c0 31 d2 31 c9 31 f6 31 ff c3 cc cc cc cc 49 89 d4 e8 9f a5 97 ff 49 8b 44 24 18 a8 03 0f 84 5a ff ff ff 49 8b 44 24 20 <f0> 48 83 00 01 e9 4f ff ff ff 49 8b 44 24 20 f0 48 83 28 01 75 b4
[  851.053822] [ T109280] RSP: 0018:ffffb86bcbf87ca0 EFLAGS: 00010206
[  851.053832] [ T109280] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000000
[  851.053844] [ T109280] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[  851.053855] [ T109280] RBP: ffffb86bcbf87cc0 R08: 0000000000000000 R09: 0000000000000000
[  851.053866] [ T109280] R10: 0000000000000000 R11: 0000000000000000 R12: ffff98dd447a9800
[  851.053877] [ T109280] R13: 0000000000000001 R14: ffff98dd5ef7db90 R15: ffff98dd61d10e00
[  851.053888] [ T109280] FS:  0000000000000000(0000) GS:ffff98e49f600000(0000) knlGS:0000000000000000
[  851.053900] [ T109280] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  851.053910] [ T109280] CR2: 0000000000000000 CR3: 000000013da40005 CR4: 00000000003726f0
[  851.053921] [ T109280] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[  851.053932] [ T109280] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[  851.053957] [ T109280] Call Trace:
[  851.053963] [ T109280]  <TASK>
[  851.053970] [ T109280]  ? show_regs+0x6c/0x80
[  851.053982] [ T109280]  ? __die+0x24/0x80
[  851.053991] [ T109280]  ? page_fault_oops+0x175/0x5d0
[  851.054002] [ T109280]  ? do_user_addr_fault+0x4b2/0x870
[  851.054012] [ T109280]  ? finish_task_switch.isra.0+0x9c/0x340
[  851.054025] [ T109280]  ? exc_page_fault+0x85/0x1e0
[  851.054036] [ T109280]  ? asm_exc_page_fault+0x27/0x30
[  851.054049] [ T109280]  ? __io_fallback_tw+0x133/0x1a0
[  851.054058] [ T109280]  tctx_task_work_run+0xdc/0x110
[  851.054068] [ T109280]  tctx_task_work+0x38/0x70
[  851.054077] [ T109280]  task_work_run+0x60/0xa0
[  851.054085] [ T109280]  do_exit+0x31f/0xab0
[  851.054093] [ T109280]  do_group_exit+0x34/0x90
[  851.054101] [ T109280]  get_signal+0x9e3/0x9f0
[  851.054110] [ T109280]  arch_do_signal_or_restart+0x42/0x260
[  851.054120] [ T109280]  irqentry_exit_to_user_mode+0x13b/0x1d0
[  851.054131] [ T109280]  irqentry_exit+0x43/0x50
[  851.054140] [ T109280]  sysvec_reschedule_ipi+0x65/0x110
[  851.054149] [ T109280]  asm_sysvec_reschedule_ipi+0x1b/0x20
[  851.054159] [ T109280] RIP: 0033:0xb4ecee
[  851.054166] [ T109280] Code: Unable to access opcode bytes at 0xb4ecc4.
[  851.054462] [ T109280] RSP: 002b:00007ffd10dd3930 EFLAGS: 00000202
[  851.054742] [ T109280] RAX: 0000514000d75c40 RBX: 0000000000000001 RCX: 0000000000000018
[  851.055042] [ T109280] RDX: 000001cdaebb47a0 RSI: 000001cdaebb47a0 RDI: 0000514000d75c40
[  851.055257] [ T109280] RBP: 00007ffd10dd3960 R08: 000010007fff8000 R09: 0000000000000000
[  851.055470] [ T109280] R10: 0000765c5704af28 R11: 000000000000001f R12: 0000514000d75c40
[  851.055723] [ T109280] R13: 0000000000000001 R14: 0000000000000001 R15: 000020001a7f5510
[  851.055963] [ T109280]  </TASK>
[  851.056189] [ T109280] Modules linked in: ublk_drv(O) qrtr rpcrdma sunrpc rdma_ucm ib_iser libiscsi scsi_transport_iscsi intel_rapl_msr intel_rapl_common intel_uncore_frequency intel_uncore_frequency_common sb_edac x86_pkg_temp_thermal intel_powerclamp coretemp binfmt_misc ib_umad rdma_cm ib_ipoib kvm_intel iw_cm nls_iso8859_1 ib_cm kvm ipmi_ssif ee1004 rapl intel_cstate i2c_i801 mei_me i2c_smbus ast acpi_power_meter mei ioatdma i2c_mux ipmi_si cfg80211 lpc_ich acpi_ipmi ipmi_devintf ipmi_msghandler acpi_pad joydev input_leds mac_hid sch_fq_codel dm_multipath msr nvme_fabrics nvme_keyring efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 btrfs blake2b_generic raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 linear mlx5_ib ib_uverbs macsec ib_core mlx5_core polyval_clmulni hid_generic mlxfw polyval_generic nvme ghash_clmulni_intel psample sha256_ssse3 igb nvme_core tls usbhid sha1_ssse3 ahci hid pci_hyperv_intf libahci i2c_algo_bit dca nvme_auth wmi aesni_intel crypto_simd
[  851.056268] [ T109280]  cryptd
[  851.058691] [ T109280] CR2: 0000000000000000

[Index of Archives]     [Linux RAID]     [Linux SCSI]     [Linux ATA RAID]     [IDE]     [Linux Wireless]     [Linux Kernel]     [ATH6KL]     [Linux Bluetooth]     [Linux Netdev]     [Kernel Newbies]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Device Mapper]

  Powered by Linux